@openplayerjs/core 3.0.0-beta.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.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2018 Rafael Miranda
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,283 @@
1
+ # @openplayer/core
2
+
3
+ > Core player engine, plugin system, event bus, and public API for [OpenPlayerJS](https://github.com/openplayerjs/openplayerjs).
4
+
5
+ ---
6
+
7
+ ## Installation
8
+
9
+ ```bash
10
+ npm install @openplayer/core
11
+ ```
12
+
13
+ ### Constructor
14
+
15
+ ```ts
16
+ new Core(media: HTMLMediaElement | string, config?: PlayerConfig)
17
+ ```
18
+
19
+ | Parameter | Type | Description |
20
+ | --------- | ---------------------------- | ------------------------------------------------------------------------------- |
21
+ | `media` | `HTMLMediaElement \| string` | The `<video>` or `<audio>` element, or a CSS selector string that points to one |
22
+ | `config` | `PlayerConfig` | Optional configuration object ([see below](#configuration)) |
23
+
24
+ ---
25
+
26
+ ## What's inside
27
+
28
+ | Export | Purpose |
29
+ | -------------------- | ---------------------------------------------------------------------------------- |
30
+ | `Core` | Main core class — manages engines, plugins, state, and events |
31
+ | `PluginRegistry` | Registers and coordinates `PlayerPlugin` instances |
32
+ | `EventBus` | Internal typed publish/subscribe system |
33
+ | `BaseMediaEngine` | Abstract base class for custom media engines |
34
+ | `DefaultMediaEngine` | Built-in HTML5 `<video>`/`<audio>` engine (MP4, MP3, WebM, OGG, etc.) |
35
+ | `getOverlayManager` | Access the overlay priority queue (used by ad plugins and loaders) |
36
+ | `DisposableStore` | Manages a collection of cleanup functions; cleared on `dispose()` |
37
+ | `StateManager` | Simple typed state machine used to track playback state |
38
+ | `Lease` | Cooperative lock for exclusive playback access (used by ads to pause content) |
39
+ | `formatTime` | Utility: formats a number of seconds as `mm:ss` or `hh:mm:ss` |
40
+ | `isAudio` | Utility: returns `true` if a media element is `<audio>` |
41
+ | `isMobile` | Utility: returns `true` when running on a mobile browser |
42
+ | `offset` | Utility: returns the `{ top, left }` offset of an element relative to the document |
43
+
44
+ ---
45
+
46
+ ## Quick start
47
+
48
+ ```ts
49
+ import { Core } from '@openplayer/core';
50
+
51
+ const video = document.querySelector<HTMLVideoElement>('#player')!;
52
+
53
+ const core = new Core(video, {
54
+ startTime: 0,
55
+ startVolume: 1,
56
+ startPlaybackRate: 1,
57
+ // Set to Infinity for live streams:
58
+ // duration: Infinity,
59
+ });
60
+
61
+ core.on('playing', () => console.log('playback started'));
62
+ core.on('ended', () => console.log('media ended'));
63
+
64
+ await core.play();
65
+ ```
66
+
67
+ ---
68
+
69
+ ## Configuration
70
+
71
+ Pass options as the second argument to `new Core(...)`:
72
+
73
+ | Option | Type | Default | Description |
74
+ | ------------------- | ---------------- | ------- | ----------------------------------------------------------------- |
75
+ | `plugins` | `PlayerPlugin[]` | `[]` | Plugins and engines to activate at startup |
76
+ | `startTime` | `number` | `0` | Initial playback position in seconds |
77
+ | `startVolume` | `number` | `1` | Initial volume from `0` to `1` |
78
+ | `startPlaybackRate` | `number` | `1` | Initial playback speed (`1` = normal, `2` = double, `0.5` = half) |
79
+ | `duration` | `number` | `0` | Override the detected duration. Use `Infinity` for live streams |
80
+
81
+ ---
82
+
83
+ ## Public API
84
+
85
+ ### Properties
86
+
87
+ | Property | Type | Description |
88
+ | ------------------ | --------------------- | ------------------------------------------------------------------------------ |
89
+ | `media` | `HTMLMediaElement` | The underlying `<video>` or `<audio>` element |
90
+ | `config` | `PlayerConfig` | The resolved configuration for this instance |
91
+ | `events` | `EventBus` | The internal event bus (use `core.on(...)` for most cases) |
92
+ | `state` | `StateManager` | Current playback state (`'idle'`, `'loading'`, `'playing'`, `'paused'`, etc.) |
93
+ | `isLive` | `boolean` | `true` when `duration` is `Infinity` or the engine signals a live stream |
94
+ | `src` | `string \| undefined` | Get or set the active media URL |
95
+ | `volume` | `number` | Current volume (`0`–`1`) |
96
+ | `muted` | `boolean` | Whether the player is currently muted |
97
+ | `playbackRate` | `number` | Current playback speed multiplier |
98
+ | `currentTime` | `number` | Current playback position in seconds |
99
+ | `duration` | `number` | Total duration in seconds (`Infinity` for live streams) |
100
+ | `userInteracted` | `boolean` | `true` after the user's first gesture — useful for autoplay eligibility checks |
101
+ | `canAutoplay` | `boolean` | `true` if the browser allows autoplay with sound |
102
+ | `canAutoplayMuted` | `boolean` | `true` if the browser allows autoplay when muted |
103
+
104
+ ### Methods
105
+
106
+ | Method | Signature | Description |
107
+ | -------------------------- | -------------------------------------- | ------------------------------------------------------------------------------------------------------ |
108
+ | `on` | `on(event, callback) => () => void` | Subscribe to a player event. Returns an unsubscribe function |
109
+ | `emit` | `emit(event, payload?)` | Emit an event on the player bus (also calls `onEvent` on all non-engine plugins) |
110
+ | `play` | `async play() => Promise<void>` | Start or resume playback. Resolves once the browser begins rendering frames |
111
+ | `pause` | `pause()` | Pause playback |
112
+ | `load` | `load()` | Re-read `<source>` tags, pick the right engine, and begin loading the media |
113
+ | `destroy` | `destroy()` | Remove all event listeners, destroy all plugins, and restore the original media element |
114
+ | `registerPlugin` | `registerPlugin(plugin)` | Register a plugin or engine after the player was constructed |
115
+ | `getPlugin` | `getPlugin<T>(name) => T \| undefined` | Retrieve a registered plugin instance by its `name` property |
116
+ | `addCaptions` | `addCaptions(args)` | Append a `<track>` element to the media tag at runtime |
117
+ | `extend` | `extend(properties)` | Mix extra properties into the player instance (used internally by `extendControls`, `extendAds`, etc.) |
118
+ | `whenReady` | `async whenReady() => Promise<void>` | Resolves when the engine has parsed enough metadata to start playback |
119
+ | `determineAutoplaySupport` | `async determineAutoplaySupport()` | Probe the browser for autoplay capabilities and update `canAutoplay` / `canAutoplayMuted` |
120
+
121
+ ## Adding captions at runtime
122
+
123
+ Use `core.addCaptions(...)` from `@openplayer/core` to inject subtitle tracks after the player is already running (this is the preferred approach for single-page applications):
124
+
125
+ ```ts
126
+ core.addCaptions({
127
+ src: '/captions/en.vtt', // URL to the caption/subtitle file (.vtt, .srt). MUST BE IN THE SAME DOMAIN AS THE PLAYER'S
128
+ srclang: 'en', // BCP-47 language code, e.g. 'en', 'es', 'ja'
129
+ kind: 'subtitles', // 'subtitles' | 'captions' | 'descriptions' | 'chapters' | 'metadata'
130
+ label: 'English', // Human-readable label shown in the Settings menu
131
+ default: true, // Set this track as the default/active track
132
+ });
133
+ ```
134
+
135
+ > **Safari note:** Safari requires at least one `<track>` element in the markup (even an empty one) for the programmatic captions API to work. Add this placeholder to your HTML when all captions are loaded dynamically:
136
+ >
137
+ > ```html
138
+ > <track kind="subtitles" src="/captions/empty.vtt" />
139
+ > ```
140
+
141
+ OpenPlayerJS supports **WebVTT** (`.vtt`) and **SubRip** (`.srt`) files. WebVTT is recommended for full compatibility, especially in iOS fullscreen mode where the native player takes over.
142
+
143
+ ---
144
+
145
+ ## Events
146
+
147
+ Subscribe with `core.on(eventName, handler)`. The handler receives an optional payload whose type matches the event.
148
+
149
+ ```ts
150
+ core.on('playing', () => console.log('▶ playing'));
151
+ core.on('timeupdate', () => console.log(core.currentTime));
152
+ core.on('error', (err) => console.error('media error', err));
153
+ ```
154
+
155
+ | Event | Payload | When it fires |
156
+ | ---------------------- | -------------------- | ------------------------------------------------------------------ |
157
+ | `loadstart` | — | The browser begins loading the media source |
158
+ | `loadedmetadata` | — | Duration and dimensions are known; safe to call `play()` |
159
+ | `durationchange` | — | The reported duration changes (common during HLS live streams) |
160
+ | `play` | — | A play request was made (may fire before any frames are displayed) |
161
+ | `playing` | — | The first frame is rendered; playback is actually running |
162
+ | `pause` | — | Playback was paused |
163
+ | `timeupdate` | — | The current time updated during playback |
164
+ | `seeking` | — | The player is seeking to a new position |
165
+ | `seeked` | — | Seeking completed |
166
+ | `waiting` | — | Playback stalled while the buffer catches up |
167
+ | `ended` | — | The media finished playing |
168
+ | `volumechange` | — | Volume or mute state changed |
169
+ | `ratechange` | — | Playback rate changed |
170
+ | `error` | `MediaError \| null` | A media error occurred |
171
+ | `source:set` | `string` | A new source URL was set on the player |
172
+ | `player:interacted` | — | The user interacted with the page for the first time |
173
+ | `player:destroy` | — | The player is about to be destroyed |
174
+ | `texttrack:add` | `HTMLTrackElement` | A new caption/subtitle track was appended |
175
+ | `texttrack:remove` | `HTMLTrackElement` | A caption/subtitle track was removed |
176
+ | `texttrack:listchange` | — | The list of available tracks changed |
177
+ | `overlay:changed` | — | The overlay state changed (used by ads, loaders, etc.) |
178
+
179
+ > **HTML5 command events** (`cmd:play`, `cmd:pause`, `cmd:seek`, etc.) are lower-level bus messages intended for engines and plugins. In most cases you should use the higher-level `play` / `pause` / `timeupdate` / `ended` events instead.
180
+
181
+ ---
182
+
183
+ ## Writing a plugin
184
+
185
+ A plugin is a class (or plain object) that implements `PlayerPlugin`. It receives a `PluginContext` in `setup()` and can subscribe to events, manipulate the media element, or register cleanup callbacks. Plugins have access to the player instance, the event bus, the media element, and a disposable store for automatic cleanup.
186
+
187
+ ```ts
188
+ import type { PlayerPlugin, PluginContext } from '@openplayer/core';
189
+
190
+ export class AnalyticsPlugin implements PlayerPlugin {
191
+ name = 'analytics';
192
+ version = '1.0.0';
193
+
194
+ setup({ player, events, on }: PluginContext) {
195
+ // `on` is a shorthand for events.on(...) that cleans up automatically
196
+ on('playing', () => {
197
+ sendAnalyticsEvent('video_play', { currentTime: core.media.currentTime });
198
+ });
199
+
200
+ on('ended', () => {
201
+ sendAnalyticsEvent('video_complete');
202
+ });
203
+ }
204
+ }
205
+
206
+ const core = new Core(video, {
207
+ plugins: [new AnalyticsPlugin()],
208
+ });
209
+ ```
210
+
211
+ ### PluginContext properties
212
+
213
+ | Property | Type | Description |
214
+ | --------- | ---------------------------------------- | --------------------------------------------------------------- |
215
+ | `player` | `Player` | The player instance |
216
+ | `media` | `HTMLMediaElement` | The underlying `<video>` / `<audio>` element |
217
+ | `events` | `EventBus` | The shared event bus |
218
+ | `state` | `StateManager` | Current playback state machine |
219
+ | `leases` | `Lease` | Playback lease management (used by ads) |
220
+ | `dispose` | `DisposableStore` | Tracks cleanup functions; all entries run on `plugin.dispose()` |
221
+ | `add` | `(fn) => void` | Register a teardown function in the disposable store |
222
+ | `on` | `(event, cb) => void` | Subscribe to an event and auto-unsubscribe on dispose |
223
+ | `listen` | `(target, type, handler, opts?) => void` | Add a DOM `addEventListener` that auto-removes on dispose |
224
+
225
+ ### Plugin lifecycle hooks
226
+
227
+ | Hook | When it runs |
228
+ | ------------------------- | ----------------------------------------------------------------- |
229
+ | `setup(ctx)` | Called once when the plugin is registered, before any media loads |
230
+ | `onEvent(event, payload)` | Called after every event emitted on the player bus (optional) |
231
+ | `dispose()` | Called when the player is destroyed or the plugin is unregistered |
232
+
233
+ ---
234
+
235
+ ## Writing a custom media engine
236
+
237
+ A media engine is a plugin with `capabilities: ['media-engine']` that handles a specific media type. When `core.load()` is called, the player iterates over all registered engines and calls `canPlay(source)` on each. The engine with the highest `priority` that returns `true` wins.
238
+
239
+ Extend `BaseMediaEngine` and implement `IEngine` to handle a new media format or streaming protocol.
240
+
241
+ Engines are excluded from the `onEvent` broadcast loop.
242
+
243
+ ```ts
244
+ import { BaseMediaEngine } from '@openplayer/core';
245
+ import type { IEngine, MediaEngineContext, MediaSource } from '@openplayer/core';
246
+
247
+ export class MyStreamEngine extends BaseMediaEngine implements IEngine {
248
+ name = 'my-stream-engine';
249
+ version = '1.0.0';
250
+ capabilities = ['media-engine'] as const;
251
+
252
+ // Higher priority = preferred over lower-priority engines.
253
+ // DefaultMediaEngine = 0, HlsMediaEngine = 50.
254
+ priority = 20;
255
+
256
+ canPlay(source: MediaSource): boolean {
257
+ return source.src.endsWith('.mystream');
258
+ }
259
+
260
+ attach(ctx: MediaEngineContext): void {
261
+ // Set up your streaming library against the media element
262
+ // Example: myLib.attach(media);
263
+ // Emit 'loadedmetadata' when the engine is ready so core.whenReady() resolves
264
+ // ctx.events.emit('loadedmetadata');
265
+ }
266
+
267
+ detach(ctx: MediaEngineContext): void {
268
+ // Tear down your library.
269
+ }
270
+ }
271
+ ```
272
+
273
+ ---
274
+
275
+ ## Code samples
276
+
277
+ Coming soon...
278
+
279
+ ---
280
+
281
+ ## License
282
+
283
+ MIT — see [LICENSE](../../LICENSE).
@@ -0,0 +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.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.dom.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.scripthost.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.esnext.disposable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.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","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.full.d.ts","../src/core/events.ts","../src/core/media.ts","../src/core/constants.ts","../src/engines/base.ts","../src/engines/html5.ts","../src/core/configuration.ts","../src/core/dispose.ts","../src/core/lease.ts","../src/core/state.ts","../src/core/plugin.ts","../src/core/utils.ts","../src/core/index.ts","../src/core/overlay.ts","../src/index.ts","../../../node_modules/.pnpm/@jest+expect-utils@29.7.0/node_modules/@jest/expect-utils/build/index.d.ts","../../../node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/index.d.ts","../../../node_modules/.pnpm/@sinclair+typebox@0.27.10/node_modules/@sinclair/typebox/typebox.d.ts","../../../node_modules/.pnpm/@jest+schemas@29.6.3/node_modules/@jest/schemas/build/index.d.ts","../../../node_modules/.pnpm/pretty-format@29.7.0/node_modules/pretty-format/build/index.d.ts","../../../node_modules/.pnpm/jest-diff@29.7.0/node_modules/jest-diff/build/index.d.ts","../../../node_modules/.pnpm/jest-matcher-utils@29.7.0/node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/.pnpm/expect@29.7.0/node_modules/expect/build/index.d.ts","../../../node_modules/.pnpm/@types+jest@29.5.14/node_modules/@types/jest/index.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/web-globals/crypto.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/utility.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/client-stats.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/h2c-client.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/mock-call-history.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/snapshot-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/cache-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/util.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/web-globals/navigator.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/web-globals/storage.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/web-globals/streams.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/inspector.generated.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/sea.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/sqlite.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@24.11.0/node_modules/@types/node/index.d.ts"],"fileIdsList":[[79,133,150,151],[70,79,133,150,151],[72,75,79,133,150,151],[79,130,131,133,150,151],[79,132,133,150,151],[133,150,151],[79,133,138,150,151,168],[79,133,134,139,144,150,151,153,165,176],[79,133,134,135,144,150,151,153],[79,133,136,150,151,177],[79,133,137,138,145,150,151,154],[79,133,138,150,151,165,173],[79,133,139,141,144,150,151,153],[79,132,133,140,150,151],[79,133,141,142,150,151],[79,133,143,144,150,151],[79,132,133,144,150,151],[79,133,144,145,146,150,151,165,176],[79,133,144,145,146,150,151,160,165,168],[79,125,133,141,144,147,150,151,153,165,176],[79,133,144,145,147,148,150,151,153,165,173,176],[79,133,147,149,150,151,165,173,176],[77,78,79,80,81,82,83,84,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,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182],[79,133,144,150,151],[79,133,150,151,152,176],[79,133,141,144,150,151,153,165],[79,133,150,151,154],[79,133,150,151,155],[79,132,133,150,151,156],[79,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,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182],[79,133,150,151,158],[79,133,150,151,159],[79,133,144,150,151,160,161],[79,133,150,151,160,162,177,179],[79,133,145,150,151],[79,133,144,150,151,165,166,168],[79,133,150,151,167,168],[79,133,150,151,165,166],[79,133,150,151,168],[79,133,150,151,169],[79,130,133,150,151,165,170,176],[79,133,144,150,151,171,172],[79,133,150,151,171,172],[79,133,138,150,151,153,165,173],[79,133,150,151,174],[79,133,150,151,153,175],[79,133,147,150,151,159,176],[79,133,138,150,151,177],[79,133,150,151,165,178],[79,133,150,151,152,179],[79,133,150,151,180],[79,133,138,150,151],[79,125,133,150,151],[79,133,150,151,181],[79,125,133,144,146,150,151,156,165,168,176,178,179,181],[79,133,150,151,165,182],[68,74,79,133,150,151],[72,79,133,150,151],[69,73,79,133,150,151],[71,79,133,150,151],[79,91,94,97,98,133,150,151,176],[79,94,133,150,151,165,176],[79,94,98,133,150,151,176],[79,133,150,151,165],[79,88,133,150,151],[79,92,133,150,151],[79,90,91,94,133,150,151,176],[79,133,150,151,153,173],[79,133,150,151,183],[79,88,133,150,151,183],[79,90,94,133,150,151,153,176],[79,85,86,87,89,93,133,144,150,151,165,176],[79,94,102,110,133,150,151],[79,86,92,133,150,151],[79,94,119,120,133,150,151],[79,86,89,94,133,150,151,168,176,183],[79,94,133,150,151],[79,90,94,133,150,151,176],[79,85,133,150,151],[79,88,89,90,92,93,94,95,96,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,120,121,122,123,124,133,150,151],[79,94,112,115,133,141,150,151],[79,94,102,103,104,133,150,151],[79,92,94,103,105,133,150,151],[79,93,133,150,151],[79,86,88,94,133,150,151],[79,94,98,103,105,133,150,151],[79,98,133,150,151],[79,92,94,97,133,150,151,176],[79,86,90,94,102,133,150,151],[79,94,112,133,150,151],[79,105,133,150,151],[79,88,94,119,133,150,151,168,181,183],[54,55,58,59,60,61,62,63,64,79,133,150,151],[54,65,79,133,150,151],[54,79,133,150,151],[54,60,61,62,65,79,133,150,151],[54,55,56,79,133,150,151],[55,57,79,133,150,151],[54,55,56,57,58,59,60,61,62,63,64,65,66,79,133,150,151]],"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":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7a3c8b952931daebdfc7a2897c53c0a1c73624593fa070e46bd537e64dcd20a","affectsGlobalScope":true,"impliedFormat":1},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","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":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"1305d1e76ca44e30fb8b2b8075fa522b83f60c0bcf5d4326a9d2cf79b53724f8","impliedFormat":1},{"version":"8532f5f76026fbc7dab01137c1893f4826d97b1a403c7bbd82b780004f8eb2db","signature":"2e2d4be3c79cdf4943849e9f72da272431d9ea24a4325df6dcbdf5c521a13638"},{"version":"6ba2e95ea210aa9de451485cf6bd25cee7b9aab55118c3141b0bc0a5f6f0220e","signature":"f0e086799ee16bff822b9ca71c9c0b6dab6f6a8843cdcc76b67596d41494bde8"},{"version":"9ce6bb4087dbaa8853318fa9f87e535e71cde1dbddf10334e4b092017e5c74e8","signature":"593affee4870a2a8c5bcc6beab16382d5d4713191723e5e23aef03b366bc5ff3"},{"version":"796bd084c36842b62481e035c1e60048c44d724f32aca6593ef35310f15875aa","signature":"32258c96489e4699cad189c88a25c30844e96dfd31651c68e4a09e308e4374d3"},{"version":"7b55c78e6659ebeb0b06acee1dc19620654a2baf914127ee3774d4a5da219c1a","signature":"ea4f730a74a42dffd08b822fdd60b2e94742566e8c270b3b5b03362298cb8283"},{"version":"dc80aef2e65524b92c9963ba0cd8824c4a0c1cf84a35a452b8de4d8b0a292d4e","signature":"70fba65c9d1b53c6f9781c06f8957c12048e4152cc3d4075d1fd793be81b2122"},{"version":"d9d4b5d7c76156220f447e7e657f34e4f9162be917e767692e39313be3145a0c","signature":"cdf2e11d4fc6fd22798ebed27d52d88633c177fa4c3e4d4691259b20eb565b0b"},{"version":"ec87d4ff952025f3d057848857052c235e2ab6e17c798ced91c6422184ba590d","signature":"81cf4184adbc41b34305f9472ccddabdd4f04c62b0ad99ba71bec06f61ada0eb"},{"version":"cc0eaef0324ea72b2843094d849824389a3461605b2ab0a108c2e5758197cf26","signature":"7a0a2e5ffc11cd14e752fb718636b56737a826d7db821f5e84c63ad73faa0b8a"},{"version":"e5a84f98c381d7a9bebf129480e2ea29b11b8fd615e10bfe491a77ef1b83dae6","signature":"b000a9e9daea63ef6fa8d9e7ea6d02e2b913164e86392e267b01752719891223"},{"version":"45e3a13556467c5198e67cde754554fd33d9ad68d3a5161b38c181c3ea99b94b","signature":"18a813adec9859e3eaac20f7599cdec27a89f01b6c1387afd8ff50e527271d6e"},{"version":"9511e33d8898d7e982098f14711c980c020813f5b30f06a6dd8e741f83e451d5","signature":"db2528617d48408ae0b225a2d81f85db2d3c398152522937c04d0b0e2415886b"},{"version":"ef13b2966c7e66cb027a7be48aabe551d0548715879c97a432e1f32c9aaf5e00","signature":"a05d02394c51b9e0a82990dca7fcf9cbb55c39d9c44842c874974d00ee8ebdc3"},{"version":"19c8c8b272934d74e62860be378fe4c0b4d31e865161c7cb9e3e5ffd2d3fca0e","signature":"464a2d6c3fea072d022f01509babb5ce69e2f89aa7f33548550732093ce1e021"},{"version":"cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","impliedFormat":1},{"version":"0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","impliedFormat":1},{"version":"e1028394c1cf96d5d057ecc647e31e457b919092f882ed0c7092152b077fed9d","impliedFormat":1},{"version":"f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","impliedFormat":1},{"version":"5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","impliedFormat":1},{"version":"3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","impliedFormat":1},{"version":"ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","impliedFormat":1},{"version":"d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec","impliedFormat":1},{"version":"f8db4fea512ab759b2223b90ecbbe7dae919c02f8ce95ec03f7fb1cf757cfbeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"378281aa35786c27d5811af7e6bcaa492eebd0c7013d48137c35bbc69a2b9751","affectsGlobalScope":true,"impliedFormat":1},{"version":"3af97acf03cc97de58a3a4bc91f8f616408099bc4233f6d0852e72a8ffb91ac9","affectsGlobalScope":true,"impliedFormat":1},{"version":"1b2dd1cbeb0cc6ae20795958ba5950395ebb2849b7c8326853dd15530c77ab0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"387a023d363f755eb63450a66c28b14cdd7bc30a104565e2dbf0a8988bb4a56c","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"487b694c3de27ddf4ad107d4007ad304d29effccf9800c8ae23c2093638d906a","impliedFormat":1},{"version":"3a80bc85f38526ca3b08007ee80712e7bb0601df178b23fbf0bf87036fce40ce","impliedFormat":1},{"version":"ccf4552357ce3c159ef75f0f0114e80401702228f1898bdc9402214c9499e8c0","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"2931540c47ee0ff8a62860e61782eb17b155615db61e36986e54645ec67f67c2","impliedFormat":1},{"version":"ccab02f3920fc75c01174c47fcf67882a11daf16baf9e81701d0a94636e94556","impliedFormat":1},{"version":"f6faf5f74e4c4cc309a6c6a6c4da02dbb840be5d3e92905a23dcd7b2b0bd1986","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"33e981bf6376e939f99bd7f89abec757c64897d33c005036b9a10d9587d80187","impliedFormat":1},{"version":"7fd1b31fd35876b0aa650811c25ec2c97a3c6387e5473eb18004bed86cdd76b6","impliedFormat":1},{"version":"b41767d372275c154c7ea6c9d5449d9a741b8ce080f640155cc88ba1763e35b3","impliedFormat":1},{"version":"3bacf516d686d08682751a3bd2519ea3b8041a164bfb4f1d35728993e70a2426","impliedFormat":1},{"version":"7fb266686238369442bd1719bc0d7edd0199da4fb8540354e1ff7f16669b4323","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"5b03a034c72146b61573aab280f295b015b9168470f2df05f6080a2122f9b4df","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"54c3e2371e3d016469ad959697fd257e5621e16296fa67082c2575d0bf8eced0","impliedFormat":1},{"version":"beb8233b2c220cfa0feea31fbe9218d89fa02faa81ef744be8dce5acb89bb1fd","impliedFormat":1},{"version":"c183b931b68ad184bc8e8372bf663f3d33304772fb482f29fb91b3c391031f3e","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"48cc3ec153b50985fb95153258a710782b25975b10dd4ac8a4f3920632d10790","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"e1528ca65ac90f6fa0e4a247eb656b4263c470bb22d9033e466463e13395e599","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"866078923a56d026e39243b4392e282c1c63159723996fa89243140e1388a98d","impliedFormat":1},{"version":"f724236417941ea77ec8d38c6b7021f5fb7f8521c7f8c1538e87661f2c6a0774","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d97fb21da858fb18b8ae72c314e9743fd52f73ebe2764e12af1db32fc03f853f","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ea15fd99b2e34cb25fe8346c955000bb70c8b423ae4377a972ef46bfb37f595","impliedFormat":1},{"version":"7cf69dd5502c41644c9e5106210b5da7144800670cbe861f66726fa209e231c4","impliedFormat":1},{"version":"72c1f5e0a28e473026074817561d1bc9647909cf253c8d56c41d1df8d95b85f7","impliedFormat":1},{"version":"f9b4137a0d285bd77dba2e6e895530112264310ae47e07bf311feae428fb8b61","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b21e13ed07d0df176ae31d6b7f01f7b17d66dbeb489c0d31d00de2ca14883da","impliedFormat":1},{"version":"51aecd2df90a3cffea1eb4696b33b2d78594ea2aa2138e6b9471ec4841c6c2ee","impliedFormat":1},{"version":"9d8f9e63e29a3396285620908e7f14d874d066caea747dc4b2c378f0599166b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"f929f0b6b3421a2d34344b0f421f45aeb2c84ad365ebf29d04312023b3accc58","impliedFormat":1},{"version":"db9ada976f9e52e13f7ae8b9a320f4b67b87685938c5879187d8864b2fbe97f3","impliedFormat":1},{"version":"9f39e70a354d0fba29ac3cdf6eca00b7f9e96f64b2b2780c432e8ea27f133743","impliedFormat":1},{"version":"0dace96cc0f7bc6d0ee2044921bdf19fe42d16284dbcc8ae200800d1c9579335","impliedFormat":1},{"version":"a2e2bbde231b65c53c764c12313897ffdfb6c49183dd31823ee2405f2f7b5378","impliedFormat":1},{"version":"ad1cc0ed328f3f708771272021be61ab146b32ecf2b78f3224959ff1e2cd2a5c","impliedFormat":1},{"version":"c64e1888baaa3253ca4405b455e4bf44f76357868a1bd0a52998ade9a092ad78","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc8c6f5322961b56d9906601b20798725df60baeab45ec014fba9f795d5596fd","impliedFormat":1},{"version":"0904660ae854e6d41f6ff25356db1d654436c6305b0f0aa89d1532df0253486e","impliedFormat":1},{"version":"9cdfd0a77dd7eeed57e91d3f449274ea2470abdb7e167a2f146b1ea8de6224e0","impliedFormat":1},{"version":"230bdc111d7578276e4a3bb9d075d85c78c6b68f428c3a9935e2eaa10f4ae1f5","impliedFormat":1},{"version":"e8aabbee5e7b9101b03bb4222607d57f38859b8115a8050a4eb91b4ee43a3a73","impliedFormat":1},{"version":"bbf42f98a5819f4f06e18c8b669a994afe9a17fe520ae3454a195e6eabf7700d","impliedFormat":1},{"version":"0e5974dfff7a97181c7c376545f126b20acf2f1341db7d3fccea4977bf3ce19c","impliedFormat":1},{"version":"c8b85f7aed29f8f52b813f800611406b0bfe5cf3224d20a4bdda7c7f73ce368e","affectsGlobalScope":true,"impliedFormat":1},{"version":"145dcf25fd4967c610c53d93d7bc4dce8fbb1b6dd7935362472d4ae49363c7ba","impliedFormat":1},{"version":"ff65b8a8bd380c6d129becc35de02f7c29ad7ce03300331ca91311fb4044d1a9","impliedFormat":1},{"version":"04bf1aa481d1adfb16d93d76e44ce71c51c8ef68039d849926551199489637f6","impliedFormat":1},{"version":"9043daec15206650fa119bad6b8d70136021ea7d52673a71f79a87a42ee38d44","affectsGlobalScope":true,"impliedFormat":1},{"version":"19098980aa72095ea5786f527ff6b249cc940d1ee1e6a3b2cd2c1a73fcb5a376","affectsGlobalScope":true,"impliedFormat":1},{"version":"a58a15da4c5ba3df60c910a043281256fa52d36a0fcdef9b9100c646282e88dd","impliedFormat":1},{"version":"b36beffbf8acdc3ebc58c8bb4b75574b31a2169869c70fc03f82895b93950a12","impliedFormat":1},{"version":"de263f0089aefbfd73c89562fb7254a7468b1f33b61839aafc3f035d60766cb4","impliedFormat":1},{"version":"77fbe5eecb6fac4b6242bbf6eebfc43e98ce5ccba8fa44e0ef6a95c945ff4d98","impliedFormat":1},{"version":"8c81fd4a110490c43d7c578e8c6f69b3af01717189196899a6a44f93daa57a3a","impliedFormat":1},{"version":"5fb39858b2459864b139950a09adae4f38dad87c25bf572ce414f10e4bd7baab","impliedFormat":1},{"version":"2031147ea9cbd361712e0c5d5ebd518b5cead2bbc4d2d501ab15c88385a5aba7","impliedFormat":1},{"version":"b33b74b97952d9bf4fbd2951dcfbb5136656ddb310ce1c84518aaa77dbca9992","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"8d117798e5228c7fdff887f44851d07320739c5cc0d511afae8f250c51809a36","affectsGlobalScope":true,"impliedFormat":1},{"version":"c119835edf36415081dfd9ed15fc0cd37aaa28d232be029ad073f15f3d88c323","impliedFormat":1},{"version":"8e7c3bed5f19ade8f911677ddc83052e2283e25b0a8654cd89db9079d4b323c7","impliedFormat":1},{"version":"9705cd157ffbb91c5cab48bdd2de5a437a372e63f870f8a8472e72ff634d47c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ae86f30d5d10e4f75ce8dcb6e1bd3a12ecec3d071a21e8f462c5c85c678efb41","impliedFormat":1},{"version":"ccf3afaeebbeee4ca9092101e99fd6abd681116b6e5ec23e381bbb1e1f32262c","impliedFormat":1},{"version":"e03460fe72b259f6d25ad029f085e4bedc3f90477da4401d8fbc1efa9793230e","impliedFormat":1},{"version":"4286a3a6619514fca656089aee160bb6f2e77f4dd53dc5a96b26a0b4fc778055","impliedFormat":1},{"version":"ab7818a9d57a9297b90e456fc68b77f84d74395a9210a3cfa9d87db33aff8b14","affectsGlobalScope":true,"impliedFormat":1},{"version":"3585d6891e9ea18e07d0755a6d90d71331558ba5dc5561933553209f886db106","affectsGlobalScope":true,"impliedFormat":1},{"version":"86be71cbb0593468644932a6eb96d527cfa600cecfc0b698af5f52e51804451d","impliedFormat":1},{"version":"255d948f87f24ffd57bcb2fdf95792fd418a2e1f712a98cf2cce88744d75085c","impliedFormat":1},{"version":"0d5b085f36e6dc55bc6332ecb9c733be3a534958c238fb8d8d18d4a2b6f2a15a","impliedFormat":1},{"version":"0c613a01c175585bc5ab6d0d97ce3cf25e6539615ca61e16aa1cab0b1499ea43","affectsGlobalScope":true,"impliedFormat":1},{"version":"2a034894bf28c220a331c7a0229d33564803abe2ac1b9a5feee91b6b9b6e88ea","impliedFormat":1},{"version":"d7e9ab1b0996639047c61c1e62f85c620e4382206b3abb430d9a21fb7bc23c77","impliedFormat":1}],"root":[[54,67]],"options":{"composite":true,"declaration":true,"declarationDir":"./types","declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"module":99,"outDir":"./","rootDir":"../src","skipLibCheck":true,"strict":true,"target":7,"tsBuildInfoFile":"./.tsbuildinfo","useDefineForClassFields":true},"referencedMap":[[68,1],[71,2],[70,1],[76,3],[130,4],[131,4],[132,5],[79,6],[133,7],[134,8],[135,9],[77,1],[136,10],[137,11],[138,12],[139,13],[140,14],[141,15],[142,15],[143,16],[144,17],[145,18],[146,19],[80,1],[78,1],[147,20],[148,21],[149,22],[183,23],[150,24],[151,1],[152,25],[153,26],[154,27],[155,28],[156,29],[157,30],[158,31],[159,32],[160,33],[161,33],[162,34],[163,1],[164,35],[165,36],[167,37],[166,38],[168,39],[169,40],[170,41],[171,42],[172,43],[173,44],[174,45],[175,46],[176,47],[177,48],[178,49],[179,50],[180,51],[81,1],[82,52],[83,1],[84,1],[126,53],[127,54],[128,1],[129,39],[181,55],[182,56],[69,1],[75,57],[73,58],[74,59],[72,60],[51,1],[52,1],[10,1],[8,1],[9,1],[14,1],[13,1],[2,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[3,1],[23,1],[24,1],[4,1],[25,1],[29,1],[26,1],[27,1],[28,1],[30,1],[31,1],[32,1],[5,1],[33,1],[34,1],[35,1],[36,1],[6,1],[40,1],[37,1],[38,1],[39,1],[41,1],[7,1],[42,1],[53,1],[47,1],[48,1],[43,1],[44,1],[45,1],[46,1],[1,1],[49,1],[50,1],[12,1],[11,1],[102,61],[114,62],[100,63],[115,64],[124,65],[91,66],[92,67],[90,68],[123,69],[118,70],[122,71],[94,72],[111,73],[93,74],[121,75],[88,76],[89,70],[95,77],[96,1],[101,78],[99,77],[86,79],[125,80],[116,81],[105,82],[104,77],[106,83],[109,84],[103,85],[107,86],[119,69],[97,87],[98,88],[110,89],[87,64],[113,90],[112,77],[108,91],[117,1],[85,1],[120,92],[59,1],[56,1],[60,1],[54,1],[65,93],[61,1],[55,94],[66,95],[63,96],[62,1],[64,1],[57,97],[58,98],[67,99]],"latestChangedDtsFile":"./types/index.d.ts","version":"5.9.3"}