alabjs-vite-plugin 0.3.0-alpha.1 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,MAAM,CAAC;AAQnC,UAAU,iBAAiB;IACzB,iCAAiC;IACjC,IAAI,CAAC,EAAE,KAAK,GAAG,OAAO,CAAC;CACxB;AA6BD;;;;;;;;;GASG;AACH,wBAAgB,UAAU,CAAC,OAAO,GAAE,iBAAsB,GAAG,MAAM,EAAE,CA+dpE"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,MAAM,CAAC;AASnC,UAAU,iBAAiB;IACzB,iCAAiC;IACjC,IAAI,CAAC,EAAE,KAAK,GAAG,OAAO,CAAC;CACxB;AA8BD;;;;;;;;;GASG;AACH,wBAAgB,UAAU,CAAC,OAAO,GAAE,iBAAsB,GAAG,MAAM,EAAE,CA0gBpE"}
package/dist/index.js CHANGED
@@ -1,10 +1,12 @@
1
1
  import { parseErrorLocation, formatBoundaryError } from "./overlay.js";
2
2
  import { devToolbarScript } from "./devtools.js";
3
+ import { generateLiveComponentStub, generateLiveClientRuntime, generateLiveServerWrapper } from "./live-stub.js";
3
4
  import { createRequire } from "node:module";
4
5
  import { pathToFileURL } from "node:url";
5
6
  import { dirname } from "node:path";
6
7
  const VIRTUAL_CLIENT_ID = "/@alabjs/client";
7
8
  const VIRTUAL_REFRESH_ID = "/@react-refresh";
9
+ const VIRTUAL_LIVE_CLIENT_ID = "/@alabjs/live-client";
8
10
  // In production builds the Rust compiler still emits jsxDEV calls (from
9
11
  // react/jsx-dev-runtime), but React's production bundle exports jsxDEV=void 0.
10
12
  // This virtual shim re-exports the production jsx/jsxs functions under the
@@ -88,11 +90,27 @@ export function alabPlugin(options = {}) {
88
90
  return VIRTUAL_CLIENT_ID;
89
91
  if (id === VIRTUAL_REFRESH_ID)
90
92
  return VIRTUAL_REFRESH_ID;
93
+ if (id === VIRTUAL_LIVE_CLIENT_ID)
94
+ return VIRTUAL_LIVE_CLIENT_ID;
91
95
  if (id === VIRTUAL_JSX_DEV_SHIM_ID)
92
96
  return VIRTUAL_JSX_DEV_SHIM_ID;
97
+ // ?live-actual: used by the server-build live wrapper to import the real
98
+ // component without triggering another live transform (avoids infinite loop).
99
+ if (id.endsWith("?live-actual"))
100
+ return id;
93
101
  return null;
94
102
  },
95
103
  async load(id) {
104
+ if (id === VIRTUAL_LIVE_CLIENT_ID) {
105
+ return generateLiveClientRuntime();
106
+ }
107
+ if (id.endsWith("?live-actual")) {
108
+ // Load the raw TypeScript source for the real live component.
109
+ // Vite's default transformer (esbuild) will compile it after this load hook.
110
+ const realPath = id.slice(0, -"?live-actual".length);
111
+ const { readFileSync } = await import("node:fs");
112
+ return readFileSync(realPath, "utf-8");
113
+ }
96
114
  if (id === VIRTUAL_REFRESH_ID) {
97
115
  // Re-export the react-refresh runtime so the preamble can import it.
98
116
  // Use bare specifier so Vite's dep optimizer (pre-bundler) handles the
@@ -397,8 +415,37 @@ if (import.meta.env.DEV) {
397
415
  return null;
398
416
  if (id.includes("node_modules"))
399
417
  return null;
418
+ // ?live-actual IDs are loaded by generateLiveServerWrapper imports; let
419
+ // esbuild compile them normally without triggering another live transform.
420
+ if (id.includes("?live-actual"))
421
+ return null;
400
422
  const isServerFile = /\.server\.(ts|tsx)$/.test(id);
401
423
  const isClientBuild = !transformOptions?.ssr;
424
+ // ── Live component detection ─────────────────────────────────────────
425
+ // A file is a live component when it uses the *.live.tsx convention OR
426
+ // has a "use live" directive as its first statement.
427
+ const isLiveByConvention = /\.live\.(ts|tsx)$/.test(id);
428
+ let isLiveByDirective = false;
429
+ if (!isLiveByConvention && napi) {
430
+ const directiveJson = napi.detectDirective(code, id);
431
+ const directive = JSON.parse(directiveJson);
432
+ isLiveByDirective = directive.kind === "use_live";
433
+ }
434
+ const isLiveFile = isLiveByConvention || isLiveByDirective;
435
+ if (isLiveFile) {
436
+ // Derive a stable 16-char ID from the module path (reuses existing FNV-1a hash).
437
+ const moduleId = napi ? napi.hashBuildId(id) : id.replace(/[^a-z0-9]/gi, "_");
438
+ if (isClientBuild) {
439
+ // Client build: replace with LiveMount stub — server code never ships to browser.
440
+ return { code: generateLiveComponentStub(moduleId, ["default"]), map: null };
441
+ }
442
+ else {
443
+ // Server build: wrap default export in a data-live-id div so SSR pages emit
444
+ // the same DOM structure as LiveMount, enabling React hydration without errors.
445
+ // The ?live-actual import loads the real component without re-triggering this path.
446
+ return { code: generateLiveServerWrapper(moduleId, id + "?live-actual"), map: null };
447
+ }
448
+ }
402
449
  // Skip Rust compiler for SSR transforms — the Rust compiler injects React
403
450
  // Fast Refresh globals ($RefreshReg$) that don't exist in the SSR context.
404
451
  // esbuild (Vite's default) handles SSR compilation correctly.
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,48 @@
1
+ /**
2
+ * Live component stub generator.
3
+ *
4
+ * When the Vite plugin encounters a `"use live"` file (or a `*.live.tsx` file)
5
+ * during a CLIENT build, it replaces the entire module with a stub that:
6
+ *
7
+ * 1. Renders the server-provided initial HTML (already in the DOM via SSR, or
8
+ * fetched from `/_alabjs/live/:id` on first mount in CSR pages).
9
+ * 2. Opens an SSE connection to `/_alabjs/live/:id?props=<base64>` and swaps
10
+ * the component's DOM node when new HTML arrives.
11
+ *
12
+ * The actual component code (which may contain DB calls, secrets, heavy deps)
13
+ * never ships to the browser.
14
+ */
15
+ /**
16
+ * Generate the client stub for a live component module.
17
+ *
18
+ * @param moduleId - Stable hash ID used as the SSE channel (e.g. `"a3f8c1d2"`)
19
+ * @param exportNames - Named exports from the original module (usually just `["default"]`)
20
+ */
21
+ export declare function generateLiveComponentStub(moduleId: string, exportNames: string[]): string;
22
+ /**
23
+ * The virtual `/@alabjs/live-client` module source.
24
+ *
25
+ * This is the only JavaScript that ships to the browser for the live update
26
+ * path. It is intentionally minimal (~1.5 kb minified):
27
+ *
28
+ * - `LiveMount(id, props)` — renders a placeholder div, subscribes to SSE,
29
+ * swaps innerHTML on each `data:` event, reconnects with backoff.
30
+ *
31
+ * React is used only for the initial mount and to expose the component API.
32
+ * All subsequent updates bypass React entirely — they are raw DOM swaps.
33
+ */
34
+ export declare function generateLiveClientRuntime(): string;
35
+ /**
36
+ * Generate the SERVER-BUILD wrapper for a live component.
37
+ *
38
+ * In SSR pages, the server must emit the same `<div data-live-id="...">` wrapper
39
+ * that `LiveMount` renders on the client, so React hydration doesn't error on a
40
+ * structural mismatch. The actual component is rendered inside the wrapper div —
41
+ * the client uses `suppressHydrationWarning` to preserve those children until
42
+ * the first SSE event arrives.
43
+ *
44
+ * @param moduleId - Stable 16-char ID (same value used by the client stub).
45
+ * @param actualId - Virtual import path for the real component (`<path>?live-actual`).
46
+ */
47
+ export declare function generateLiveServerWrapper(moduleId: string, actualId: string): string;
48
+ //# sourceMappingURL=live-stub.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"live-stub.d.ts","sourceRoot":"","sources":["../src/live-stub.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;GAaG;AAIH;;;;;GAKG;AACH,wBAAgB,yBAAyB,CACvC,QAAQ,EAAE,MAAM,EAChB,WAAW,EAAE,MAAM,EAAE,GACpB,MAAM,CA+BR;AAED;;;;;;;;;;;GAWG;AACH,wBAAgB,yBAAyB,IAAI,MAAM,CAwFlD;AAED;;;;;;;;;;;GAWG;AACH,wBAAgB,yBAAyB,CAAC,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,MAAM,CAcpF"}
@@ -0,0 +1,171 @@
1
+ /**
2
+ * Live component stub generator.
3
+ *
4
+ * When the Vite plugin encounters a `"use live"` file (or a `*.live.tsx` file)
5
+ * during a CLIENT build, it replaces the entire module with a stub that:
6
+ *
7
+ * 1. Renders the server-provided initial HTML (already in the DOM via SSR, or
8
+ * fetched from `/_alabjs/live/:id` on first mount in CSR pages).
9
+ * 2. Opens an SSE connection to `/_alabjs/live/:id?props=<base64>` and swaps
10
+ * the component's DOM node when new HTML arrives.
11
+ *
12
+ * The actual component code (which may contain DB calls, secrets, heavy deps)
13
+ * never ships to the browser.
14
+ */
15
+ const VIRTUAL_LIVE_CLIENT_ID = "/@alabjs/live-client";
16
+ /**
17
+ * Generate the client stub for a live component module.
18
+ *
19
+ * @param moduleId - Stable hash ID used as the SSE channel (e.g. `"a3f8c1d2"`)
20
+ * @param exportNames - Named exports from the original module (usually just `["default"]`)
21
+ */
22
+ export function generateLiveComponentStub(moduleId, exportNames) {
23
+ const hasDefault = exportNames.includes("default");
24
+ const lines = [
25
+ `import { LiveMount } from ${JSON.stringify(VIRTUAL_LIVE_CLIENT_ID)};`,
26
+ "",
27
+ ];
28
+ // Re-export the default as a LiveMount wrapper.
29
+ // Props are forwarded so the server receives the same input.
30
+ if (hasDefault) {
31
+ lines.push(`export default function LiveComponent(props) {`, ` return LiveMount({ id: ${JSON.stringify(moduleId)}, props });`, `}`, "");
32
+ }
33
+ // Any named exports besides `default` that are NOT live-config exports
34
+ // (liveInterval, liveTags) are stripped — they are server-only.
35
+ // Export them as undefined so destructured imports don't break.
36
+ const serverOnlyExports = exportNames.filter((n) => n !== "default" && n !== "liveInterval" && n !== "liveTags");
37
+ for (const name of serverOnlyExports) {
38
+ lines.push(`export const ${name} = undefined; // stripped: server-only`);
39
+ }
40
+ lines.push(`// alabjs: live module — server code stripped from client bundle`);
41
+ return lines.join("\n");
42
+ }
43
+ /**
44
+ * The virtual `/@alabjs/live-client` module source.
45
+ *
46
+ * This is the only JavaScript that ships to the browser for the live update
47
+ * path. It is intentionally minimal (~1.5 kb minified):
48
+ *
49
+ * - `LiveMount(id, props)` — renders a placeholder div, subscribes to SSE,
50
+ * swaps innerHTML on each `data:` event, reconnects with backoff.
51
+ *
52
+ * React is used only for the initial mount and to expose the component API.
53
+ * All subsequent updates bypass React entirely — they are raw DOM swaps.
54
+ */
55
+ export function generateLiveClientRuntime() {
56
+ return `
57
+ import { createElement, useEffect, useRef } from "react";
58
+
59
+ const RECONNECT_DELAYS = [500, 1000, 2000, 5000, 10000, 30000];
60
+
61
+ /**
62
+ * LiveMount — client runtime for "use live" components.
63
+ *
64
+ * On mount:
65
+ * 1. Checks if the server already rendered HTML into the placeholder
66
+ * (SSR pages: the div has children from the initial render).
67
+ * 2. Opens an SSE connection to /_alabjs/live/:id?props=<base64>.
68
+ * 3. On each "data:" event, replaces innerHTML with the new fragment.
69
+ * 4. On disconnect, reconnects with exponential backoff.
70
+ *
71
+ * @param id - Stable component ID (hash of the module path).
72
+ * @param props - Component props forwarded to the server renderer.
73
+ */
74
+ export function LiveMount({ id, props }) {
75
+ const ref = useRef(null);
76
+
77
+ useEffect(() => {
78
+ const node = ref.current;
79
+ if (!node) return;
80
+
81
+ let attempt = 0;
82
+ let es = null;
83
+ let dead = false;
84
+
85
+ const propsParam = encodeURIComponent(
86
+ btoa(JSON.stringify(props ?? {}))
87
+ );
88
+
89
+ function connect(lastEventId) {
90
+ if (dead) return;
91
+ let url = "/_alabjs/live/" + id + "?props=" + propsParam;
92
+ if (lastEventId) url += "&lastEventId=" + encodeURIComponent(lastEventId);
93
+
94
+ es = new EventSource(url);
95
+
96
+ es.onmessage = (e) => {
97
+ attempt = 0; // reset backoff on successful message
98
+ if (node && e.data) {
99
+ node.innerHTML = e.data;
100
+ }
101
+ };
102
+
103
+ // Named "event: error" — server pushed a render error message.
104
+ // Log it to the console and show a placeholder; do NOT reconnect
105
+ // (the server will keep the connection alive and push a fix later).
106
+ es.addEventListener("error", (e) => {
107
+ if (e.data) {
108
+ console.error("[alabjs/live] server render error:", e.data);
109
+ if (node) {
110
+ node.innerHTML =
111
+ '<div style="color:#f87171;font-size:12px;padding:8px;border:1px solid #f87171;border-radius:4px">' +
112
+ "Live component render error — check the server console." +
113
+ "</div>";
114
+ }
115
+ }
116
+ });
117
+
118
+ es.onerror = () => {
119
+ es.close();
120
+ if (dead) return;
121
+ const delay = RECONNECT_DELAYS[Math.min(attempt, RECONNECT_DELAYS.length - 1)];
122
+ attempt++;
123
+ setTimeout(() => connect(null), delay);
124
+ };
125
+ }
126
+
127
+ connect(null);
128
+
129
+ return () => {
130
+ dead = true;
131
+ es?.close();
132
+ };
133
+ }, [id]); // props changes are intentionally not in deps — server re-renders on interval/tag
134
+
135
+ return createElement("div", {
136
+ ref,
137
+ "data-live-id": id,
138
+ "data-live-props": JSON.stringify(props ?? {}),
139
+ suppressHydrationWarning: true,
140
+ });
141
+ }
142
+ `.trimStart();
143
+ }
144
+ /**
145
+ * Generate the SERVER-BUILD wrapper for a live component.
146
+ *
147
+ * In SSR pages, the server must emit the same `<div data-live-id="...">` wrapper
148
+ * that `LiveMount` renders on the client, so React hydration doesn't error on a
149
+ * structural mismatch. The actual component is rendered inside the wrapper div —
150
+ * the client uses `suppressHydrationWarning` to preserve those children until
151
+ * the first SSE event arrives.
152
+ *
153
+ * @param moduleId - Stable 16-char ID (same value used by the client stub).
154
+ * @param actualId - Virtual import path for the real component (`<path>?live-actual`).
155
+ */
156
+ export function generateLiveServerWrapper(moduleId, actualId) {
157
+ return [
158
+ `import _LiveImpl from ${JSON.stringify(actualId)};`,
159
+ `import { createElement as _h } from "react";`,
160
+ `export default function _LiveWrapper(props) {`,
161
+ ` return _h("div", {`,
162
+ ` "data-live-id": ${JSON.stringify(moduleId)},`,
163
+ ` "data-live-props": JSON.stringify(props ?? {}),`,
164
+ ` suppressHydrationWarning: true,`,
165
+ ` }, _h(_LiveImpl, props));`,
166
+ `}`,
167
+ `export * from ${JSON.stringify(actualId)};`,
168
+ ``,
169
+ ].join("\n");
170
+ }
171
+ //# sourceMappingURL=live-stub.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"live-stub.js","sourceRoot":"","sources":["../src/live-stub.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;GAaG;AAEH,MAAM,sBAAsB,GAAG,sBAAsB,CAAC;AAEtD;;;;;GAKG;AACH,MAAM,UAAU,yBAAyB,CACvC,QAAgB,EAChB,WAAqB;IAErB,MAAM,UAAU,GAAG,WAAW,CAAC,QAAQ,CAAC,SAAS,CAAC,CAAC;IAEnD,MAAM,KAAK,GAAa;QACtB,6BAA6B,IAAI,CAAC,SAAS,CAAC,sBAAsB,CAAC,GAAG;QACtE,EAAE;KACH,CAAC;IAEF,gDAAgD;IAChD,6DAA6D;IAC7D,IAAI,UAAU,EAAE,CAAC;QACf,KAAK,CAAC,IAAI,CACR,gDAAgD,EAChD,4BAA4B,IAAI,CAAC,SAAS,CAAC,QAAQ,CAAC,aAAa,EACjE,GAAG,EACH,EAAE,CACH,CAAC;IACJ,CAAC;IAED,uEAAuE;IACvE,gEAAgE;IAChE,gEAAgE;IAChE,MAAM,iBAAiB,GAAG,WAAW,CAAC,MAAM,CAC1C,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,KAAK,SAAS,IAAI,CAAC,KAAK,cAAc,IAAI,CAAC,KAAK,UAAU,CACnE,CAAC;IACF,KAAK,MAAM,IAAI,IAAI,iBAAiB,EAAE,CAAC;QACrC,KAAK,CAAC,IAAI,CAAC,gBAAgB,IAAI,wCAAwC,CAAC,CAAC;IAC3E,CAAC;IAED,KAAK,CAAC,IAAI,CAAC,kEAAkE,CAAC,CAAC;IAC/E,OAAO,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;AAC1B,CAAC;AAED;;;;;;;;;;;GAWG;AACH,MAAM,UAAU,yBAAyB;IACvC,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAsFR,CAAC,SAAS,EAAE,CAAC;AACd,CAAC;AAED;;;;;;;;;;;GAWG;AACH,MAAM,UAAU,yBAAyB,CAAC,QAAgB,EAAE,QAAgB;IAC1E,OAAO;QACL,yBAAyB,IAAI,CAAC,SAAS,CAAC,QAAQ,CAAC,GAAG;QACpD,8CAA8C;QAC9C,+CAA+C;QAC/C,sBAAsB;QACtB,uBAAuB,IAAI,CAAC,SAAS,CAAC,QAAQ,CAAC,GAAG;QAClD,qDAAqD;QACrD,qCAAqC;QACrC,6BAA6B;QAC7B,GAAG;QACH,iBAAiB,IAAI,CAAC,SAAS,CAAC,QAAQ,CAAC,GAAG;QAC5C,EAAE;KACH,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;AACf,CAAC"}
package/dist/napi.d.ts CHANGED
@@ -13,5 +13,18 @@ export interface AlabNapi {
13
13
  * Used by the build pipeline to derive a content-addressed build ID.
14
14
  */
15
15
  hashBuildId(content: string): string;
16
+ /**
17
+ * Detect a `"use live"` or `"use client"` directive at the top of a source file.
18
+ * Returns JSON: `{ kind: "use_live" | "use_client" | "none", offset: number }`.
19
+ * Only inspects the first statement — O(1) per file.
20
+ */
21
+ detectDirective(source: string, filename: string): string;
22
+ /**
23
+ * Walk `appDir` and validate all RouteLink/Link/navigate path references
24
+ * against the compiled route manifest.
25
+ * Returns JSON: `Array<{ file, offset, kind, path, suggestion? }>`.
26
+ * An empty array means no violations.
27
+ */
28
+ checkRouteRefs(appDir: string, manifestJson: string): string;
16
29
  }
17
30
  //# sourceMappingURL=napi.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"napi.d.ts","sourceRoot":"","sources":["../src/napi.ts"],"names":[],"mappings":"AAAA,+DAA+D;AAC/D,MAAM,WAAW,QAAQ;IACvB,aAAa,CAAC,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,SAAS,EAAE,OAAO,GAAG,MAAM,CAAC;IAC7F,aAAa,CAAC,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,MAAM,CAAC;IACxD,WAAW,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC;IACpC,aAAa,CACX,KAAK,EAAE,MAAM,EACb,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,EACvB,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,EACrB,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,EACtB,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,GACrB,OAAO,CAAC,MAAM,CAAC,CAAC;IACnB,+DAA+D;IAC/D,gBAAgB,CAAC,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,MAAM,CAAC;IAC3D,8EAA8E;IAC9E,YAAY,CAAC,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,MAAM,CAAC;IACrD;;;OAGG;IACH,WAAW,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,CAAC;CACtC"}
1
+ {"version":3,"file":"napi.d.ts","sourceRoot":"","sources":["../src/napi.ts"],"names":[],"mappings":"AAAA,+DAA+D;AAC/D,MAAM,WAAW,QAAQ;IACvB,aAAa,CAAC,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,SAAS,EAAE,OAAO,GAAG,MAAM,CAAC;IAC7F,aAAa,CAAC,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,MAAM,CAAC;IACxD,WAAW,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC;IACpC,aAAa,CACX,KAAK,EAAE,MAAM,EACb,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,EACvB,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,EACrB,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,EACtB,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,GACrB,OAAO,CAAC,MAAM,CAAC,CAAC;IACnB,+DAA+D;IAC/D,gBAAgB,CAAC,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,MAAM,CAAC;IAC3D,8EAA8E;IAC9E,YAAY,CAAC,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,MAAM,CAAC;IACrD;;;OAGG;IACH,WAAW,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,CAAC;IACrC;;;;OAIG;IACH,eAAe,CAAC,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,MAAM,CAAC;IAC1D;;;;;OAKG;IACH,cAAc,CAAC,MAAM,EAAE,MAAM,EAAE,YAAY,EAAE,MAAM,GAAG,MAAM,CAAC;CAC9D"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "alabjs-vite-plugin",
3
- "version": "0.3.0-alpha.1",
3
+ "version": "0.4.0",
4
4
  "description": "Vite plugin that wires AlabJS's Rust compiler into the transform pipeline",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -15,7 +15,7 @@
15
15
  "react-refresh": "^0.14.0"
16
16
  },
17
17
  "optionalDependencies": {
18
- "@alabjs/compiler": "0.3.0-alpha.1"
18
+ "@alabjs/compiler": "0.4.0"
19
19
  },
20
20
  "devDependencies": {
21
21
  "typescript": "^5.8.0",
package/src/index.ts CHANGED
@@ -2,6 +2,7 @@ import type { Plugin } from "vite";
2
2
  import type { AlabNapi } from "./napi.js";
3
3
  import { parseErrorLocation, formatBoundaryError } from "./overlay.js";
4
4
  import { devToolbarScript } from "./devtools.js";
5
+ import { generateLiveComponentStub, generateLiveClientRuntime, generateLiveServerWrapper } from "./live-stub.js";
5
6
  import { createRequire } from "node:module";
6
7
  import { pathToFileURL } from "node:url";
7
8
  import { dirname } from "node:path";
@@ -13,6 +14,7 @@ interface AlabPluginOptions {
13
14
 
14
15
  const VIRTUAL_CLIENT_ID = "/@alabjs/client";
15
16
  const VIRTUAL_REFRESH_ID = "/@react-refresh";
17
+ const VIRTUAL_LIVE_CLIENT_ID = "/@alabjs/live-client";
16
18
  // In production builds the Rust compiler still emits jsxDEV calls (from
17
19
  // react/jsx-dev-runtime), but React's production bundle exports jsxDEV=void 0.
18
20
  // This virtual shim re-exports the production jsx/jsxs functions under the
@@ -103,11 +105,25 @@ export function alabPlugin(options: AlabPluginOptions = {}): Plugin[] {
103
105
  resolveId(id): string | null {
104
106
  if (id === VIRTUAL_CLIENT_ID) return VIRTUAL_CLIENT_ID;
105
107
  if (id === VIRTUAL_REFRESH_ID) return VIRTUAL_REFRESH_ID;
108
+ if (id === VIRTUAL_LIVE_CLIENT_ID) return VIRTUAL_LIVE_CLIENT_ID;
106
109
  if (id === VIRTUAL_JSX_DEV_SHIM_ID) return VIRTUAL_JSX_DEV_SHIM_ID;
110
+ // ?live-actual: used by the server-build live wrapper to import the real
111
+ // component without triggering another live transform (avoids infinite loop).
112
+ if (id.endsWith("?live-actual")) return id;
107
113
  return null;
108
114
  },
109
115
 
110
116
  async load(id): Promise<string | null> {
117
+ if (id === VIRTUAL_LIVE_CLIENT_ID) {
118
+ return generateLiveClientRuntime();
119
+ }
120
+ if (id.endsWith("?live-actual")) {
121
+ // Load the raw TypeScript source for the real live component.
122
+ // Vite's default transformer (esbuild) will compile it after this load hook.
123
+ const realPath = id.slice(0, -"?live-actual".length);
124
+ const { readFileSync } = await import("node:fs");
125
+ return readFileSync(realPath, "utf-8");
126
+ }
111
127
  if (id === VIRTUAL_REFRESH_ID) {
112
128
  // Re-export the react-refresh runtime so the preamble can import it.
113
129
  // Use bare specifier so Vite's dep optimizer (pre-bundler) handles the
@@ -414,10 +430,39 @@ if (import.meta.env.DEV) {
414
430
  if (!napi) return null;
415
431
  if (!/\.(ts|tsx)$/.test(id)) return null;
416
432
  if (id.includes("node_modules")) return null;
433
+ // ?live-actual IDs are loaded by generateLiveServerWrapper imports; let
434
+ // esbuild compile them normally without triggering another live transform.
435
+ if (id.includes("?live-actual")) return null;
417
436
 
418
437
  const isServerFile = /\.server\.(ts|tsx)$/.test(id);
419
438
  const isClientBuild = !(transformOptions as { ssr?: boolean } | undefined)?.ssr;
420
439
 
440
+ // ── Live component detection ─────────────────────────────────────────
441
+ // A file is a live component when it uses the *.live.tsx convention OR
442
+ // has a "use live" directive as its first statement.
443
+ const isLiveByConvention = /\.live\.(ts|tsx)$/.test(id);
444
+ let isLiveByDirective = false;
445
+ if (!isLiveByConvention && napi) {
446
+ const directiveJson = napi.detectDirective(code, id);
447
+ const directive = JSON.parse(directiveJson) as { kind: string };
448
+ isLiveByDirective = directive.kind === "use_live";
449
+ }
450
+ const isLiveFile = isLiveByConvention || isLiveByDirective;
451
+
452
+ if (isLiveFile) {
453
+ // Derive a stable 16-char ID from the module path (reuses existing FNV-1a hash).
454
+ const moduleId = napi ? napi.hashBuildId(id) : id.replace(/[^a-z0-9]/gi, "_");
455
+ if (isClientBuild) {
456
+ // Client build: replace with LiveMount stub — server code never ships to browser.
457
+ return { code: generateLiveComponentStub(moduleId, ["default"]), map: null };
458
+ } else {
459
+ // Server build: wrap default export in a data-live-id div so SSR pages emit
460
+ // the same DOM structure as LiveMount, enabling React hydration without errors.
461
+ // The ?live-actual import loads the real component without re-triggering this path.
462
+ return { code: generateLiveServerWrapper(moduleId, id + "?live-actual"), map: null };
463
+ }
464
+ }
465
+
421
466
  // Skip Rust compiler for SSR transforms — the Rust compiler injects React
422
467
  // Fast Refresh globals ($RefreshReg$) that don't exist in the SSR context.
423
468
  // esbuild (Vite's default) handles SSR compilation correctly.
@@ -0,0 +1,188 @@
1
+ /**
2
+ * Live component stub generator.
3
+ *
4
+ * When the Vite plugin encounters a `"use live"` file (or a `*.live.tsx` file)
5
+ * during a CLIENT build, it replaces the entire module with a stub that:
6
+ *
7
+ * 1. Renders the server-provided initial HTML (already in the DOM via SSR, or
8
+ * fetched from `/_alabjs/live/:id` on first mount in CSR pages).
9
+ * 2. Opens an SSE connection to `/_alabjs/live/:id?props=<base64>` and swaps
10
+ * the component's DOM node when new HTML arrives.
11
+ *
12
+ * The actual component code (which may contain DB calls, secrets, heavy deps)
13
+ * never ships to the browser.
14
+ */
15
+
16
+ const VIRTUAL_LIVE_CLIENT_ID = "/@alabjs/live-client";
17
+
18
+ /**
19
+ * Generate the client stub for a live component module.
20
+ *
21
+ * @param moduleId - Stable hash ID used as the SSE channel (e.g. `"a3f8c1d2"`)
22
+ * @param exportNames - Named exports from the original module (usually just `["default"]`)
23
+ */
24
+ export function generateLiveComponentStub(
25
+ moduleId: string,
26
+ exportNames: string[],
27
+ ): string {
28
+ const hasDefault = exportNames.includes("default");
29
+
30
+ const lines: string[] = [
31
+ `import { LiveMount } from ${JSON.stringify(VIRTUAL_LIVE_CLIENT_ID)};`,
32
+ "",
33
+ ];
34
+
35
+ // Re-export the default as a LiveMount wrapper.
36
+ // Props are forwarded so the server receives the same input.
37
+ if (hasDefault) {
38
+ lines.push(
39
+ `export default function LiveComponent(props) {`,
40
+ ` return LiveMount({ id: ${JSON.stringify(moduleId)}, props });`,
41
+ `}`,
42
+ "",
43
+ );
44
+ }
45
+
46
+ // Any named exports besides `default` that are NOT live-config exports
47
+ // (liveInterval, liveTags) are stripped — they are server-only.
48
+ // Export them as undefined so destructured imports don't break.
49
+ const serverOnlyExports = exportNames.filter(
50
+ (n) => n !== "default" && n !== "liveInterval" && n !== "liveTags",
51
+ );
52
+ for (const name of serverOnlyExports) {
53
+ lines.push(`export const ${name} = undefined; // stripped: server-only`);
54
+ }
55
+
56
+ lines.push(`// alabjs: live module — server code stripped from client bundle`);
57
+ return lines.join("\n");
58
+ }
59
+
60
+ /**
61
+ * The virtual `/@alabjs/live-client` module source.
62
+ *
63
+ * This is the only JavaScript that ships to the browser for the live update
64
+ * path. It is intentionally minimal (~1.5 kb minified):
65
+ *
66
+ * - `LiveMount(id, props)` — renders a placeholder div, subscribes to SSE,
67
+ * swaps innerHTML on each `data:` event, reconnects with backoff.
68
+ *
69
+ * React is used only for the initial mount and to expose the component API.
70
+ * All subsequent updates bypass React entirely — they are raw DOM swaps.
71
+ */
72
+ export function generateLiveClientRuntime(): string {
73
+ return `
74
+ import { createElement, useEffect, useRef } from "react";
75
+
76
+ const RECONNECT_DELAYS = [500, 1000, 2000, 5000, 10000, 30000];
77
+
78
+ /**
79
+ * LiveMount — client runtime for "use live" components.
80
+ *
81
+ * On mount:
82
+ * 1. Checks if the server already rendered HTML into the placeholder
83
+ * (SSR pages: the div has children from the initial render).
84
+ * 2. Opens an SSE connection to /_alabjs/live/:id?props=<base64>.
85
+ * 3. On each "data:" event, replaces innerHTML with the new fragment.
86
+ * 4. On disconnect, reconnects with exponential backoff.
87
+ *
88
+ * @param id - Stable component ID (hash of the module path).
89
+ * @param props - Component props forwarded to the server renderer.
90
+ */
91
+ export function LiveMount({ id, props }) {
92
+ const ref = useRef(null);
93
+
94
+ useEffect(() => {
95
+ const node = ref.current;
96
+ if (!node) return;
97
+
98
+ let attempt = 0;
99
+ let es = null;
100
+ let dead = false;
101
+
102
+ const propsParam = encodeURIComponent(
103
+ btoa(JSON.stringify(props ?? {}))
104
+ );
105
+
106
+ function connect(lastEventId) {
107
+ if (dead) return;
108
+ let url = "/_alabjs/live/" + id + "?props=" + propsParam;
109
+ if (lastEventId) url += "&lastEventId=" + encodeURIComponent(lastEventId);
110
+
111
+ es = new EventSource(url);
112
+
113
+ es.onmessage = (e) => {
114
+ attempt = 0; // reset backoff on successful message
115
+ if (node && e.data) {
116
+ node.innerHTML = e.data;
117
+ }
118
+ };
119
+
120
+ // Named "event: error" — server pushed a render error message.
121
+ // Log it to the console and show a placeholder; do NOT reconnect
122
+ // (the server will keep the connection alive and push a fix later).
123
+ es.addEventListener("error", (e) => {
124
+ if (e.data) {
125
+ console.error("[alabjs/live] server render error:", e.data);
126
+ if (node) {
127
+ node.innerHTML =
128
+ '<div style="color:#f87171;font-size:12px;padding:8px;border:1px solid #f87171;border-radius:4px">' +
129
+ "Live component render error — check the server console." +
130
+ "</div>";
131
+ }
132
+ }
133
+ });
134
+
135
+ es.onerror = () => {
136
+ es.close();
137
+ if (dead) return;
138
+ const delay = RECONNECT_DELAYS[Math.min(attempt, RECONNECT_DELAYS.length - 1)];
139
+ attempt++;
140
+ setTimeout(() => connect(null), delay);
141
+ };
142
+ }
143
+
144
+ connect(null);
145
+
146
+ return () => {
147
+ dead = true;
148
+ es?.close();
149
+ };
150
+ }, [id]); // props changes are intentionally not in deps — server re-renders on interval/tag
151
+
152
+ return createElement("div", {
153
+ ref,
154
+ "data-live-id": id,
155
+ "data-live-props": JSON.stringify(props ?? {}),
156
+ suppressHydrationWarning: true,
157
+ });
158
+ }
159
+ `.trimStart();
160
+ }
161
+
162
+ /**
163
+ * Generate the SERVER-BUILD wrapper for a live component.
164
+ *
165
+ * In SSR pages, the server must emit the same `<div data-live-id="...">` wrapper
166
+ * that `LiveMount` renders on the client, so React hydration doesn't error on a
167
+ * structural mismatch. The actual component is rendered inside the wrapper div —
168
+ * the client uses `suppressHydrationWarning` to preserve those children until
169
+ * the first SSE event arrives.
170
+ *
171
+ * @param moduleId - Stable 16-char ID (same value used by the client stub).
172
+ * @param actualId - Virtual import path for the real component (`<path>?live-actual`).
173
+ */
174
+ export function generateLiveServerWrapper(moduleId: string, actualId: string): string {
175
+ return [
176
+ `import _LiveImpl from ${JSON.stringify(actualId)};`,
177
+ `import { createElement as _h } from "react";`,
178
+ `export default function _LiveWrapper(props) {`,
179
+ ` return _h("div", {`,
180
+ ` "data-live-id": ${JSON.stringify(moduleId)},`,
181
+ ` "data-live-props": JSON.stringify(props ?? {}),`,
182
+ ` suppressHydrationWarning: true,`,
183
+ ` }, _h(_LiveImpl, props));`,
184
+ `}`,
185
+ `export * from ${JSON.stringify(actualId)};`,
186
+ ``,
187
+ ].join("\n");
188
+ }
package/src/napi.ts CHANGED
@@ -19,4 +19,17 @@ export interface AlabNapi {
19
19
  * Used by the build pipeline to derive a content-addressed build ID.
20
20
  */
21
21
  hashBuildId(content: string): string;
22
+ /**
23
+ * Detect a `"use live"` or `"use client"` directive at the top of a source file.
24
+ * Returns JSON: `{ kind: "use_live" | "use_client" | "none", offset: number }`.
25
+ * Only inspects the first statement — O(1) per file.
26
+ */
27
+ detectDirective(source: string, filename: string): string;
28
+ /**
29
+ * Walk `appDir` and validate all RouteLink/Link/navigate path references
30
+ * against the compiled route manifest.
31
+ * Returns JSON: `Array<{ file, offset, kind, path, suggestion? }>`.
32
+ * An empty array means no violations.
33
+ */
34
+ checkRouteRefs(appDir: string, manifestJson: string): string;
22
35
  }
@@ -1 +1 @@
1
- {"fileNames":["../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","./src/compiler.d.ts","./src/devtools.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/compatibility/disposable.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/compatibility/indexable.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/compatibility/iterators.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/compatibility/index.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/globals.typedarray.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/buffer.buffer.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/globals.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/web-globals/abortcontroller.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/web-globals/domexception.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/web-globals/events.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/header.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/readable.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/file.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/fetch.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/formdata.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/connector.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/client.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/errors.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/dispatcher.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-dispatcher.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-origin.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool-stats.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/handlers.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/balanced-pool.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-interceptor.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-client.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-pool.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-errors.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/proxy-agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-handler.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/api.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/interceptors.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/util.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cookies.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/patch.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/websocket.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/eventsource.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/filereader.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/diagnostics-channel.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/content-type.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cache.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/index.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/web-globals/fetch.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/web-globals/navigator.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/web-globals/storage.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/assert.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/assert/strict.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/async_hooks.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/buffer.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/child_process.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/cluster.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/console.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/constants.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/crypto.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/dgram.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/dns.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/dns/promises.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/domain.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/events.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/fs.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/fs/promises.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/http.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/http2.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/https.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/inspector.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/inspector.generated.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/module.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/net.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/os.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/path.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/perf_hooks.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/process.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/punycode.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/querystring.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/readline.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/readline/promises.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/repl.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/sea.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/sqlite.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/stream.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/stream/promises.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/stream/consumers.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/stream/web.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/string_decoder.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/test.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/timers.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/timers/promises.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/tls.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/trace_events.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/tty.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/url.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/util.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/v8.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/vm.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/wasi.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/worker_threads.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/zlib.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/index.d.ts","../../node_modules/.pnpm/vite@8.0.0_@types+node@22.19.15_esbuild@0.25.12_jiti@2.6.1/node_modules/vite/types/hmrPayload.d.ts","../../node_modules/.pnpm/vite@8.0.0_@types+node@22.19.15_esbuild@0.25.12_jiti@2.6.1/node_modules/vite/dist/node/chunks/moduleRunnerTransport.d.ts","../../node_modules/.pnpm/vite@8.0.0_@types+node@22.19.15_esbuild@0.25.12_jiti@2.6.1/node_modules/vite/types/customEvent.d.ts","../../node_modules/.pnpm/rolldown@1.0.0-rc.9/node_modules/rolldown/dist/shared/logging-C6h4g8dA.d.mts","../../node_modules/.pnpm/@oxc-project+types@0.115.0/node_modules/@oxc-project/types/types.d.ts","../../node_modules/.pnpm/rolldown@1.0.0-rc.9/node_modules/rolldown/dist/shared/binding-BohGL_65.d.mts","../../node_modules/.pnpm/@rolldown+pluginutils@1.0.0-rc.9/node_modules/@rolldown/pluginutils/dist/filter/composable-filters.d.ts","../../node_modules/.pnpm/@rolldown+pluginutils@1.0.0-rc.9/node_modules/@rolldown/pluginutils/dist/filter/filter-vite-plugins.d.ts","../../node_modules/.pnpm/@rolldown+pluginutils@1.0.0-rc.9/node_modules/@rolldown/pluginutils/dist/filter/simple-filters.d.ts","../../node_modules/.pnpm/@rolldown+pluginutils@1.0.0-rc.9/node_modules/@rolldown/pluginutils/dist/filter/index.d.ts","../../node_modules/.pnpm/@rolldown+pluginutils@1.0.0-rc.9/node_modules/@rolldown/pluginutils/dist/index.d.ts","../../node_modules/.pnpm/rolldown@1.0.0-rc.9/node_modules/rolldown/dist/shared/define-config-cG45vHwf.d.mts","../../node_modules/.pnpm/rolldown@1.0.0-rc.9/node_modules/rolldown/dist/index.d.mts","../../node_modules/.pnpm/rolldown@1.0.0-rc.9/node_modules/rolldown/dist/parse-ast-index.d.mts","../../node_modules/.pnpm/vite@8.0.0_@types+node@22.19.15_esbuild@0.25.12_jiti@2.6.1/node_modules/vite/types/internal/rollupTypeCompat.d.ts","../../node_modules/.pnpm/rolldown@1.0.0-rc.9/node_modules/rolldown/dist/shared/constructors-DNuo4d0H.d.mts","../../node_modules/.pnpm/rolldown@1.0.0-rc.9/node_modules/rolldown/dist/plugins-index.d.mts","../../node_modules/.pnpm/rolldown@1.0.0-rc.9/node_modules/rolldown/dist/shared/transform-BoJxrM-e.d.mts","../../node_modules/.pnpm/rolldown@1.0.0-rc.9/node_modules/rolldown/dist/utils-index.d.mts","../../node_modules/.pnpm/vite@8.0.0_@types+node@22.19.15_esbuild@0.25.12_jiti@2.6.1/node_modules/vite/types/hot.d.ts","../../node_modules/.pnpm/vite@8.0.0_@types+node@22.19.15_esbuild@0.25.12_jiti@2.6.1/node_modules/vite/dist/node/module-runner.d.ts","../../node_modules/.pnpm/esbuild@0.25.12/node_modules/esbuild/lib/main.d.ts","../../node_modules/.pnpm/vite@8.0.0_@types+node@22.19.15_esbuild@0.25.12_jiti@2.6.1/node_modules/vite/types/internal/esbuildOptions.d.ts","../../node_modules/.pnpm/vite@8.0.0_@types+node@22.19.15_esbuild@0.25.12_jiti@2.6.1/node_modules/vite/types/metadata.d.ts","../../node_modules/.pnpm/vite@8.0.0_@types+node@22.19.15_esbuild@0.25.12_jiti@2.6.1/node_modules/vite/types/internal/terserOptions.d.ts","../../node_modules/.pnpm/source-map-js@1.2.1/node_modules/source-map-js/source-map.d.ts","../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/previous-map.d.ts","../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/input.d.ts","../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/css-syntax-error.d.ts","../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/declaration.d.ts","../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/root.d.ts","../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/warning.d.ts","../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/lazy-result.d.ts","../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/no-work-result.d.ts","../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/processor.d.ts","../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/result.d.ts","../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/document.d.ts","../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/rule.d.ts","../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/node.d.ts","../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/comment.d.ts","../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/container.d.ts","../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/at-rule.d.ts","../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/list.d.ts","../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/postcss.d.ts","../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/postcss.d.mts","../../node_modules/.pnpm/lightningcss@1.32.0/node_modules/lightningcss/node/ast.d.ts","../../node_modules/.pnpm/lightningcss@1.32.0/node_modules/lightningcss/node/targets.d.ts","../../node_modules/.pnpm/lightningcss@1.32.0/node_modules/lightningcss/node/index.d.ts","../../node_modules/.pnpm/vite@8.0.0_@types+node@22.19.15_esbuild@0.25.12_jiti@2.6.1/node_modules/vite/types/internal/lightningcssOptions.d.ts","../../node_modules/.pnpm/vite@8.0.0_@types+node@22.19.15_esbuild@0.25.12_jiti@2.6.1/node_modules/vite/types/internal/cssPreprocessorOptions.d.ts","../../node_modules/.pnpm/rolldown@1.0.0-rc.9/node_modules/rolldown/dist/filter-index.d.mts","../../node_modules/.pnpm/vite@8.0.0_@types+node@22.19.15_esbuild@0.25.12_jiti@2.6.1/node_modules/vite/types/importGlob.d.ts","../../node_modules/.pnpm/vite@8.0.0_@types+node@22.19.15_esbuild@0.25.12_jiti@2.6.1/node_modules/vite/dist/node/index.d.ts","./src/napi.ts","./src/overlay.ts","../../crates/alab-napi/index.d.ts","./src/index.ts"],"fileIdsList":[[67,115,132,133],[67,115,132,133,172,173,174],[67,115,132,133,175],[67,112,113,115,132,133],[67,114,115,132,133],[115,132,133],[67,115,120,132,133,150],[67,115,116,121,126,132,133,135,147,158],[67,115,116,117,126,132,133,135],[62,63,64,67,115,132,133],[67,115,118,132,133,159],[67,115,119,120,127,132,133,136],[67,115,120,132,133,147,155],[67,115,121,123,126,132,133,135],[67,114,115,122,132,133],[67,115,123,124,132,133],[67,115,125,126,132,133],[67,114,115,126,132,133],[67,115,126,127,128,132,133,147,158],[67,115,126,127,128,132,133,142,147,150],[67,108,115,123,126,129,132,133,135,147,158],[67,115,126,127,129,130,132,133,135,147,155,158],[67,115,129,131,132,133,147,155,158],[65,66,67,68,69,70,71,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164],[67,115,126,132,133],[67,115,132,133,134,158],[67,115,123,126,132,133,135,147],[67,115,132,133,136],[67,115,132,133,137],[67,114,115,132,133,138],[67,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164],[67,115,132,133,140],[67,115,132,133,141],[67,115,126,132,133,142,143],[67,115,132,133,142,144,159,161],[67,115,127,132,133],[67,115,126,132,133,147,148,150],[67,115,132,133,149,150],[67,115,132,133,147,148],[67,115,132,133,150],[67,115,132,133,151],[67,112,115,132,133,147,152,158],[67,115,126,132,133,153,154],[67,115,132,133,153,154],[67,115,120,132,133,135,147,155],[67,115,132,133,156],[67,115,132,133,135,157],[67,115,129,132,133,141,158],[67,115,120,132,133,159],[67,115,132,133,147,160],[67,115,132,133,134,161],[67,115,132,133,162],[67,108,115,132,133],[67,108,115,126,128,132,133,138,147,150,158,160,161,163],[67,115,132,133,147,164],[67,115,132,133,211,212],[67,115,132,133,206],[67,115,132,133,204,206],[67,115,132,133,195,203,204,205,207,209],[67,115,132,133,193],[67,115,132,133,196,201,206,209],[67,115,132,133,192,209],[67,115,132,133,196,197,200,201,202,209],[67,115,132,133,196,197,198,200,201,209],[67,115,132,133,193,194,195,196,197,201,202,203,205,206,207,209],[67,115,132,133,209],[67,115,132,133,191,193,194,195,196,197,198,200,201,202,203,204,205,206,207,208],[67,115,132,133,191,209],[67,115,132,133,196,198,199,201,202,209],[67,115,132,133,200,209],[67,115,132,133,201,202,206,209],[67,115,132,133,194,204],[67,115,132,133,171,177],[67,115,132,133,169,171,177],[67,115,132,133,170,171],[67,115,132,133,171,177,181],[67,115,132,133,170],[67,115,132,133,169,170,171,176],[67,115,132,133,169,171],[67,115,132,133,170,171,183],[67,80,84,115,132,133,158],[67,80,115,132,133,147,158],[67,75,115,132,133],[67,77,80,115,132,133,155,158],[67,115,132,133,135,155],[67,115,132,133,165],[67,75,115,132,133,165],[67,77,80,115,132,133,135,158],[67,72,73,76,79,115,126,132,133,147,158],[67,80,87,115,132,133],[67,72,78,115,132,133],[67,80,101,102,115,132,133],[67,76,80,115,132,133,150,158,165],[67,101,115,132,133,165],[67,74,75,115,132,133,165],[67,80,115,132,133],[67,74,75,76,77,78,79,80,81,82,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,102,103,104,105,106,107,115,132,133],[67,80,95,115,132,133],[67,80,87,88,115,132,133],[67,78,80,88,89,115,132,133],[67,79,115,132,133],[67,72,75,80,115,132,133],[67,80,84,88,89,115,132,133],[67,84,115,132,133],[67,78,80,83,115,132,133,158],[67,72,77,80,87,115,132,133],[67,115,132,133,147],[67,75,80,101,115,132,133,163,165],[67,115,132,133,166],[67,115,126,127,129,130,131,132,133,135,147,155,158,164,165,166,167,168,178,179,180,182,184,186,188,189,190,210,214,215,216,217,218],[67,115,132,133,166,167,168,185],[67,115,132,133,168],[67,115,132,133,187],[67,115,132,133,213],[67,115,132,133,178,189,218],[67,115,132,133,178,218],[60,61,67,115,127,132,133,134,137,158,218,219,220]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"92ed772df70e9236c59f2f6d5c55c068a1bdbb1a1d8dd3fb4cfe16d7d5021d94","impliedFormat":99},{"version":"beac30bfffa2b00367089219736a9b9ef8847eba14e06bc56827e273c384532a","signature":"ff94f0f41479e8c9f2dc0403a7950127d4ff4a396946a144d70fed225b7dceae","impliedFormat":99},{"version":"6c7176368037af28cb72f2392010fa1cef295d6d6744bca8cfb54985f3a18c3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"437e20f2ba32abaeb7985e0afe0002de1917bc74e949ba585e49feba65da6ca1","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"98cffbf06d6bab333473c70a893770dbe990783904002c4f1a960447b4b53dca","affectsGlobalScope":true,"impliedFormat":1},{"version":"3af97acf03cc97de58a3a4bc91f8f616408099bc4233f6d0852e72a8ffb91ac9","affectsGlobalScope":true,"impliedFormat":1},{"version":"808069bba06b6768b62fd22429b53362e7af342da4a236ed2d2e1c89fcca3b4a","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"b52476feb4a0cbcb25e5931b930fc73cb6643fb1a5060bf8a3dda0eeae5b4b68","affectsGlobalScope":true,"impliedFormat":1},{"version":"f9501cc13ce624c72b61f12b3963e84fad210fbdf0ffbc4590e08460a3f04eba","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0fa06ada475b910e2106c98c68b10483dc8811d0c14a8a8dd36efb2672485b29","impliedFormat":1},{"version":"33e5e9aba62c3193d10d1d33ae1fa75c46a1171cf76fef750777377d53b0303f","impliedFormat":1},{"version":"2b06b93fd01bcd49d1a6bd1f9b65ddcae6480b9a86e9061634d6f8e354c1468f","impliedFormat":1},{"version":"6a0cd27e5dc2cfbe039e731cf879d12b0e2dded06d1b1dedad07f7712de0d7f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"13f5c844119c43e51ce777c509267f14d6aaf31eafb2c2b002ca35584cd13b29","impliedFormat":1},{"version":"e60477649d6ad21542bd2dc7e3d9ff6853d0797ba9f689ba2f6653818999c264","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"4c829ab315f57c5442c6667b53769975acbf92003a66aef19bce151987675bd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"b2ade7657e2db96d18315694789eff2ddd3d8aea7215b181f8a0b303277cc579","impliedFormat":1},{"version":"9855e02d837744303391e5623a531734443a5f8e6e8755e018c41d63ad797db2","impliedFormat":1},{"version":"4d631b81fa2f07a0e63a9a143d6a82c25c5f051298651a9b69176ba28930756d","impliedFormat":1},{"version":"836a356aae992ff3c28a0212e3eabcb76dd4b0cc06bcb9607aeef560661b860d","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"41670ee38943d9cbb4924e436f56fc19ee94232bc96108562de1a734af20dc2c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c906fb15bd2aabc9ed1e3f44eb6a8661199d6c320b3aa196b826121552cb3695","impliedFormat":1},{"version":"22295e8103f1d6d8ea4b5d6211e43421fe4564e34d0dd8e09e520e452d89e659","impliedFormat":1},{"version":"58647d85d0f722a1ce9de50955df60a7489f0593bf1a7015521efe901c06d770","impliedFormat":1},{"version":"6b4e081d55ac24fc8a4631d5dd77fe249fa25900abd7d046abb87d90e3b45645","impliedFormat":1},{"version":"a10f0e1854f3316d7ee437b79649e5a6ae3ae14ffe6322b02d4987071a95362e","impliedFormat":1},{"version":"e208f73ef6a980104304b0d2ca5f6bf1b85de6009d2c7e404028b875020fa8f2","impliedFormat":1},{"version":"d163b6bc2372b4f07260747cbc6c0a6405ab3fbcea3852305e98ac43ca59f5bc","impliedFormat":1},{"version":"e6fa9ad47c5f71ff733744a029d1dc472c618de53804eae08ffc243b936f87ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"83e63d6ccf8ec004a3bb6d58b9bb0104f60e002754b1e968024b320730cc5311","impliedFormat":1},{"version":"24826ed94a78d5c64bd857570fdbd96229ad41b5cb654c08d75a9845e3ab7dde","impliedFormat":1},{"version":"8b479a130ccb62e98f11f136d3ac80f2984fdc07616516d29881f3061f2dd472","impliedFormat":1},{"version":"928af3d90454bf656a52a48679f199f64c1435247d6189d1caf4c68f2eaf921f","affectsGlobalScope":true,"impliedFormat":1},{"version":"bceb58df66ab8fb00170df20cd813978c5ab84be1d285710c4eb005d8e9d8efb","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"933921f0bb0ec12ef45d1062a1fc0f27635318f4d294e4d99de9a5493e618ca2","impliedFormat":1},{"version":"71a0f3ad612c123b57239a7749770017ecfe6b66411488000aba83e4546fde25","impliedFormat":1},{"version":"77fbe5eecb6fac4b6242bbf6eebfc43e98ce5ccba8fa44e0ef6a95c945ff4d98","impliedFormat":1},{"version":"4f9d8ca0c417b67b69eeb54c7ca1bedd7b56034bb9bfd27c5d4f3bc4692daca7","impliedFormat":1},{"version":"814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466","impliedFormat":1},{"version":"a3fc63c0d7b031693f665f5494412ba4b551fe644ededccc0ab5922401079c95","impliedFormat":1},{"version":"f27524f4bef4b6519c604bdb23bf4465bddcccbf3f003abb901acbd0d7404d99","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"6b039f55681caaf111d5eb84d292b9bee9e0131d0db1ad0871eef0964f533c73","affectsGlobalScope":true,"impliedFormat":1},{"version":"18fd40412d102c5564136f29735e5d1c3b455b8a37f920da79561f1fde068208","impliedFormat":1},{"version":"c8d3e5a18ba35629954e48c4cc8f11dc88224650067a172685c736b27a34a4dc","impliedFormat":1},{"version":"f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14","affectsGlobalScope":true,"impliedFormat":1},{"version":"0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592","impliedFormat":1},{"version":"2b55d426ff2b9087485e52ac4bc7cfafe1dc420fc76dad926cd46526567c501a","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"5b7aa3c4c1a5d81b411e8cb302b45507fea9358d3569196b27eb1a27ae3a90ef","affectsGlobalScope":true,"impliedFormat":1},{"version":"5987a903da92c7462e0b35704ce7da94d7fdc4b89a984871c0e2b87a8aae9e69","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea08a0345023ade2b47fbff5a76d0d0ed8bff10bc9d22b83f40858a8e941501c","impliedFormat":1},{"version":"47613031a5a31510831304405af561b0ffaedb734437c595256bb61a90f9311b","impliedFormat":1},{"version":"ae062ce7d9510060c5d7e7952ae379224fb3f8f2dd74e88959878af2057c143b","impliedFormat":1},{"version":"8a1a0d0a4a06a8d278947fcb66bf684f117bf147f89b06e50662d79a53be3e9f","affectsGlobalScope":true,"impliedFormat":1},{"version":"358765d5ea8afd285d4fd1532e78b88273f18cb3f87403a9b16fef61ac9fdcfe","impliedFormat":1},{"version":"9f55299850d4f0921e79b6bf344b47c420ce0f507b9dcf593e532b09ea7eeea1","impliedFormat":1},{"version":"3b89216a7e38a454985ad17bb2ff85792837dc812f2a89fa5f60ad0a2e216fa7","impliedFormat":99},{"version":"10073cdcf56982064c5337787cc59b79586131e1b28c106ede5bff362f912b70","impliedFormat":99},{"version":"82179358c2d9d7347f1602dc9300039a2250e483137b38ebf31d4d2e5519c181","impliedFormat":99},{"version":"c73fdf42528325dd17940937ed787b15ae3445c6a2dae1a2b74bc4d87d337ca2","impliedFormat":99},{"version":"08b97f6a8e66afc82e8e536b786e620e74cb5496292d882f971bb72579393935","impliedFormat":99},{"version":"8f94cf4d829f82d6469b2300e7dc05e8c630395f6aef68e75f7a76f1d2bfe632","impliedFormat":99},{"version":"148debd12783ded0a60d115daeacd8136f77757ae89a05c4e18de6dd77646fd2","impliedFormat":99},{"version":"0088b02dca63c47b273a140d0a3944bdc6dc2eb765fff0ca98e3c3a2786b3a5a","impliedFormat":99},{"version":"a651d06b780fa354231f19b040cbcde484bede3218885752b4f9e9a8f72d3b5f","impliedFormat":99},{"version":"06e26f75bed4c8389a8a63f0e6d6a9068038873dc95d8d1338e8c370a0ae8bc3","impliedFormat":99},{"version":"a2155e2675fd1af52b0b70779371c28611cdd1076b29d0f68bf93b983e5ddce0","impliedFormat":99},{"version":"c049bdb01dd6d0697b764db592381693c8cfec4cba496648b13f261202386976","impliedFormat":99},{"version":"515bf30a1d5356c4a1b58c5e42f3bf65078ab41e955e233bd2c0093625059b9c","impliedFormat":99},{"version":"d0bdb3239791558ea54e1fa0818f3d5bb72078b9102d478d19b9134ec7f1026c","impliedFormat":99},{"version":"7d3e062a778b8f5ea4f0cac7e925e31f88e6739812ebc5f827474324a4048f14","impliedFormat":99},{"version":"a6d25f46d14f51741fd4aa6f63766871813b13dbecfe2329585d811480b93a45","impliedFormat":99},{"version":"2bff81382850153cb016673d0130a13247fb0335524f3f6d38370801ddb9c394","impliedFormat":99},{"version":"83c1d9200c038c329064a4e1d78ba3e89ce6b0affc557cccbad5ea9898183dec","impliedFormat":99},{"version":"cde43bd8c0d59505f80ef51b62fa759a10f9d7526162348448afb9d5601a0642","impliedFormat":99},{"version":"4e003c868b0d8f8ad200b96cbc653e18e513fa23e1c19c4fe3cc25d4394efc47","impliedFormat":99},{"version":"091546ac9077cddcd7b9479cc2e0c677238bf13e39eab4b13e75046c3328df93","impliedFormat":99},{"version":"161c8e0690c46021506e32fda85956d785b70f309ae97011fd27374c065cac9b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0864480ea083087d705f9405bd6bf59b795e8474c3447f0d6413b2bce535a09","impliedFormat":99},{"version":"e67cbea16f1994af89efd700542dbf3828a46a52b29e4d67e801bd7869dc103c","impliedFormat":99},{"version":"f582b0fcbf1eea9b318ab92fb89ea9ab2ebb84f9b60af89328a91155e1afce72","impliedFormat":99},{"version":"402e5c534fb2b85fa771170595db3ac0dd532112c8fa44fc23f233bc6967488b","impliedFormat":1},{"version":"7965dc3c7648e2a7a586d11781cabb43d4859920716bc2fdc523da912b06570d","impliedFormat":1},{"version":"90c2bd9a3e72fe08b8fa5982e78cb8dc855a1157b26e11e37a793283c52bf64b","impliedFormat":1},{"version":"a8122fe390a2a987079e06c573b1471296114677923c1c094c24a53ddd7344a2","impliedFormat":1},{"version":"70c2cb19c0c42061a39351156653aa0cf5ba1ecdc8a07424dd38e3a1f1e3c7f4","impliedFormat":1},{"version":"a8fb10fd8c7bc7d9b8f546d4d186d1027f8a9002a639bec689b5000dab68e35c","impliedFormat":1},{"version":"c9b467ea59b86bd27714a879b9ad43c16f186012a26d0f7110b1322025ceaa83","impliedFormat":1},{"version":"57ea19c2e6ba094d8087c721bac30ff1c681081dbd8b167ac068590ef633e7a5","impliedFormat":1},{"version":"cba81ec9ae7bc31a4dc56f33c054131e037649d6b9a2cfa245124c67e23e4721","impliedFormat":1},{"version":"ad193f61ba708e01218496f093c23626aa3808c296844a99189be7108a9c8343","impliedFormat":1},{"version":"a0544b3c8b70b2f319a99ea380b55ab5394ede9188cdee452a5d0ce264f258b2","impliedFormat":1},{"version":"8c654c17c334c7c168c1c36e5336896dc2c892de940886c1639bebd9fc7b9be4","impliedFormat":1},{"version":"6a4da742485d5c2eb6bcb322ae96993999ffecbd5660b0219a5f5678d8225bb0","impliedFormat":1},{"version":"c65ca21d7002bdb431f9ab3c7a6e765a489aa5196e7e0ef00aed55b1294df599","impliedFormat":1},{"version":"c8fc655c2c4bafc155ceee01c84ab3d6c03192ced5d3f2de82e20f3d1bd7f9fa","impliedFormat":1},{"version":"be5a7ff3b47f7e553565e9483bdcadb0ca2040ac9e5ec7b81c7e115a81059882","impliedFormat":1},{"version":"1a93f36ecdb60a95e3a3621b561763e2952da81962fae217ab5441ac1d77ffc5","impliedFormat":1},{"version":"2a771d907aebf9391ac1f50e4ad37952943515eeea0dcc7e78aa08f508294668","impliedFormat":1},{"version":"0146fd6262c3fd3da51cb0254bb6b9a4e42931eb2f56329edd4c199cb9aaf804","impliedFormat":1},{"version":"183f480885db5caa5a8acb833c2be04f98056bdcc5fb29e969ff86e07efe57ab","impliedFormat":99},{"version":"3fd8a5aefd8c3feb3936ca66f5aa89dff7bf6e6537b4158dbd0f6e0d65ed3b9e","impliedFormat":1},{"version":"a18642ddf216f162052a16cba0944892c4c4c977d3306a87cb673d46abbb0cbf","impliedFormat":1},{"version":"41c41c6e90133bb2a14f7561f29944771886e5535945b2b372e2f6ed6987746e","impliedFormat":1},{"version":"4ec16d7a4e366c06a4573d299e15fe6207fc080f41beac5da06f4af33ea9761e","impliedFormat":99},{"version":"960bd764c62ac43edc24eaa2af958a4b4f1fa5d27df5237e176d0143b36a39c6","affectsGlobalScope":true,"impliedFormat":99},{"version":"a99bfaebce194209dbf7290663af01aaff57cf6b4089810eea5c8ec72a2c9cc2","impliedFormat":99},{"version":"59f8dc89b9e724a6a667f52cdf4b90b6816ae6c9842ce176d38fcc973669009e","affectsGlobalScope":true,"impliedFormat":99},{"version":"68ead79e0f4b5576e2f17c5422039ecf5d56a20dc515ef593750411fbbe475bf","impliedFormat":99},{"version":"5b2e315a6234902ad420648fdbd163626b64a353eb83f3f2c5f8cd2a9ad02d5a","signature":"ba447eb13fd34dab4b27b379f449d78cf53f07f7d6ed2ee9b36bca93f94879cb","impliedFormat":99},{"version":"7a943d93d26ff9ed538ba3b67f82ec6d63a176b61858ecdf37be072507653b99","signature":"914eb37085ec99891bd1446f9f7a3ff9f120d0c61bd2be5c8e73cb9dfb0fa66b","impliedFormat":99},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","impliedFormat":1},{"version":"50576630251ba5e6b8e12d7842059aeccb4099447d56f267ec964fe2e5477ad5","signature":"3edf9e8fad2ff22a3dd33ad3d65348199eeaba3062cfdfd8b4a02ffe81a98fab","impliedFormat":99}],"root":[60,61,219,220,222],"options":{"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"exactOptionalPropertyTypes":true,"module":199,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noPropertyAccessFromIndexSignature":true,"noUncheckedIndexedAccess":true,"outDir":"./dist","rootDir":"./src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":9,"verbatimModuleSyntax":true},"referencedMap":[[221,1],[170,1],[172,1],[173,1],[175,2],[174,1],[176,3],[112,4],[113,4],[114,5],[67,6],[115,7],[116,8],[117,9],[62,1],[65,10],[63,1],[64,1],[118,11],[119,12],[120,13],[121,14],[122,15],[123,16],[124,16],[125,17],[126,18],[127,19],[128,20],[68,1],[66,1],[129,21],[130,22],[131,23],[165,24],[132,25],[133,1],[134,26],[135,27],[136,28],[137,29],[138,30],[139,31],[140,32],[141,33],[142,34],[143,34],[144,35],[145,1],[146,36],[147,37],[149,38],[148,39],[150,40],[151,41],[152,42],[153,43],[154,44],[155,45],[156,46],[157,47],[158,48],[159,49],[160,50],[161,51],[162,52],[69,1],[70,1],[71,1],[109,53],[110,1],[111,1],[163,54],[164,55],[187,1],[211,1],[213,56],[212,1],[207,57],[205,58],[206,59],[194,60],[195,58],[202,61],[193,62],[198,63],[208,1],[199,64],[204,65],[210,66],[209,67],[192,68],[200,69],[201,70],[196,71],[203,57],[197,72],[216,73],[178,74],[179,75],[182,76],[171,77],[181,73],[177,78],[169,1],[183,79],[184,80],[191,1],[58,1],[59,1],[10,1],[11,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[22,1],[23,1],[4,1],[24,1],[28,1],[25,1],[26,1],[27,1],[29,1],[30,1],[31,1],[5,1],[32,1],[33,1],[34,1],[35,1],[6,1],[39,1],[36,1],[37,1],[38,1],[40,1],[7,1],[41,1],[46,1],[47,1],[42,1],[43,1],[44,1],[45,1],[8,1],[51,1],[48,1],[49,1],[50,1],[52,1],[9,1],[53,1],[54,1],[55,1],[57,1],[56,1],[1,1],[87,81],[97,82],[86,81],[107,83],[78,84],[77,85],[106,86],[100,87],[105,88],[80,89],[94,90],[79,91],[103,92],[75,93],[74,86],[104,94],[76,95],[81,96],[82,1],[85,96],[72,1],[108,97],[98,98],[89,99],[90,100],[92,101],[88,102],[91,103],[101,86],[83,104],[84,105],[93,106],[73,107],[96,98],[95,96],[99,1],[102,108],[167,109],[218,110],[186,111],[168,109],[166,1],[185,112],[217,1],[215,1],[188,113],[214,114],[180,115],[190,1],[189,116],[60,1],[61,1],[222,117],[219,1],[220,1]],"latestChangedDtsFile":"./dist/index.d.ts","version":"5.9.3"}
1
+ {"fileNames":["../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","./src/compiler.d.ts","./src/devtools.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/compatibility/disposable.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/compatibility/indexable.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/compatibility/iterators.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/compatibility/index.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/globals.typedarray.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/buffer.buffer.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/globals.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/web-globals/abortcontroller.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/web-globals/domexception.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/web-globals/events.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/header.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/readable.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/file.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/fetch.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/formdata.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/connector.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/client.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/errors.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/dispatcher.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-dispatcher.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-origin.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool-stats.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/handlers.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/balanced-pool.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-interceptor.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-client.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-pool.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-errors.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/proxy-agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-handler.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/api.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/interceptors.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/util.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cookies.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/patch.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/websocket.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/eventsource.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/filereader.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/diagnostics-channel.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/content-type.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cache.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/index.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/web-globals/fetch.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/web-globals/navigator.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/web-globals/storage.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/assert.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/assert/strict.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/async_hooks.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/buffer.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/child_process.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/cluster.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/console.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/constants.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/crypto.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/dgram.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/dns.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/dns/promises.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/domain.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/events.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/fs.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/fs/promises.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/http.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/http2.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/https.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/inspector.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/inspector.generated.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/module.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/net.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/os.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/path.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/perf_hooks.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/process.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/punycode.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/querystring.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/readline.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/readline/promises.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/repl.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/sea.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/sqlite.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/stream.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/stream/promises.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/stream/consumers.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/stream/web.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/string_decoder.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/test.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/timers.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/timers/promises.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/tls.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/trace_events.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/tty.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/url.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/util.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/v8.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/vm.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/wasi.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/worker_threads.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/zlib.d.ts","../../node_modules/.pnpm/@types+node@22.19.15/node_modules/@types/node/index.d.ts","../../node_modules/.pnpm/vite@8.0.0_@types+node@22.19.15_esbuild@0.25.12_jiti@2.6.1/node_modules/vite/types/hmrPayload.d.ts","../../node_modules/.pnpm/vite@8.0.0_@types+node@22.19.15_esbuild@0.25.12_jiti@2.6.1/node_modules/vite/dist/node/chunks/moduleRunnerTransport.d.ts","../../node_modules/.pnpm/vite@8.0.0_@types+node@22.19.15_esbuild@0.25.12_jiti@2.6.1/node_modules/vite/types/customEvent.d.ts","../../node_modules/.pnpm/rolldown@1.0.0-rc.9/node_modules/rolldown/dist/shared/logging-C6h4g8dA.d.mts","../../node_modules/.pnpm/@oxc-project+types@0.115.0/node_modules/@oxc-project/types/types.d.ts","../../node_modules/.pnpm/rolldown@1.0.0-rc.9/node_modules/rolldown/dist/shared/binding-BohGL_65.d.mts","../../node_modules/.pnpm/@rolldown+pluginutils@1.0.0-rc.9/node_modules/@rolldown/pluginutils/dist/filter/composable-filters.d.ts","../../node_modules/.pnpm/@rolldown+pluginutils@1.0.0-rc.9/node_modules/@rolldown/pluginutils/dist/filter/filter-vite-plugins.d.ts","../../node_modules/.pnpm/@rolldown+pluginutils@1.0.0-rc.9/node_modules/@rolldown/pluginutils/dist/filter/simple-filters.d.ts","../../node_modules/.pnpm/@rolldown+pluginutils@1.0.0-rc.9/node_modules/@rolldown/pluginutils/dist/filter/index.d.ts","../../node_modules/.pnpm/@rolldown+pluginutils@1.0.0-rc.9/node_modules/@rolldown/pluginutils/dist/index.d.ts","../../node_modules/.pnpm/rolldown@1.0.0-rc.9/node_modules/rolldown/dist/shared/define-config-cG45vHwf.d.mts","../../node_modules/.pnpm/rolldown@1.0.0-rc.9/node_modules/rolldown/dist/index.d.mts","../../node_modules/.pnpm/rolldown@1.0.0-rc.9/node_modules/rolldown/dist/parse-ast-index.d.mts","../../node_modules/.pnpm/vite@8.0.0_@types+node@22.19.15_esbuild@0.25.12_jiti@2.6.1/node_modules/vite/types/internal/rollupTypeCompat.d.ts","../../node_modules/.pnpm/rolldown@1.0.0-rc.9/node_modules/rolldown/dist/shared/constructors-DNuo4d0H.d.mts","../../node_modules/.pnpm/rolldown@1.0.0-rc.9/node_modules/rolldown/dist/plugins-index.d.mts","../../node_modules/.pnpm/rolldown@1.0.0-rc.9/node_modules/rolldown/dist/shared/transform-BoJxrM-e.d.mts","../../node_modules/.pnpm/rolldown@1.0.0-rc.9/node_modules/rolldown/dist/utils-index.d.mts","../../node_modules/.pnpm/vite@8.0.0_@types+node@22.19.15_esbuild@0.25.12_jiti@2.6.1/node_modules/vite/types/hot.d.ts","../../node_modules/.pnpm/vite@8.0.0_@types+node@22.19.15_esbuild@0.25.12_jiti@2.6.1/node_modules/vite/dist/node/module-runner.d.ts","../../node_modules/.pnpm/esbuild@0.25.12/node_modules/esbuild/lib/main.d.ts","../../node_modules/.pnpm/vite@8.0.0_@types+node@22.19.15_esbuild@0.25.12_jiti@2.6.1/node_modules/vite/types/internal/esbuildOptions.d.ts","../../node_modules/.pnpm/vite@8.0.0_@types+node@22.19.15_esbuild@0.25.12_jiti@2.6.1/node_modules/vite/types/metadata.d.ts","../../node_modules/.pnpm/vite@8.0.0_@types+node@22.19.15_esbuild@0.25.12_jiti@2.6.1/node_modules/vite/types/internal/terserOptions.d.ts","../../node_modules/.pnpm/source-map-js@1.2.1/node_modules/source-map-js/source-map.d.ts","../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/previous-map.d.ts","../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/input.d.ts","../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/css-syntax-error.d.ts","../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/declaration.d.ts","../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/root.d.ts","../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/warning.d.ts","../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/lazy-result.d.ts","../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/no-work-result.d.ts","../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/processor.d.ts","../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/result.d.ts","../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/document.d.ts","../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/rule.d.ts","../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/node.d.ts","../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/comment.d.ts","../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/container.d.ts","../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/at-rule.d.ts","../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/list.d.ts","../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/postcss.d.ts","../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/postcss.d.mts","../../node_modules/.pnpm/lightningcss@1.32.0/node_modules/lightningcss/node/ast.d.ts","../../node_modules/.pnpm/lightningcss@1.32.0/node_modules/lightningcss/node/targets.d.ts","../../node_modules/.pnpm/lightningcss@1.32.0/node_modules/lightningcss/node/index.d.ts","../../node_modules/.pnpm/vite@8.0.0_@types+node@22.19.15_esbuild@0.25.12_jiti@2.6.1/node_modules/vite/types/internal/lightningcssOptions.d.ts","../../node_modules/.pnpm/vite@8.0.0_@types+node@22.19.15_esbuild@0.25.12_jiti@2.6.1/node_modules/vite/types/internal/cssPreprocessorOptions.d.ts","../../node_modules/.pnpm/rolldown@1.0.0-rc.9/node_modules/rolldown/dist/filter-index.d.mts","../../node_modules/.pnpm/vite@8.0.0_@types+node@22.19.15_esbuild@0.25.12_jiti@2.6.1/node_modules/vite/types/importGlob.d.ts","../../node_modules/.pnpm/vite@8.0.0_@types+node@22.19.15_esbuild@0.25.12_jiti@2.6.1/node_modules/vite/dist/node/index.d.ts","./src/napi.ts","./src/overlay.ts","./src/live-stub.ts","../../crates/alab-napi/index.d.ts","./src/index.ts"],"fileIdsList":[[67,115,132,133],[67,115,132,133,172,173,174],[67,115,132,133,175],[67,112,113,115,132,133],[67,114,115,132,133],[115,132,133],[67,115,120,132,133,150],[67,115,116,121,126,132,133,135,147,158],[67,115,116,117,126,132,133,135],[62,63,64,67,115,132,133],[67,115,118,132,133,159],[67,115,119,120,127,132,133,136],[67,115,120,132,133,147,155],[67,115,121,123,126,132,133,135],[67,114,115,122,132,133],[67,115,123,124,132,133],[67,115,125,126,132,133],[67,114,115,126,132,133],[67,115,126,127,128,132,133,147,158],[67,115,126,127,128,132,133,142,147,150],[67,108,115,123,126,129,132,133,135,147,158],[67,115,126,127,129,130,132,133,135,147,155,158],[67,115,129,131,132,133,147,155,158],[65,66,67,68,69,70,71,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164],[67,115,126,132,133],[67,115,132,133,134,158],[67,115,123,126,132,133,135,147],[67,115,132,133,136],[67,115,132,133,137],[67,114,115,132,133,138],[67,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164],[67,115,132,133,140],[67,115,132,133,141],[67,115,126,132,133,142,143],[67,115,132,133,142,144,159,161],[67,115,127,132,133],[67,115,126,132,133,147,148,150],[67,115,132,133,149,150],[67,115,132,133,147,148],[67,115,132,133,150],[67,115,132,133,151],[67,112,115,132,133,147,152,158],[67,115,126,132,133,153,154],[67,115,132,133,153,154],[67,115,120,132,133,135,147,155],[67,115,132,133,156],[67,115,132,133,135,157],[67,115,129,132,133,141,158],[67,115,120,132,133,159],[67,115,132,133,147,160],[67,115,132,133,134,161],[67,115,132,133,162],[67,108,115,132,133],[67,108,115,126,128,132,133,138,147,150,158,160,161,163],[67,115,132,133,147,164],[67,115,132,133,211,212],[67,115,132,133,206],[67,115,132,133,204,206],[67,115,132,133,195,203,204,205,207,209],[67,115,132,133,193],[67,115,132,133,196,201,206,209],[67,115,132,133,192,209],[67,115,132,133,196,197,200,201,202,209],[67,115,132,133,196,197,198,200,201,209],[67,115,132,133,193,194,195,196,197,201,202,203,205,206,207,209],[67,115,132,133,209],[67,115,132,133,191,193,194,195,196,197,198,200,201,202,203,204,205,206,207,208],[67,115,132,133,191,209],[67,115,132,133,196,198,199,201,202,209],[67,115,132,133,200,209],[67,115,132,133,201,202,206,209],[67,115,132,133,194,204],[67,115,132,133,171,177],[67,115,132,133,169,171,177],[67,115,132,133,170,171],[67,115,132,133,171,177,181],[67,115,132,133,170],[67,115,132,133,169,170,171,176],[67,115,132,133,169,171],[67,115,132,133,170,171,183],[67,80,84,115,132,133,158],[67,80,115,132,133,147,158],[67,75,115,132,133],[67,77,80,115,132,133,155,158],[67,115,132,133,135,155],[67,115,132,133,165],[67,75,115,132,133,165],[67,77,80,115,132,133,135,158],[67,72,73,76,79,115,126,132,133,147,158],[67,80,87,115,132,133],[67,72,78,115,132,133],[67,80,101,102,115,132,133],[67,76,80,115,132,133,150,158,165],[67,101,115,132,133,165],[67,74,75,115,132,133,165],[67,80,115,132,133],[67,74,75,76,77,78,79,80,81,82,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,102,103,104,105,106,107,115,132,133],[67,80,95,115,132,133],[67,80,87,88,115,132,133],[67,78,80,88,89,115,132,133],[67,79,115,132,133],[67,72,75,80,115,132,133],[67,80,84,88,89,115,132,133],[67,84,115,132,133],[67,78,80,83,115,132,133,158],[67,72,77,80,87,115,132,133],[67,115,132,133,147],[67,75,80,101,115,132,133,163,165],[67,115,132,133,166],[67,115,126,127,129,130,131,132,133,135,147,155,158,164,165,166,167,168,178,179,180,182,184,186,188,189,190,210,214,215,216,217,218],[67,115,132,133,166,167,168,185],[67,115,132,133,168],[67,115,132,133,187],[67,115,132,133,213],[67,115,132,133,178,189,218],[67,115,132,133,178,218],[60,61,67,115,127,132,133,134,137,158,218,219,220,221]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"92ed772df70e9236c59f2f6d5c55c068a1bdbb1a1d8dd3fb4cfe16d7d5021d94","impliedFormat":99},{"version":"beac30bfffa2b00367089219736a9b9ef8847eba14e06bc56827e273c384532a","signature":"ff94f0f41479e8c9f2dc0403a7950127d4ff4a396946a144d70fed225b7dceae","impliedFormat":99},{"version":"6c7176368037af28cb72f2392010fa1cef295d6d6744bca8cfb54985f3a18c3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"437e20f2ba32abaeb7985e0afe0002de1917bc74e949ba585e49feba65da6ca1","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"98cffbf06d6bab333473c70a893770dbe990783904002c4f1a960447b4b53dca","affectsGlobalScope":true,"impliedFormat":1},{"version":"3af97acf03cc97de58a3a4bc91f8f616408099bc4233f6d0852e72a8ffb91ac9","affectsGlobalScope":true,"impliedFormat":1},{"version":"808069bba06b6768b62fd22429b53362e7af342da4a236ed2d2e1c89fcca3b4a","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"b52476feb4a0cbcb25e5931b930fc73cb6643fb1a5060bf8a3dda0eeae5b4b68","affectsGlobalScope":true,"impliedFormat":1},{"version":"f9501cc13ce624c72b61f12b3963e84fad210fbdf0ffbc4590e08460a3f04eba","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0fa06ada475b910e2106c98c68b10483dc8811d0c14a8a8dd36efb2672485b29","impliedFormat":1},{"version":"33e5e9aba62c3193d10d1d33ae1fa75c46a1171cf76fef750777377d53b0303f","impliedFormat":1},{"version":"2b06b93fd01bcd49d1a6bd1f9b65ddcae6480b9a86e9061634d6f8e354c1468f","impliedFormat":1},{"version":"6a0cd27e5dc2cfbe039e731cf879d12b0e2dded06d1b1dedad07f7712de0d7f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"13f5c844119c43e51ce777c509267f14d6aaf31eafb2c2b002ca35584cd13b29","impliedFormat":1},{"version":"e60477649d6ad21542bd2dc7e3d9ff6853d0797ba9f689ba2f6653818999c264","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"4c829ab315f57c5442c6667b53769975acbf92003a66aef19bce151987675bd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"b2ade7657e2db96d18315694789eff2ddd3d8aea7215b181f8a0b303277cc579","impliedFormat":1},{"version":"9855e02d837744303391e5623a531734443a5f8e6e8755e018c41d63ad797db2","impliedFormat":1},{"version":"4d631b81fa2f07a0e63a9a143d6a82c25c5f051298651a9b69176ba28930756d","impliedFormat":1},{"version":"836a356aae992ff3c28a0212e3eabcb76dd4b0cc06bcb9607aeef560661b860d","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"41670ee38943d9cbb4924e436f56fc19ee94232bc96108562de1a734af20dc2c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c906fb15bd2aabc9ed1e3f44eb6a8661199d6c320b3aa196b826121552cb3695","impliedFormat":1},{"version":"22295e8103f1d6d8ea4b5d6211e43421fe4564e34d0dd8e09e520e452d89e659","impliedFormat":1},{"version":"58647d85d0f722a1ce9de50955df60a7489f0593bf1a7015521efe901c06d770","impliedFormat":1},{"version":"6b4e081d55ac24fc8a4631d5dd77fe249fa25900abd7d046abb87d90e3b45645","impliedFormat":1},{"version":"a10f0e1854f3316d7ee437b79649e5a6ae3ae14ffe6322b02d4987071a95362e","impliedFormat":1},{"version":"e208f73ef6a980104304b0d2ca5f6bf1b85de6009d2c7e404028b875020fa8f2","impliedFormat":1},{"version":"d163b6bc2372b4f07260747cbc6c0a6405ab3fbcea3852305e98ac43ca59f5bc","impliedFormat":1},{"version":"e6fa9ad47c5f71ff733744a029d1dc472c618de53804eae08ffc243b936f87ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"83e63d6ccf8ec004a3bb6d58b9bb0104f60e002754b1e968024b320730cc5311","impliedFormat":1},{"version":"24826ed94a78d5c64bd857570fdbd96229ad41b5cb654c08d75a9845e3ab7dde","impliedFormat":1},{"version":"8b479a130ccb62e98f11f136d3ac80f2984fdc07616516d29881f3061f2dd472","impliedFormat":1},{"version":"928af3d90454bf656a52a48679f199f64c1435247d6189d1caf4c68f2eaf921f","affectsGlobalScope":true,"impliedFormat":1},{"version":"bceb58df66ab8fb00170df20cd813978c5ab84be1d285710c4eb005d8e9d8efb","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"933921f0bb0ec12ef45d1062a1fc0f27635318f4d294e4d99de9a5493e618ca2","impliedFormat":1},{"version":"71a0f3ad612c123b57239a7749770017ecfe6b66411488000aba83e4546fde25","impliedFormat":1},{"version":"77fbe5eecb6fac4b6242bbf6eebfc43e98ce5ccba8fa44e0ef6a95c945ff4d98","impliedFormat":1},{"version":"4f9d8ca0c417b67b69eeb54c7ca1bedd7b56034bb9bfd27c5d4f3bc4692daca7","impliedFormat":1},{"version":"814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466","impliedFormat":1},{"version":"a3fc63c0d7b031693f665f5494412ba4b551fe644ededccc0ab5922401079c95","impliedFormat":1},{"version":"f27524f4bef4b6519c604bdb23bf4465bddcccbf3f003abb901acbd0d7404d99","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"6b039f55681caaf111d5eb84d292b9bee9e0131d0db1ad0871eef0964f533c73","affectsGlobalScope":true,"impliedFormat":1},{"version":"18fd40412d102c5564136f29735e5d1c3b455b8a37f920da79561f1fde068208","impliedFormat":1},{"version":"c8d3e5a18ba35629954e48c4cc8f11dc88224650067a172685c736b27a34a4dc","impliedFormat":1},{"version":"f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14","affectsGlobalScope":true,"impliedFormat":1},{"version":"0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592","impliedFormat":1},{"version":"2b55d426ff2b9087485e52ac4bc7cfafe1dc420fc76dad926cd46526567c501a","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"5b7aa3c4c1a5d81b411e8cb302b45507fea9358d3569196b27eb1a27ae3a90ef","affectsGlobalScope":true,"impliedFormat":1},{"version":"5987a903da92c7462e0b35704ce7da94d7fdc4b89a984871c0e2b87a8aae9e69","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea08a0345023ade2b47fbff5a76d0d0ed8bff10bc9d22b83f40858a8e941501c","impliedFormat":1},{"version":"47613031a5a31510831304405af561b0ffaedb734437c595256bb61a90f9311b","impliedFormat":1},{"version":"ae062ce7d9510060c5d7e7952ae379224fb3f8f2dd74e88959878af2057c143b","impliedFormat":1},{"version":"8a1a0d0a4a06a8d278947fcb66bf684f117bf147f89b06e50662d79a53be3e9f","affectsGlobalScope":true,"impliedFormat":1},{"version":"358765d5ea8afd285d4fd1532e78b88273f18cb3f87403a9b16fef61ac9fdcfe","impliedFormat":1},{"version":"9f55299850d4f0921e79b6bf344b47c420ce0f507b9dcf593e532b09ea7eeea1","impliedFormat":1},{"version":"3b89216a7e38a454985ad17bb2ff85792837dc812f2a89fa5f60ad0a2e216fa7","impliedFormat":99},{"version":"10073cdcf56982064c5337787cc59b79586131e1b28c106ede5bff362f912b70","impliedFormat":99},{"version":"82179358c2d9d7347f1602dc9300039a2250e483137b38ebf31d4d2e5519c181","impliedFormat":99},{"version":"c73fdf42528325dd17940937ed787b15ae3445c6a2dae1a2b74bc4d87d337ca2","impliedFormat":99},{"version":"08b97f6a8e66afc82e8e536b786e620e74cb5496292d882f971bb72579393935","impliedFormat":99},{"version":"8f94cf4d829f82d6469b2300e7dc05e8c630395f6aef68e75f7a76f1d2bfe632","impliedFormat":99},{"version":"148debd12783ded0a60d115daeacd8136f77757ae89a05c4e18de6dd77646fd2","impliedFormat":99},{"version":"0088b02dca63c47b273a140d0a3944bdc6dc2eb765fff0ca98e3c3a2786b3a5a","impliedFormat":99},{"version":"a651d06b780fa354231f19b040cbcde484bede3218885752b4f9e9a8f72d3b5f","impliedFormat":99},{"version":"06e26f75bed4c8389a8a63f0e6d6a9068038873dc95d8d1338e8c370a0ae8bc3","impliedFormat":99},{"version":"a2155e2675fd1af52b0b70779371c28611cdd1076b29d0f68bf93b983e5ddce0","impliedFormat":99},{"version":"c049bdb01dd6d0697b764db592381693c8cfec4cba496648b13f261202386976","impliedFormat":99},{"version":"515bf30a1d5356c4a1b58c5e42f3bf65078ab41e955e233bd2c0093625059b9c","impliedFormat":99},{"version":"d0bdb3239791558ea54e1fa0818f3d5bb72078b9102d478d19b9134ec7f1026c","impliedFormat":99},{"version":"7d3e062a778b8f5ea4f0cac7e925e31f88e6739812ebc5f827474324a4048f14","impliedFormat":99},{"version":"a6d25f46d14f51741fd4aa6f63766871813b13dbecfe2329585d811480b93a45","impliedFormat":99},{"version":"2bff81382850153cb016673d0130a13247fb0335524f3f6d38370801ddb9c394","impliedFormat":99},{"version":"83c1d9200c038c329064a4e1d78ba3e89ce6b0affc557cccbad5ea9898183dec","impliedFormat":99},{"version":"cde43bd8c0d59505f80ef51b62fa759a10f9d7526162348448afb9d5601a0642","impliedFormat":99},{"version":"4e003c868b0d8f8ad200b96cbc653e18e513fa23e1c19c4fe3cc25d4394efc47","impliedFormat":99},{"version":"091546ac9077cddcd7b9479cc2e0c677238bf13e39eab4b13e75046c3328df93","impliedFormat":99},{"version":"161c8e0690c46021506e32fda85956d785b70f309ae97011fd27374c065cac9b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0864480ea083087d705f9405bd6bf59b795e8474c3447f0d6413b2bce535a09","impliedFormat":99},{"version":"e67cbea16f1994af89efd700542dbf3828a46a52b29e4d67e801bd7869dc103c","impliedFormat":99},{"version":"f582b0fcbf1eea9b318ab92fb89ea9ab2ebb84f9b60af89328a91155e1afce72","impliedFormat":99},{"version":"402e5c534fb2b85fa771170595db3ac0dd532112c8fa44fc23f233bc6967488b","impliedFormat":1},{"version":"7965dc3c7648e2a7a586d11781cabb43d4859920716bc2fdc523da912b06570d","impliedFormat":1},{"version":"90c2bd9a3e72fe08b8fa5982e78cb8dc855a1157b26e11e37a793283c52bf64b","impliedFormat":1},{"version":"a8122fe390a2a987079e06c573b1471296114677923c1c094c24a53ddd7344a2","impliedFormat":1},{"version":"70c2cb19c0c42061a39351156653aa0cf5ba1ecdc8a07424dd38e3a1f1e3c7f4","impliedFormat":1},{"version":"a8fb10fd8c7bc7d9b8f546d4d186d1027f8a9002a639bec689b5000dab68e35c","impliedFormat":1},{"version":"c9b467ea59b86bd27714a879b9ad43c16f186012a26d0f7110b1322025ceaa83","impliedFormat":1},{"version":"57ea19c2e6ba094d8087c721bac30ff1c681081dbd8b167ac068590ef633e7a5","impliedFormat":1},{"version":"cba81ec9ae7bc31a4dc56f33c054131e037649d6b9a2cfa245124c67e23e4721","impliedFormat":1},{"version":"ad193f61ba708e01218496f093c23626aa3808c296844a99189be7108a9c8343","impliedFormat":1},{"version":"a0544b3c8b70b2f319a99ea380b55ab5394ede9188cdee452a5d0ce264f258b2","impliedFormat":1},{"version":"8c654c17c334c7c168c1c36e5336896dc2c892de940886c1639bebd9fc7b9be4","impliedFormat":1},{"version":"6a4da742485d5c2eb6bcb322ae96993999ffecbd5660b0219a5f5678d8225bb0","impliedFormat":1},{"version":"c65ca21d7002bdb431f9ab3c7a6e765a489aa5196e7e0ef00aed55b1294df599","impliedFormat":1},{"version":"c8fc655c2c4bafc155ceee01c84ab3d6c03192ced5d3f2de82e20f3d1bd7f9fa","impliedFormat":1},{"version":"be5a7ff3b47f7e553565e9483bdcadb0ca2040ac9e5ec7b81c7e115a81059882","impliedFormat":1},{"version":"1a93f36ecdb60a95e3a3621b561763e2952da81962fae217ab5441ac1d77ffc5","impliedFormat":1},{"version":"2a771d907aebf9391ac1f50e4ad37952943515eeea0dcc7e78aa08f508294668","impliedFormat":1},{"version":"0146fd6262c3fd3da51cb0254bb6b9a4e42931eb2f56329edd4c199cb9aaf804","impliedFormat":1},{"version":"183f480885db5caa5a8acb833c2be04f98056bdcc5fb29e969ff86e07efe57ab","impliedFormat":99},{"version":"3fd8a5aefd8c3feb3936ca66f5aa89dff7bf6e6537b4158dbd0f6e0d65ed3b9e","impliedFormat":1},{"version":"a18642ddf216f162052a16cba0944892c4c4c977d3306a87cb673d46abbb0cbf","impliedFormat":1},{"version":"41c41c6e90133bb2a14f7561f29944771886e5535945b2b372e2f6ed6987746e","impliedFormat":1},{"version":"4ec16d7a4e366c06a4573d299e15fe6207fc080f41beac5da06f4af33ea9761e","impliedFormat":99},{"version":"960bd764c62ac43edc24eaa2af958a4b4f1fa5d27df5237e176d0143b36a39c6","affectsGlobalScope":true,"impliedFormat":99},{"version":"a99bfaebce194209dbf7290663af01aaff57cf6b4089810eea5c8ec72a2c9cc2","impliedFormat":99},{"version":"59f8dc89b9e724a6a667f52cdf4b90b6816ae6c9842ce176d38fcc973669009e","affectsGlobalScope":true,"impliedFormat":99},{"version":"68ead79e0f4b5576e2f17c5422039ecf5d56a20dc515ef593750411fbbe475bf","impliedFormat":99},{"version":"0108dc84f79875e54d36f1e1001fc68ceb36a7770555df339aaef086e269a569","signature":"06d9396b45be3b06c7ef3a1a9e0cd41c652713cdf0b2dffa9866895cc5beb2d1","impliedFormat":99},{"version":"7a943d93d26ff9ed538ba3b67f82ec6d63a176b61858ecdf37be072507653b99","signature":"914eb37085ec99891bd1446f9f7a3ff9f120d0c61bd2be5c8e73cb9dfb0fa66b","impliedFormat":99},{"version":"744cd21215296ffb9b14e58eb91a6d5646f696c7572f01dcd64aba6d041f8a19","signature":"3366c8b998274d8fd8de4892b3f6a7dbb4eb6f0fbc34a91e7b02490c629f16b8","impliedFormat":99},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","impliedFormat":1},{"version":"e6f31da28cc18e17ec76919821827dabf460361050546eaa1957c192386e1154","signature":"3edf9e8fad2ff22a3dd33ad3d65348199eeaba3062cfdfd8b4a02ffe81a98fab","impliedFormat":99}],"root":[60,61,[219,221],223],"options":{"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"exactOptionalPropertyTypes":true,"module":199,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noPropertyAccessFromIndexSignature":true,"noUncheckedIndexedAccess":true,"outDir":"./dist","rootDir":"./src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":9,"verbatimModuleSyntax":true},"referencedMap":[[222,1],[170,1],[172,1],[173,1],[175,2],[174,1],[176,3],[112,4],[113,4],[114,5],[67,6],[115,7],[116,8],[117,9],[62,1],[65,10],[63,1],[64,1],[118,11],[119,12],[120,13],[121,14],[122,15],[123,16],[124,16],[125,17],[126,18],[127,19],[128,20],[68,1],[66,1],[129,21],[130,22],[131,23],[165,24],[132,25],[133,1],[134,26],[135,27],[136,28],[137,29],[138,30],[139,31],[140,32],[141,33],[142,34],[143,34],[144,35],[145,1],[146,36],[147,37],[149,38],[148,39],[150,40],[151,41],[152,42],[153,43],[154,44],[155,45],[156,46],[157,47],[158,48],[159,49],[160,50],[161,51],[162,52],[69,1],[70,1],[71,1],[109,53],[110,1],[111,1],[163,54],[164,55],[187,1],[211,1],[213,56],[212,1],[207,57],[205,58],[206,59],[194,60],[195,58],[202,61],[193,62],[198,63],[208,1],[199,64],[204,65],[210,66],[209,67],[192,68],[200,69],[201,70],[196,71],[203,57],[197,72],[216,73],[178,74],[179,75],[182,76],[171,77],[181,73],[177,78],[169,1],[183,79],[184,80],[191,1],[58,1],[59,1],[10,1],[11,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[22,1],[23,1],[4,1],[24,1],[28,1],[25,1],[26,1],[27,1],[29,1],[30,1],[31,1],[5,1],[32,1],[33,1],[34,1],[35,1],[6,1],[39,1],[36,1],[37,1],[38,1],[40,1],[7,1],[41,1],[46,1],[47,1],[42,1],[43,1],[44,1],[45,1],[8,1],[51,1],[48,1],[49,1],[50,1],[52,1],[9,1],[53,1],[54,1],[55,1],[57,1],[56,1],[1,1],[87,81],[97,82],[86,81],[107,83],[78,84],[77,85],[106,86],[100,87],[105,88],[80,89],[94,90],[79,91],[103,92],[75,93],[74,86],[104,94],[76,95],[81,96],[82,1],[85,96],[72,1],[108,97],[98,98],[89,99],[90,100],[92,101],[88,102],[91,103],[101,86],[83,104],[84,105],[93,106],[73,107],[96,98],[95,96],[99,1],[102,108],[167,109],[218,110],[186,111],[168,109],[166,1],[185,112],[217,1],[215,1],[188,113],[214,114],[180,115],[190,1],[189,116],[60,1],[61,1],[223,117],[221,1],[219,1],[220,1]],"latestChangedDtsFile":"./dist/index.d.ts","version":"5.9.3"}