@lightningjs/renderer 3.0.2 → 3.0.3
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/README.md +56 -196
- package/dist/src/core/CoreNode.js +25 -4
- package/dist/src/core/CoreNode.js.map +1 -1
- package/dist/src/core/CoreTextNode.d.ts +9 -2
- package/dist/src/core/CoreTextNode.js +32 -11
- package/dist/src/core/CoreTextNode.js.map +1 -1
- package/dist/src/core/CoreTextureManager.d.ts +8 -0
- package/dist/src/core/CoreTextureManager.js +13 -1
- package/dist/src/core/CoreTextureManager.js.map +1 -1
- package/dist/src/core/Stage.d.ts +8 -0
- package/dist/src/core/Stage.js +23 -0
- package/dist/src/core/Stage.js.map +1 -1
- package/dist/src/core/TextureMemoryManager.d.ts +8 -13
- package/dist/src/core/TextureMemoryManager.js +22 -27
- package/dist/src/core/TextureMemoryManager.js.map +1 -1
- package/dist/src/core/lib/ImageWorker.d.ts +2 -2
- package/dist/src/core/lib/ImageWorker.js +31 -12
- package/dist/src/core/lib/ImageWorker.js.map +1 -1
- package/dist/src/core/lib/WebGlContextWrapper.d.ts +105 -56
- package/dist/src/core/lib/WebGlContextWrapper.js +164 -158
- package/dist/src/core/lib/WebGlContextWrapper.js.map +1 -1
- package/dist/src/core/lib/textureCompression.js +19 -10
- package/dist/src/core/lib/textureCompression.js.map +1 -1
- package/dist/src/core/lib/validateImageBitmap.d.ts +2 -1
- package/dist/src/core/lib/validateImageBitmap.js +4 -4
- package/dist/src/core/lib/validateImageBitmap.js.map +1 -1
- package/dist/src/core/platform.js +2 -2
- package/dist/src/core/platform.js.map +1 -1
- package/dist/src/core/platforms/Platform.d.ts +4 -0
- package/dist/src/core/platforms/Platform.js.map +1 -1
- package/dist/src/core/platforms/web/WebPlatform.d.ts +2 -0
- package/dist/src/core/platforms/web/WebPlatform.js +13 -0
- package/dist/src/core/platforms/web/WebPlatform.js.map +1 -1
- package/dist/src/core/renderers/CoreRenderer.d.ts +6 -0
- package/dist/src/core/renderers/CoreRenderer.js +8 -0
- package/dist/src/core/renderers/CoreRenderer.js.map +1 -1
- package/dist/src/core/renderers/canvas/CanvasRenderer.d.ts +1 -0
- package/dist/src/core/renderers/canvas/CanvasRenderer.js +5 -0
- package/dist/src/core/renderers/canvas/CanvasRenderer.js.map +1 -1
- package/dist/src/core/renderers/webgl/WebGlRenderOp.d.ts +45 -0
- package/dist/src/core/renderers/webgl/WebGlRenderOp.js +127 -0
- package/dist/src/core/renderers/webgl/WebGlRenderOp.js.map +1 -0
- package/dist/src/core/renderers/webgl/WebGlRenderer.d.ts +2 -0
- package/dist/src/core/renderers/webgl/WebGlRenderer.js +30 -22
- package/dist/src/core/renderers/webgl/WebGlRenderer.js.map +1 -1
- package/dist/src/core/text-rendering/CanvasFont.d.ts +14 -0
- package/dist/src/core/text-rendering/CanvasFont.js +120 -0
- package/dist/src/core/text-rendering/CanvasFont.js.map +1 -0
- package/dist/src/core/text-rendering/CanvasTextRenderer.d.ts +1 -2
- package/dist/src/core/text-rendering/CanvasTextRenderer.js +11 -19
- package/dist/src/core/text-rendering/CanvasTextRenderer.js.map +1 -1
- package/dist/src/core/text-rendering/CoreFont.d.ts +33 -0
- package/dist/src/core/text-rendering/CoreFont.js +48 -0
- package/dist/src/core/text-rendering/CoreFont.js.map +1 -0
- package/dist/src/core/text-rendering/FontManager.d.ts +11 -0
- package/dist/src/core/text-rendering/FontManager.js +41 -0
- package/dist/src/core/text-rendering/FontManager.js.map +1 -0
- package/dist/src/core/text-rendering/SdfFont.d.ts +29 -0
- package/dist/src/core/text-rendering/SdfFont.js +142 -0
- package/dist/src/core/text-rendering/SdfFont.js.map +1 -0
- package/dist/src/core/text-rendering/SdfTextRenderer.d.ts +2 -2
- package/dist/src/core/text-rendering/SdfTextRenderer.js +141 -132
- package/dist/src/core/text-rendering/SdfTextRenderer.js.map +1 -1
- package/dist/src/core/text-rendering/TextGenerator.d.ts +10 -0
- package/dist/src/core/text-rendering/TextGenerator.js +36 -0
- package/dist/src/core/text-rendering/TextGenerator.js.map +1 -0
- package/dist/src/core/text-rendering/TextRenderer.d.ts +26 -20
- package/dist/src/core/text-rendering/Utils.d.ts +2 -0
- package/dist/src/core/text-rendering/Utils.js +3 -0
- package/dist/src/core/text-rendering/Utils.js.map +1 -1
- package/dist/src/main-api/Renderer.d.ts +14 -0
- package/dist/src/main-api/Renderer.js +29 -3
- package/dist/src/main-api/Renderer.js.map +1 -1
- package/dist/tsconfig.dist.tsbuildinfo +1 -1
- package/package.json +2 -1
- package/src/core/CoreNode.ts +29 -4
- package/src/core/CoreTextNode.test.ts +237 -0
- package/src/core/CoreTextNode.ts +53 -33
- package/src/core/CoreTextureManager.ts +14 -2
- package/src/core/Stage.ts +29 -0
- package/src/core/TextureMemoryManager.test.ts +134 -0
- package/src/core/TextureMemoryManager.ts +23 -30
- package/src/core/platforms/Platform.ts +5 -0
- package/src/core/platforms/web/WebPlatform.ts +13 -0
- package/src/core/renderers/CoreRenderer.ts +10 -0
- package/src/core/renderers/canvas/CanvasRenderer.ts +6 -0
- package/src/core/renderers/webgl/WebGlRenderer.rtt.test.ts +551 -0
- package/src/core/renderers/webgl/WebGlRenderer.ts +38 -28
- package/src/core/text-rendering/CanvasTextRenderer.ts +13 -41
- package/src/core/text-rendering/SdfTextRenderer.ts +166 -163
- package/src/core/text-rendering/TextRenderer.ts +23 -21
- package/src/core/text-rendering/Utils.ts +5 -1
- package/src/main-api/Renderer.test.ts +153 -0
- package/src/main-api/Renderer.ts +33 -3
- package/dist/src/core/renderers/webgl/WebGlCoreShader.destroy.d.ts +0 -1
- package/dist/src/core/renderers/webgl/WebGlCoreShader.destroy.js +0 -2
- package/dist/src/core/renderers/webgl/WebGlCoreShader.destroy.js.map +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SdfTextRenderer.js","sourceRoot":"","sources":["../../../../src/core/text-rendering/SdfTextRenderer.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;GAiBG;AAUH,OAAO,EAAE,iBAAiB,EAAE,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"SdfTextRenderer.js","sourceRoot":"","sources":["../../../../src/core/text-rendering/SdfTextRenderer.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { Stage } from "../Stage";
|
|
2
|
+
import type { FontLoadOptions, TextRenderer, TextRenderers } from "./TextRenderer";
|
|
3
|
+
export default class TextGenerator {
|
|
4
|
+
readonly stage: Stage;
|
|
5
|
+
private layoutCache;
|
|
6
|
+
fontEngines: Record<string, TextRenderer>;
|
|
7
|
+
constructor(stage: Stage, fontEngines: TextRenderer[]);
|
|
8
|
+
loadFont(rendererType: TextRenderers, options: FontLoadOptions): any;
|
|
9
|
+
destroy(): void;
|
|
10
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
export default class TextGenerator {
|
|
2
|
+
stage;
|
|
3
|
+
layoutCache = new Map();
|
|
4
|
+
fontEngines = {};
|
|
5
|
+
constructor(stage, fontEngines) {
|
|
6
|
+
this.stage = stage;
|
|
7
|
+
if (stage.renderer.mode === 'canvas') {
|
|
8
|
+
//filter out SDF renderer if the main renderer is canvas, since SDF rendering is not supported in that case
|
|
9
|
+
fontEngines = fontEngines.filter(engine => {
|
|
10
|
+
if (engine.type === 'canvas') {
|
|
11
|
+
return true;
|
|
12
|
+
}
|
|
13
|
+
console.warn(`SDF text rendering is not supported in canvas mode. The SDF text renderer will be ignored.`);
|
|
14
|
+
return false;
|
|
15
|
+
});
|
|
16
|
+
}
|
|
17
|
+
for (let i = 0; i < fontEngines.length; i++) {
|
|
18
|
+
const engine = fontEngines[i];
|
|
19
|
+
this.fontEngines[engine.type] = engine;
|
|
20
|
+
engine.init(stage);
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
loadFont(rendererType, options) {
|
|
24
|
+
const rendererTypeKey = String(rendererType);
|
|
25
|
+
const fontEngine = this.fontEngines[rendererTypeKey];
|
|
26
|
+
if (fontEngine === undefined) {
|
|
27
|
+
throw new Error(`Font handler for renderer type '${rendererTypeKey}' not found. Available types: ${Object.keys(this.fontEngines).join(', ')}`);
|
|
28
|
+
}
|
|
29
|
+
return fontEngine.font.loadFont(this.stage, options);
|
|
30
|
+
}
|
|
31
|
+
destroy() {
|
|
32
|
+
// Clean up resources if necessary
|
|
33
|
+
this.layoutCache.clear();
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
//# sourceMappingURL=TextGenerator.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TextGenerator.js","sourceRoot":"","sources":["../../../../src/core/text-rendering/TextGenerator.ts"],"names":[],"mappings":"AAGA,MAAM,CAAC,OAAO,OAAO,aAAa;IAKX;IAJb,WAAW,GAA4B,IAAI,GAAG,EAAE,CAAC;IAEzD,WAAW,GAAiC,EAAE,CAAC;IAE/C,YAAqB,KAAY,EAAE,WAA2B;QAAzC,UAAK,GAAL,KAAK,CAAO;QAC/B,IAAG,KAAK,CAAC,QAAQ,CAAC,IAAI,KAAK,QAAQ,EAAE,CAAC;YACpC,2GAA2G;YAC3G,WAAW,GAAG,WAAW,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE;gBACxC,IAAG,MAAM,CAAC,IAAI,KAAK,QAAQ,EAAE,CAAC;oBAC5B,OAAO,IAAI,CAAC;gBACd,CAAC;gBACD,OAAO,CAAC,IAAI,CAAC,4FAA4F,CAAC,CAAC;gBAC3G,OAAO,KAAK,CAAC;YACf,CAAC,CAAC,CAAC;QACL,CAAC;QAED,KAAI,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,WAAW,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE,CAAC;YAC3C,MAAM,MAAM,GAAG,WAAW,CAAC,CAAC,CAAE,CAAC;YAC/B,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,MAAM,CAAC;YACvC,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QACrB,CAAC;IACH,CAAC;IAGD,QAAQ,CAAC,YAA2B,EAAE,OAAwB;QAC5D,MAAM,eAAe,GAAG,MAAM,CAAC,YAAY,CAAC,CAAC;QAC7C,MAAM,UAAU,GAAG,IAAI,CAAC,WAAW,CAAC,eAAe,CAAC,CAAC;QAErD,IAAI,UAAU,KAAK,SAAS,EAAE,CAAC;YAC7B,MAAM,IAAI,KAAK,CACb,mCAAmC,eAAe,iCAAiC,MAAM,CAAC,IAAI,CAC5F,IAAI,CAAC,WAAW,CACjB,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE,CACf,CAAC;QACJ,CAAC;QAED,OAAO,UAAU,CAAC,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,EAAE,OAAO,CAAC,CAAC;IACvD,CAAC;IAED,OAAO;QAEL,kCAAkC;QAClC,IAAI,CAAC,WAAW,CAAC,KAAK,EAAE,CAAC;IAC3B,CAAC;CACF"}
|
|
@@ -220,14 +220,6 @@ export interface TrProps extends TrFontProps {
|
|
|
220
220
|
* Glyph layout information for WebGL rendering
|
|
221
221
|
*/
|
|
222
222
|
export interface GlyphLayout {
|
|
223
|
-
/**
|
|
224
|
-
* Unicode codepoint
|
|
225
|
-
*/
|
|
226
|
-
codepoint: number;
|
|
227
|
-
/**
|
|
228
|
-
* Glyph ID in the font atlas
|
|
229
|
-
*/
|
|
230
|
-
glyphId: number;
|
|
231
223
|
/**
|
|
232
224
|
* X position relative to text origin
|
|
233
225
|
*/
|
|
@@ -244,14 +236,6 @@ export interface GlyphLayout {
|
|
|
244
236
|
* Height of glyph in font units
|
|
245
237
|
*/
|
|
246
238
|
height: number;
|
|
247
|
-
/**
|
|
248
|
-
* X offset for glyph positioning
|
|
249
|
-
*/
|
|
250
|
-
xOffset: number;
|
|
251
|
-
/**
|
|
252
|
-
* Y offset for glyph positioning
|
|
253
|
-
*/
|
|
254
|
-
yOffset: number;
|
|
255
239
|
/**
|
|
256
240
|
* Atlas texture coordinates (normalized 0-1)
|
|
257
241
|
*/
|
|
@@ -265,9 +249,13 @@ export interface GlyphLayout {
|
|
|
265
249
|
*/
|
|
266
250
|
export interface TextLayout {
|
|
267
251
|
/**
|
|
268
|
-
*
|
|
252
|
+
* vertices for rendering quads in WebGL
|
|
269
253
|
*/
|
|
270
|
-
|
|
254
|
+
vertexBuffer: Float32Array;
|
|
255
|
+
/**
|
|
256
|
+
* glyph count in layout
|
|
257
|
+
*/
|
|
258
|
+
glyphCount: number;
|
|
271
259
|
/**
|
|
272
260
|
* Total text width
|
|
273
261
|
*/
|
|
@@ -292,6 +280,14 @@ export interface TextLayout {
|
|
|
292
280
|
* distanceRange used
|
|
293
281
|
*/
|
|
294
282
|
distanceRange: number;
|
|
283
|
+
/**
|
|
284
|
+
* number of lines that exceeded maxHeight and were truncated
|
|
285
|
+
*/
|
|
286
|
+
remainingLines: number;
|
|
287
|
+
/**
|
|
288
|
+
* Whether there is remaining text that exceeded maxHeight and was truncated
|
|
289
|
+
*/
|
|
290
|
+
hasRemainingText: boolean;
|
|
295
291
|
}
|
|
296
292
|
export interface FontLoadOptions {
|
|
297
293
|
fontFamily: string;
|
|
@@ -329,6 +325,16 @@ export interface TextRenderProps {
|
|
|
329
325
|
parentHasRenderTexture: boolean;
|
|
330
326
|
framebufferDimensions: unknown;
|
|
331
327
|
stage: Stage;
|
|
328
|
+
/**
|
|
329
|
+
* Mutable wrapper ref used by the SDF renderer to cache the underlying
|
|
330
|
+
* WebGLBuffer across frames. The SDF renderer reads and writes the
|
|
331
|
+
* `.current` property so the node's ref box is updated in-place.
|
|
332
|
+
* CoreTextNode owns the ref and is responsible for calling
|
|
333
|
+
* deleteBuffer when the buffer is no longer needed.
|
|
334
|
+
*/
|
|
335
|
+
glBufferRef: {
|
|
336
|
+
current: WebGLBuffer | null;
|
|
337
|
+
};
|
|
332
338
|
}
|
|
333
339
|
export interface TextRenderInfo {
|
|
334
340
|
width: number;
|
|
@@ -342,9 +348,9 @@ export interface TextRenderer {
|
|
|
342
348
|
type: 'canvas' | 'sdf';
|
|
343
349
|
font: FontHandler;
|
|
344
350
|
renderText: (props: CoreTextNodeProps) => TextRenderInfo;
|
|
345
|
-
|
|
346
|
-
renderQuads: (renderer: CoreRenderer, layout: TextLayout, vertexBuffer: Float32Array, renderProps: TextRenderProps) => void;
|
|
351
|
+
renderQuads: (renderer: CoreRenderer, layout: TextLayout, renderProps: TextRenderProps) => void;
|
|
347
352
|
init: (stage: Stage) => void;
|
|
353
|
+
clearCache: () => void;
|
|
348
354
|
}
|
|
349
355
|
/**
|
|
350
356
|
* Text line struct for text mapping
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { CoreTextNodeProps } from '../CoreTextNode.js';
|
|
1
2
|
/**
|
|
2
3
|
* Returns CSS font setting string for use in canvas context.
|
|
3
4
|
*
|
|
@@ -28,3 +29,4 @@ export declare function isSpace(space: string): boolean;
|
|
|
28
29
|
* @param text
|
|
29
30
|
*/
|
|
30
31
|
export declare function tokenizeString(tokenRegex: RegExp, text: string): string[];
|
|
32
|
+
export declare function getLayoutCacheKey(props: CoreTextNodeProps): string;
|
|
@@ -81,4 +81,7 @@ export function tokenizeString(tokenRegex, text) {
|
|
|
81
81
|
final.pop();
|
|
82
82
|
return final.filter((word) => word != '');
|
|
83
83
|
}
|
|
84
|
+
export function getLayoutCacheKey(props) {
|
|
85
|
+
return `${props.text}-${props.fontFamily}-${props.fontSize}-${props.letterSpacing}-${props.lineHeight}-${props.maxHeight}-${props.maxWidth}-${props.textAlign}-${props.wordBreak}-${props.maxLines}-${props.overflowSuffix}`;
|
|
86
|
+
}
|
|
84
87
|
//# sourceMappingURL=Utils.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Utils.js","sourceRoot":"","sources":["../../../../src/core/text-rendering/Utils.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;GAiBG;AAIH,MAAM,cAAc,GAAG,yCAAyC,CAAC;AAEjE;;;;;;;;;GASG;AACH,MAAM,UAAU,cAAc,CAC5B,QAA2B,EAC3B,SAAiB,EACjB,QAAgB,EAChB,SAAiB,EACjB,eAAuB;IAEvB,IAAI,EAAE,GAAG,QAAQ,CAAC;IAElB,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,EAAE,CAAC,EAAE,CAAC;QACvB,EAAE,GAAG,CAAC,EAAE,CAAC,CAAC;IACZ,CAAC;IAED,MAAM,GAAG,GAAa,EAAE,CAAC;IACzB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC;QAC1C,IAAI,KAAK,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC;QAClB,6EAA6E;QAC7E,gBAAgB;QAChB,IAAI,KAAK,KAAK,IAAI,IAAI,KAAK,KAAK,SAAS,EAAE,CAAC;YAC1C,KAAK,GAAG,eAAe,CAAC;QAC1B,CAAC;QACD,IAAI,KAAK,KAAK,OAAO,IAAI,KAAK,KAAK,YAAY,EAAE,CAAC;YAChD,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QAClB,CAAC;aAAM,CAAC;YACN,GAAG,CAAC,IAAI,CAAC,IAAI,KAAK,GAAG,CAAC,CAAC;QACzB,CAAC;IACH,CAAC;IAED,OAAO,GAAG,SAAS,IAAI,QAAQ,GAAG,SAAS,MAAM,GAAG,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC;AACnE,CAAC;AAED;;;;GAIG;AACH,MAAM,UAAU,iBAAiB,CAAC,KAAa;IAC7C,OAAO,cAAc,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,IAAI,CAAC;AAC7C,CAAC;AAED;;;;GAIG;AACH,MAAM,UAAU,OAAO,CAAC,KAAa;IACnC,OAAO,iBAAiB,CAAC,KAAK,CAAC,IAAI,KAAK,KAAK,GAAG,CAAC;AACnD,CAAC;AAED;;;;;GAKG;AACH,MAAM,UAAU,cAAc,CAAC,UAAkB,EAAE,IAAY;IAC7D,MAAM,UAAU,GAAG,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,IAAI,EAAE,CAAC;IAChD,MAAM,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,IAAI,EAAE,CAAC;IAE3C,MAAM,KAAK,GAAa,EAAE,CAAC;IAC3B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE,CAAC;QACtC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAE,EAAE,UAAU,CAAC,CAAC,CAAE,CAAC,CAAC;IACxC,CAAC;IACD,KAAK,CAAC,GAAG,EAAE,CAAC;IACZ,OAAO,KAAK,CAAC,MAAM,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,IAAI,EAAE,CAAC,CAAC;AAC5C,CAAC"}
|
|
1
|
+
{"version":3,"file":"Utils.js","sourceRoot":"","sources":["../../../../src/core/text-rendering/Utils.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;GAiBG;AAIH,MAAM,cAAc,GAAG,yCAAyC,CAAC;AAEjE;;;;;;;;;GASG;AACH,MAAM,UAAU,cAAc,CAC5B,QAA2B,EAC3B,SAAiB,EACjB,QAAgB,EAChB,SAAiB,EACjB,eAAuB;IAEvB,IAAI,EAAE,GAAG,QAAQ,CAAC;IAElB,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,EAAE,CAAC,EAAE,CAAC;QACvB,EAAE,GAAG,CAAC,EAAE,CAAC,CAAC;IACZ,CAAC;IAED,MAAM,GAAG,GAAa,EAAE,CAAC;IACzB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC;QAC1C,IAAI,KAAK,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC;QAClB,6EAA6E;QAC7E,gBAAgB;QAChB,IAAI,KAAK,KAAK,IAAI,IAAI,KAAK,KAAK,SAAS,EAAE,CAAC;YAC1C,KAAK,GAAG,eAAe,CAAC;QAC1B,CAAC;QACD,IAAI,KAAK,KAAK,OAAO,IAAI,KAAK,KAAK,YAAY,EAAE,CAAC;YAChD,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QAClB,CAAC;aAAM,CAAC;YACN,GAAG,CAAC,IAAI,CAAC,IAAI,KAAK,GAAG,CAAC,CAAC;QACzB,CAAC;IACH,CAAC;IAED,OAAO,GAAG,SAAS,IAAI,QAAQ,GAAG,SAAS,MAAM,GAAG,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC;AACnE,CAAC;AAED;;;;GAIG;AACH,MAAM,UAAU,iBAAiB,CAAC,KAAa;IAC7C,OAAO,cAAc,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,IAAI,CAAC;AAC7C,CAAC;AAED;;;;GAIG;AACH,MAAM,UAAU,OAAO,CAAC,KAAa;IACnC,OAAO,iBAAiB,CAAC,KAAK,CAAC,IAAI,KAAK,KAAK,GAAG,CAAC;AACnD,CAAC;AAED;;;;;GAKG;AACH,MAAM,UAAU,cAAc,CAAC,UAAkB,EAAE,IAAY;IAC7D,MAAM,UAAU,GAAG,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,IAAI,EAAE,CAAC;IAChD,MAAM,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,IAAI,EAAE,CAAC;IAE3C,MAAM,KAAK,GAAa,EAAE,CAAC;IAC3B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE,CAAC;QACtC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAE,EAAE,UAAU,CAAC,CAAC,CAAE,CAAC,CAAC;IACxC,CAAC;IACD,KAAK,CAAC,GAAG,EAAE,CAAC;IACZ,OAAO,KAAK,CAAC,MAAM,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,IAAI,EAAE,CAAC,CAAC;AAC5C,CAAC;AAED,MAAM,UAAU,iBAAiB,CAAC,KAAwB;IACxD,OAAO,GAAG,KAAK,CAAC,IAAI,IAAI,KAAK,CAAC,UAAU,IAAI,KAAK,CAAC,QAAQ,IAAI,KAAK,CAAC,aAAa,IAAI,KAAK,CAAC,UAAU,IAAI,KAAK,CAAC,SAAS,IAAI,KAAK,CAAC,QAAQ,IAAI,KAAK,CAAC,SAAS,IAAI,KAAK,CAAC,SAAS,IAAI,KAAK,CAAC,QAAQ,IAAI,KAAK,CAAC,cAAc,EAAE,CAAC;AAC/N,CAAC"}
|
|
@@ -624,4 +624,18 @@ export declare class RendererMain extends EventEmitter {
|
|
|
624
624
|
* ```
|
|
625
625
|
*/
|
|
626
626
|
set targetFPS(fps: number);
|
|
627
|
+
private windowDevicePixelRatio;
|
|
628
|
+
/**
|
|
629
|
+
* Close and destroy the renderer, releasing all resources.
|
|
630
|
+
*
|
|
631
|
+
* @remarks
|
|
632
|
+
* This method performs a full teardown of the renderer:
|
|
633
|
+
* - Stops the platform render loop
|
|
634
|
+
* - Destroys all scene nodes (including text node font resources)
|
|
635
|
+
* - Releases all texture memory and GPU resources
|
|
636
|
+
* - Terminates image worker threads
|
|
637
|
+
* - Removes the canvas element from the target div
|
|
638
|
+
* - Destroys the inspector if active
|
|
639
|
+
*/
|
|
640
|
+
close(): void;
|
|
627
641
|
}
|
|
@@ -95,7 +95,7 @@ export class RendererMain extends EventEmitter {
|
|
|
95
95
|
textureMemory: resolvedTxSettings,
|
|
96
96
|
boundsMargin: settings.boundsMargin || 0,
|
|
97
97
|
deviceLogicalPixelRatio: settings.deviceLogicalPixelRatio || 1,
|
|
98
|
-
devicePhysicalPixelRatio: settings.devicePhysicalPixelRatio ||
|
|
98
|
+
devicePhysicalPixelRatio: settings.devicePhysicalPixelRatio || this.windowDevicePixelRatio() || 1,
|
|
99
99
|
clearColor: settings.clearColor ?? 0x00000000,
|
|
100
100
|
fpsUpdateInterval: settings.fpsUpdateInterval || 0,
|
|
101
101
|
enableClear: settings.enableClear ?? true,
|
|
@@ -128,8 +128,10 @@ export class RendererMain extends EventEmitter {
|
|
|
128
128
|
this.canvas = platform.canvas;
|
|
129
129
|
this.canvas.width = deviceLogicalWidth * devicePhysicalPixelRatio;
|
|
130
130
|
this.canvas.height = deviceLogicalHeight * devicePhysicalPixelRatio;
|
|
131
|
-
this.canvas.style
|
|
132
|
-
|
|
131
|
+
if (this.canvas.style) {
|
|
132
|
+
this.canvas.style.width = `${deviceLogicalWidth}px`;
|
|
133
|
+
this.canvas.style.height = `${deviceLogicalHeight}px`;
|
|
134
|
+
}
|
|
133
135
|
// Initialize the stage
|
|
134
136
|
this.stage = new Stage({
|
|
135
137
|
appWidth,
|
|
@@ -482,5 +484,29 @@ export class RendererMain extends EventEmitter {
|
|
|
482
484
|
this.stage.options.targetFPS = fps > 0 ? fps : 0;
|
|
483
485
|
this.stage.updateTargetFrameTime();
|
|
484
486
|
}
|
|
487
|
+
windowDevicePixelRatio() {
|
|
488
|
+
return typeof window !== 'undefined' ? window.devicePixelRatio : undefined;
|
|
489
|
+
}
|
|
490
|
+
/**
|
|
491
|
+
* Close and destroy the renderer, releasing all resources.
|
|
492
|
+
*
|
|
493
|
+
* @remarks
|
|
494
|
+
* This method performs a full teardown of the renderer:
|
|
495
|
+
* - Stops the platform render loop
|
|
496
|
+
* - Destroys all scene nodes (including text node font resources)
|
|
497
|
+
* - Releases all texture memory and GPU resources
|
|
498
|
+
* - Terminates image worker threads
|
|
499
|
+
* - Removes the canvas element from the target div
|
|
500
|
+
* - Destroys the inspector if active
|
|
501
|
+
*/
|
|
502
|
+
close() {
|
|
503
|
+
// Destroy the inspector first
|
|
504
|
+
this.inspector?.destroy();
|
|
505
|
+
this.inspector = null;
|
|
506
|
+
// Destroy the stage (stops loop, destroys nodes, releases textures/GPU)
|
|
507
|
+
this.stage.destroy();
|
|
508
|
+
// Remove the canvas from the DOM
|
|
509
|
+
this.canvas.remove();
|
|
510
|
+
}
|
|
485
511
|
}
|
|
486
512
|
//# sourceMappingURL=Renderer.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Renderer.js","sourceRoot":"","sources":["../../../src/main-api/Renderer.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;GAiBG;AAGH,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;AACzD,OAAO,EAAE,YAAY,EAAE,uBAAuB,EAAE,MAAM,aAAa,CAAC;AACpE,OAAO,EAAE,KAAK,EAAqB,MAAM,kBAAkB,CAAC;AAC5D,OAAO,EAAE,QAAQ,EAAsB,MAAM,qBAAqB,CAAC;AACnE,OAAO,EAA0B,MAAM,yBAAyB,CAAC;AAajE,OAAO,EAAE,WAAW,EAAE,MAAM,sCAAsC,CAAC;AACnE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAgazD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkDG;AACH,MAAM,OAAO,YAAa,SAAQ,YAAY;IACnC,IAAI,CAAQ;IACZ,MAAM,CAAoB;IAC1B,KAAK,CAAQ;IACd,SAAS,GAAqB,IAAI,CAAC;IAE3C;;;;;;OAMG;IACH,YACE,QAAuC,EACvC,MAA6B;QAE7B,KAAK,EAAE,CAAC;QAER,MAAM,kBAAkB,GAAG,IAAI,CAAC,iBAAiB,CAC/C,QAAQ,CAAC,aAAa,IAAI,EAAE,CAC7B,CAAC;QAEF,QAAQ,GAAG;YACT,QAAQ,EAAE,QAAQ,CAAC,QAAQ,IAAI,IAAI;YACnC,SAAS,EAAE,QAAQ,CAAC,SAAS,IAAI,IAAI;YACrC,aAAa,EAAE,kBAAkB;YACjC,YAAY,EAAE,QAAQ,CAAC,YAAY,IAAI,CAAC;YACxC,uBAAuB,EAAE,QAAQ,CAAC,uBAAuB,IAAI,CAAC;YAC9D,wBAAwB,EACtB,QAAQ,CAAC,wBAAwB,IAAI,
|
|
1
|
+
{"version":3,"file":"Renderer.js","sourceRoot":"","sources":["../../../src/main-api/Renderer.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;GAiBG;AAGH,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;AACzD,OAAO,EAAE,YAAY,EAAE,uBAAuB,EAAE,MAAM,aAAa,CAAC;AACpE,OAAO,EAAE,KAAK,EAAqB,MAAM,kBAAkB,CAAC;AAC5D,OAAO,EAAE,QAAQ,EAAsB,MAAM,qBAAqB,CAAC;AACnE,OAAO,EAA0B,MAAM,yBAAyB,CAAC;AAajE,OAAO,EAAE,WAAW,EAAE,MAAM,sCAAsC,CAAC;AACnE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAgazD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkDG;AACH,MAAM,OAAO,YAAa,SAAQ,YAAY;IACnC,IAAI,CAAQ;IACZ,MAAM,CAAoB;IAC1B,KAAK,CAAQ;IACd,SAAS,GAAqB,IAAI,CAAC;IAE3C;;;;;;OAMG;IACH,YACE,QAAuC,EACvC,MAA6B;QAE7B,KAAK,EAAE,CAAC;QAER,MAAM,kBAAkB,GAAG,IAAI,CAAC,iBAAiB,CAC/C,QAAQ,CAAC,aAAa,IAAI,EAAE,CAC7B,CAAC;QAEF,QAAQ,GAAG;YACT,QAAQ,EAAE,QAAQ,CAAC,QAAQ,IAAI,IAAI;YACnC,SAAS,EAAE,QAAQ,CAAC,SAAS,IAAI,IAAI;YACrC,aAAa,EAAE,kBAAkB;YACjC,YAAY,EAAE,QAAQ,CAAC,YAAY,IAAI,CAAC;YACxC,uBAAuB,EAAE,QAAQ,CAAC,uBAAuB,IAAI,CAAC;YAC9D,wBAAwB,EACtB,QAAQ,CAAC,wBAAwB,IAAI,IAAI,CAAC,sBAAsB,EAAE,IAAI,CAAC;YACzE,UAAU,EAAE,QAAQ,CAAC,UAAU,IAAI,UAAU;YAC7C,iBAAiB,EAAE,QAAQ,CAAC,iBAAiB,IAAI,CAAC;YAClD,WAAW,EAAE,QAAQ,CAAC,WAAW,IAAI,IAAI;YACzC,SAAS,EAAE,QAAQ,CAAC,SAAS,IAAI,CAAC;YAClC,eAAe,EACb,QAAQ,CAAC,eAAe,KAAK,SAAS,CAAC,CAAC,CAAC,QAAQ,CAAC,eAAe,CAAC,CAAC,CAAC,CAAC;YACvE,gBAAgB,EAAE,QAAQ,CAAC,gBAAgB,IAAI,KAAK;YACpD,WAAW,EAAE,QAAQ,CAAC,WAAW,IAAI,KAAK;YAC1C,SAAS,EAAE,QAAQ,CAAC,SAAS,IAAI,KAAK;YACtC,gBAAgB,EAAE,QAAQ,CAAC,gBAAgB,IAAI,EAAE;YACjD,YAAY,EAAE,QAAQ,CAAC,YAAY;YACnC,cAAc,EAAE,QAAQ,CAAC,cAAc,IAAI,CAAC,GAAG,IAAI,GAAG,IAAI;YAC1D,WAAW,EAAE,QAAQ,CAAC,WAAW,IAAI,EAAE;YACvC,0BAA0B,EAAE,QAAQ,CAAC,0BAA0B,IAAI,EAAE;YACrE,MAAM,EAAE,QAAQ,CAAC,MAAM;YACvB,wBAAwB,EAAE,QAAQ,CAAC,wBAAwB,IAAI,MAAM;YACrE,QAAQ,EAAE,QAAQ,CAAC,QAAQ,IAAI,WAAW;YAC1C,aAAa,EAAE,QAAQ,CAAC,aAAa,IAAI,CAAC;SAC3C,CAAC;QAEF,MAAM,EACJ,QAAQ,EACR,SAAS,EACT,uBAAuB,EACvB,wBAAwB,EACxB,SAAS,GACV,GAAG,QAAgC,CAAC;QAErC,YAAY,CACV,QAAQ,CAAC,QAAQ,EACjB,iEAAiE,CAClE,CAAC;QAEF,sGAAsG;QACtG,MAAM,QAAQ,GAAG,IAAK,QAAQ,CAAC,QAAgB,CAAC;YAC9C,eAAe,EAAE,QAAQ,CAAC,eAAe;YACzC,WAAW,EAAE,QAAQ,CAAC,WAAW;YACjC,MAAM,EAAE,QAAQ,CAAC,MAAM;SACxB,CAAC,CAAC;QAEH,MAAM,kBAAkB,GAAG,QAAQ,GAAG,uBAAuB,CAAC;QAC9D,MAAM,mBAAmB,GAAG,SAAS,GAAG,uBAAuB,CAAC;QAEhE,gHAAgH;QAChH,IAAI,CAAC,MAAM,GAAG,QAAQ,CAAC,MAA4B,CAAC;QACpD,IAAI,CAAC,MAAM,CAAC,KAAK,GAAG,kBAAkB,GAAG,wBAAwB,CAAC;QAClE,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,mBAAmB,GAAG,wBAAwB,CAAC;QAEpE,IAAI,IAAI,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC;YACtB,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,GAAG,GAAG,kBAAkB,IAAI,CAAC;YACpD,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,GAAG,mBAAmB,IAAI,CAAC;QACxD,CAAC;QAED,uBAAuB;QACvB,IAAI,CAAC,KAAK,GAAG,IAAI,KAAK,CAAC;YACrB,QAAQ;YACR,SAAS;YACT,YAAY,EAAE,QAAQ,CAAC,YAAa;YACpC,UAAU,EAAE,QAAQ,CAAC,UAAW;YAChC,MAAM,EAAE,IAAI,CAAC,MAAM;YACnB,uBAAuB;YACvB,wBAAwB;YACxB,gBAAgB,EAAE,QAAQ,CAAC,gBAAiB;YAC5C,WAAW,EAAE,QAAQ,CAAC,WAAY;YAClC,iBAAiB,EAAE,QAAQ,CAAC,iBAAkB;YAC9C,WAAW,EAAE,QAAQ,CAAC,WAAY;YAClC,eAAe,EAAE,QAAQ,CAAC,eAAgB;YAC1C,YAAY,EAAE,QAAQ,CAAC,YAAa;YACpC,aAAa,EAAE,kBAAkB;YACjC,QAAQ,EAAE,IAAI;YACd,cAAc,EAAE,QAAQ,CAAC,cAAe;YACxC,WAAW,EAAE,QAAQ,CAAC,WAAY;YAClC,SAAS,EAAE,QAAQ,CAAC,SAAS,KAAK,IAAI;YACtC,SAAS,EAAE,QAAQ,CAAC,SAAU;YAC9B,0BAA0B,EAAE,QAAQ,CAAC,0BAA2B;YAChE,wBAAwB,EAAE,QAAQ,CAAC,wBAAyB;YAC5D,QAAQ;YACR,aAAa,EAAE,QAAQ,CAAC,aAAa,IAAI,CAAC;SAC3C,CAAC,CAAC;QAEH,wBAAwB;QACxB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,IAAwB,CAAC;QAEhD,qDAAqD;QACrD,IAAI,MAAM,EAAE,CAAC;YACX,IAAI,QAA4B,CAAC;YACjC,IAAI,OAAO,MAAM,KAAK,QAAQ,EAAE,CAAC;gBAC/B,QAAQ,GAAG,QAAQ,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC;YAC7C,CAAC;iBAAM,CAAC;gBACN,QAAQ,GAAG,MAAM,CAAC;YACpB,CAAC;YAED,IAAI,CAAC,QAAQ,EAAE,CAAC;gBACd,MAAM,IAAI,KAAK,CAAC,+BAA+B,CAAC,CAAC;YACnD,CAAC;YAED,QAAQ,CAAC,WAAW,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;QACpC,CAAC;aAAM,IAAI,QAAQ,CAAC,MAAM,KAAK,IAAI,CAAC,MAAM,EAAE,CAAC;YAC3C,MAAM,IAAI,KAAK,CACb,8DAA8D,CAC/D,CAAC;QACJ,CAAC;QAED,oCAAoC;QACpC,IAAI,SAAS,IAAI,uBAAuB,KAAK,KAAK,EAAE,CAAC;YACnD,IAAI,CAAC,SAAS,GAAG,IAAI,SAAS,CAC5B,IAAI,CAAC,MAAM,EACX,QAAgC,CACjC,CAAC;QACJ,CAAC;IACH,CAAC;IAED;;;;;OAKG;IACK,iBAAiB,CACvB,aAAoD;QAEpD,MAAM,iBAAiB,GACrB,CAAC,IAAI,CAAC,KAAK,IAAI,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,aAAa,CAAC,IAAI,EAAE,CAAC;QAEzD,OAAO;YACL,iBAAiB,EACf,aAAa,EAAE,iBAAiB;gBAChC,iBAAiB,EAAE,iBAAiB;gBACpC,KAAK;YACP,oBAAoB,EAClB,aAAa,EAAE,oBAAoB;gBACnC,iBAAiB,EAAE,oBAAoB;gBACvC,GAAG;YACL,eAAe,EACb,aAAa,EAAE,eAAe;gBAC9B,iBAAiB,EAAE,eAAe;gBAClC,IAAI;YACN,YAAY,EACV,aAAa,EAAE,YAAY,IAAI,iBAAiB,EAAE,YAAY,IAAI,KAAK;YACzE,wBAAwB,EACtB,aAAa,EAAE,wBAAwB;gBACvC,iBAAiB,EAAE,wBAAwB;gBAC3C,IAAI;YACN,4BAA4B,EAC1B,aAAa,EAAE,4BAA4B;gBAC3C,iBAAiB,EAAE,4BAA4B;gBAC/C,KAAK;SACR,CAAC;IACJ,CAAC;IAED;;;;;;;;;;;;;;OAcG;IACH,UAAU,CACR,KAAkC;QAElC,MAAM,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,KAA+B,CAAC,CAAC;QAEpE,IAAI,IAAI,CAAC,SAAS,EAAE,CAAC;YACnB,OAAO,IAAI,CAAC,SAAS,CAAC,UAAU,CAAC,IAAI,CAA6B,CAAC;QACrE,CAAC;QAED,OAAO,IAAgC,CAAC;IAC1C,CAAC;IAED;;;;;;;;;;;;;OAaG;IACH,cAAc,CAAC,KAA8B;QAC3C,MAAM,QAAQ,GAAG,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,KAA0B,CAAC,CAAC;QAEvE,IAAI,IAAI,CAAC,SAAS,EAAE,CAAC;YACnB,OAAO,IAAI,CAAC,SAAS,CAAC,cAAc,CAAC,QAAQ,CAAyB,CAAC;QACzE,CAAC;QAED,OAAO,QAAgC,CAAC;IAC1C,CAAC;IAED;;;;;;;;OAQG;IACH,WAAW,CAAC,IAAW;QACrB,IAAI,IAAI,CAAC,SAAS,EAAE,CAAC;YACnB,IAAI,CAAC,SAAS,CAAC,WAAW,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;QACtC,CAAC;QAED,OAAO,IAAI,CAAC,OAAO,EAAE,CAAC;IACxB,CAAC;IAED;;;;;;;;;;;;;;OAcG;IACH,aAAa,CACX,WAAmB,EACnB,KAAuC;QAEvC,OAAO,IAAI,CAAC,KAAK,CAAC,SAAS,CAAC,aAAa,CAAC,WAAW,EAAE,KAAK,CAAC,CAAC;IAChE,CAAC;IAED;;;;;;;;;;;;;;OAcG;IACH,YAAY,CACV,MAAc,EACd,KAAmC;QAEnC,OAAO,IAAI,CAAC,KAAK,CAAC,SAAS,CAAC,YAAY,CAAC,MAAM,EAAE,KAAK,CAErD,CAAC;IACJ,CAAC;IAED;;;;;OAKG;IACH,WAAW,CAAC,EAAU;QACpB,MAAM,IAAI,GAAG,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC;QAC9B,IAAI,CAAC,IAAI,EAAE,CAAC;YACV,OAAO,IAAI,CAAC;QACd,CAAC;QAED,MAAM,QAAQ,GAAG,CAAC,IAAc,EAAmB,EAAE;YACnD,IAAI,IAAI,CAAC,EAAE,KAAK,EAAE,EAAE,CAAC;gBACnB,OAAO,IAAI,CAAC;YACd,CAAC;YAED,KAAK,MAAM,KAAK,IAAI,IAAI,CAAC,QAAQ,EAAE,CAAC;gBAClC,MAAM,KAAK,GAAG,QAAQ,CAAC,KAAK,CAAC,CAAC;gBAC9B,IAAI,KAAK,EAAE,CAAC;oBACV,OAAO,KAAK,CAAC;gBACf,CAAC;YACH,CAAC;YAED,OAAO,IAAI,CAAC;QACd,CAAC,CAAC;QAEF,OAAO,QAAQ,CAAC,IAAI,CAAC,CAAC;IACxB,CAAC;IAED,YAAY;QACV,MAAM,IAAI,KAAK,CAAC,iBAAiB,CAAC,CAAC;IACrC,CAAC;IAED,YAAY;QACV,MAAM,IAAI,KAAK,CAAC,iBAAiB,CAAC,CAAC;IACrC,CAAC;IAED,aAAa;QACX,OAAO,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,aAAa,EAAE,CAAC;IAC7C,CAAC;IAED;;;;;;;;OAQG;IACH,QAAQ;QACN,IAAI,CAAC,KAAK,CAAC,aAAa,EAAE,CAAC;IAC7B,CAAC;IAED;;;;;;;;;;;;;;;;;OAiBG;IACH,OAAO;QACL,IAAI,CAAC,KAAK,CAAC,OAAO,EAAE,CAAC;IACvB,CAAC;IAED;;;;OAIG;IACH,aAAa,CAAC,KAAa;QACzB,IAAI,CAAC,KAAK,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;IAClC,CAAC;IAED;;;;OAIG;IACH,UAAU,CAAC,OAAyC;QAClD,MAAM,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC;QACzB,IAAI,OAAO,CAAC,aAAa,KAAK,SAAS,EAAE,CAAC;YACxC,MAAM,aAAa,GAAG,CAAC,OAAO,CAAC,aAAa,GAAG,IAAI,CAAC,iBAAiB,CACnE,OAAO,CAAC,aAAa,CACtB,CAAC,CAAC;YACH,KAAK,CAAC,YAAY,CAAC,cAAc,CAAC,aAAa,CAAC,CAAC;YACjD,KAAK,CAAC,YAAY,CAAC,OAAO,EAAE,CAAC;QAC/B,CAAC;QAED,IAAI,OAAO,CAAC,YAAY,KAAK,SAAS,EAAE,CAAC;YACvC,IAAI,EAAE,GAAG,OAAO,CAAC,YAAa,CAAC;YAC/B,OAAO,CAAC,YAAY,GAAG,KAAK,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;QACnE,CAAC;QAED,MAAM,YAAY,GAAG,KAAK,CAAC,OAAO,CAAC;QACnC,KAAK,IAAI,GAAG,IAAI,OAAO,EAAE,CAAC;YACxB,YAAY,CAAC,GAAG,CAAC,GAAG,OAAO,CAAC,GAAG,CAAE,CAAC;QACpC,CAAC;QAED,IAAI,OAAO,CAAC,SAAS,KAAK,SAAS,IAAI,CAAC,uBAAuB,EAAE,CAAC;YAChE,IAAI,OAAO,CAAC,SAAS,KAAK,KAAK,EAAE,CAAC;gBAChC,IAAI,CAAC,SAAS,EAAE,OAAO,EAAE,CAAC;gBAC1B,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;YACxB,CAAC;iBAAM,IACL,IAAI,CAAC,SAAS,KAAK,IAAI;gBACvB,IAAI,CAAC,SAAS,CAAC,WAAW,KAAK,OAAO,CAAC,SAAS,EAChD,CAAC;gBACD,IAAI,CAAC,SAAS,GAAG,IAAI,OAAO,CAAC,SAAS,CACpC,IAAI,CAAC,MAAM,EACX,KAAK,CAAC,OAA0C,CACjD,CAAC;gBACF,IAAI,CAAC,SAAS,EAAE,WAAW,CAAC,IAAI,CAAC,IAA2B,CAAC,CAAC;YAChE,CAAC;QACH,CAAC;QAED,IAAI,oBAAoB,GAAG,KAAK,CAAC;QAEjC,IACE,OAAO,CAAC,uBAAuB;YAC/B,OAAO,CAAC,wBAAwB,KAAK,SAAS,EAC9C,CAAC;YACD,IAAI,CAAC,KAAK,CAAC,UAAU;gBACnB,YAAY,CAAC,wBAAwB;oBACrC,YAAY,CAAC,uBAAuB,CAAC;YACvC,IAAI,CAAC,SAAS,EAAE,cAAc,CAC5B,YAAY,CAAC,QAAQ,EACrB,YAAY,CAAC,SAAS,EACtB,YAAY,CAAC,uBAAuB,CACrC,CAAC;YACF,oBAAoB,GAAG,IAAI,CAAC;QAC9B,CAAC;QAED,IAAI,OAAO,CAAC,QAAQ,KAAK,SAAS,IAAI,OAAO,CAAC,SAAS,KAAK,SAAS,EAAE,CAAC;YACtE,IAAI,CAAC,SAAS,EAAE,cAAc,CAC5B,YAAY,CAAC,QAAQ,EACrB,YAAY,CAAC,SAAS,EACtB,YAAY,CAAC,uBAAuB,CACrC,CAAC;YACF,oBAAoB,GAAG,IAAI,CAAC;QAC9B,CAAC;QAED,IAAI,OAAO,CAAC,YAAY,KAAK,SAAS,EAAE,CAAC;YACvC,IAAI,CAAC,KAAK,CAAC,eAAe,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC;QACnD,CAAC;QAED,IAAI,OAAO,CAAC,UAAU,KAAK,SAAS,EAAE,CAAC;YACrC,IAAI,CAAC,KAAK,CAAC,aAAa,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC;QAC/C,CAAC;QAED,IAAI,oBAAoB,EAAE,CAAC;YACzB,IAAI,CAAC,mBAAmB,EAAE,CAAC;QAC7B,CAAC;IACH,CAAC;IAEO,mBAAmB;QACzB,MAAM,EACJ,QAAQ,EACR,SAAS,EACT,uBAAuB,EACvB,wBAAwB,GACzB,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC;QAEvB,MAAM,kBAAkB,GAAG,QAAQ,GAAG,uBAAuB,CAAC;QAC9D,MAAM,mBAAmB,GAAG,SAAS,GAAG,uBAAuB,CAAC;QAEhE,IAAI,CAAC,MAAM,CAAC,KAAK,GAAG,kBAAkB,GAAG,wBAAwB,CAAC;QAClE,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,mBAAmB,GAAG,wBAAwB,CAAC;QAEpE,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,GAAG,GAAG,kBAAkB,IAAI,CAAC;QACpD,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,GAAG,mBAAmB,IAAI,CAAC;QAEtD,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,cAAc,EAAE,CAAC;QAErC,IAAI,CAAC,IAAI,CAAC,CAAC,GAAG,QAAQ,CAAC;QACvB,IAAI,CAAC,IAAI,CAAC,CAAC,GAAG,SAAS,CAAC;QACxB,IAAI,CAAC,KAAK,CAAC,oBAAoB,EAAE,CAAC;IACpC,CAAC;IAED,IAAI,QAAQ;QACV,OAAO,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC;IAC5B,CAAC;IAED;;;;;;;;OAQG;IACH,IAAI,SAAS;QACX,OAAO,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,SAAS,IAAI,CAAC,CAAC;IAC3C,CAAC;IAED;;;;;;;;;;;;;;;;;;;OAmBG;IACH,IAAI,SAAS,CAAC,GAAW;QACvB,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,SAAS,GAAG,GAAG,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;QACjD,IAAI,CAAC,KAAK,CAAC,qBAAqB,EAAE,CAAC;IACrC,CAAC;IAEO,sBAAsB;QAC5B,OAAO,OAAO,MAAM,KAAK,WAAW,CAAC,CAAC,CAAC,MAAM,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;IAC7E,CAAC;IAED;;;;;;;;;;;OAWG;IACH,KAAK;QACH,8BAA8B;QAC9B,IAAI,CAAC,SAAS,EAAE,OAAO,EAAE,CAAC;QAC1B,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;QAEtB,wEAAwE;QACxE,IAAI,CAAC,KAAK,CAAC,OAAO,EAAE,CAAC;QAErB,iCAAiC;QACjC,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC;IACvB,CAAC;CACF"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"fileNames":["../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es5.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.dom.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/env.d.ts","../src/utils.ts","../src/core/utils.ts","../src/common/IEventEmitter.ts","../src/common/EventEmitter.ts","../src/core/animations/CoreAnimation.ts","../src/core/animations/AnimationManager.ts","../src/core/renderers/CoreShaderNode.ts","../src/core/renderers/CoreShaderProgram.ts","../src/core/CoreShaderManager.ts","../src/core/renderers/webgl/internal/WebGlUtils.ts","../src/core/platforms/web/WebGlContextWrapper.ts","../src/core/platforms/Platform.ts","../src/core/platforms/web/lib/textureCompression.ts","../src/core/textures/ImageTexture.ts","../src/core/textures/SubTexture.ts","../src/core/TextureMemoryManager.ts","../src/core/renderers/CoreContextTexture.ts","../src/core/TextureError.ts","../src/core/textures/Texture.ts","../src/core/platforms/GlContextWrapper.ts","../src/core/renderers/webgl/internal/ShaderUtils.ts","../src/core/lib/utils.ts","../src/core/lib/Matrix3d.ts","../src/core/CoreTextNode.ts","../src/core/text-rendering/TextRenderer.ts","../src/core/lib/ContextSpy.ts","../src/main-api/utils.ts","../src/core/textures/ColorTexture.ts","../src/core/platforms/web/lib/ImageWorker.ts","../src/core/platforms/web/lib/ImageWorkerDefault.ts","../src/core/platforms/web/lib/utils.ts","../src/core/platforms/web/lib/textureSvg.ts","../src/core/platforms/web/WebPlatform.ts","../src/common/IAnimationController.ts","../src/main-api/INode.ts","../src/core/lib/colorParser.ts","../src/core/renderers/canvas/CanvasTexture.ts","../src/core/lib/colorCache.ts","../src/core/renderers/canvas/CanvasShaderNode.ts","../src/core/renderers/canvas/CanvasRenderer.ts","../src/core/renderers/CoreRenderOp.ts","../src/core/renderers/webgl/internal/RendererUtils.ts","../src/core/renderers/webgl/WebGlCtxTexture.ts","../src/core/renderers/webgl/internal/BufferCollection.ts","../src/core/shaders/webgl/Default.ts","../src/core/renderers/webgl/WebGlShaderProgram.ts","../src/core/renderers/webgl/WebGlShaderNode.ts","../src/core/renderers/webgl/SdfRenderOp.ts","../src/core/renderers/webgl/WebGlCtxSubTexture.ts","../src/core/textures/RenderTexture.ts","../src/core/renderers/webgl/WebGlCtxRenderTexture.ts","../src/core/renderers/webgl/WebGlRenderer.ts","../src/main-api/Inspector.ts","../src/main-api/Renderer.ts","../src/core/Stage.ts","../src/core/renderers/CoreRenderer.ts","../src/core/textures/NoiseTexture.ts","../src/core/CoreTextureManager.ts","../src/core/lib/RenderCoords.ts","../src/core/animations/CoreAnimationController.ts","../src/core/Autosizer.ts","../src/core/lib/collectionUtils.ts","../src/core/CoreNode.ts","../src/common/CommonTypes.ts","../src/core/platforms/web/lib/ImageWorkerNoOptions.ts","../src/core/platforms/web/WebPlatformChrome50.ts","../src/core/platforms/web/lib/ImageWorkerLegacy.ts","../src/core/platforms/web/WebPlatformLegacy.ts","../src/core/platforms/web/WebPlatformNext.ts","../src/core/platforms/web/lib/createImageBitmap.ts","../src/core/shaders/utils.ts","../src/core/shaders/templates/BorderTemplate.ts","../src/core/shaders/canvas/Border.ts","../src/core/shaders/templates/HolePunchTemplate.ts","../src/core/shaders/canvas/utils/render.ts","../src/core/shaders/canvas/HolePunch.ts","../src/core/shaders/templates/LinearGradientTemplate.ts","../src/core/shaders/canvas/LinearGradient.ts","../src/core/shaders/templates/RadialGradientTemplate.ts","../src/core/shaders/canvas/RadialGradient.ts","../src/core/shaders/templates/RoundedTemplate.ts","../src/core/shaders/canvas/Rounded.ts","../src/core/shaders/templates/RoundedWithBorderTemplate.ts","../src/core/shaders/canvas/RoundedWithBorder.ts","../src/core/shaders/templates/ShadowTemplate.ts","../src/core/shaders/templates/RoundedWithBorderAndShadowTemplate.ts","../src/core/shaders/canvas/Shadow.ts","../src/core/shaders/canvas/RoundedWithBorderAndShadow.ts","../src/core/shaders/templates/RoundedWithShadowTemplate.ts","../src/core/shaders/canvas/RoundedWithShadow.ts","../src/core/shaders/webgl/Border.ts","../src/core/shaders/webgl/DefaultBatched.ts","../src/core/shaders/webgl/HolePunch.ts","../src/core/shaders/webgl/LinearGradient.ts","../src/core/shaders/webgl/RadialGradient.ts","../src/core/shaders/webgl/Rounded.ts","../src/core/shaders/webgl/RoundedWithBorder.ts","../src/core/shaders/webgl/RoundedWithBorderAndShadow.ts","../src/core/shaders/webgl/Shadow.ts","../src/core/shaders/webgl/RoundedWithShadow.ts","../src/core/shaders/webgl/SdfShader.ts","../src/core/text-rendering/Utils.ts","../src/core/text-rendering/TextLayoutEngine.ts","../src/core/text-rendering/CanvasFontHandler.ts","../src/core/text-rendering/CanvasTextRenderer.ts","../src/core/text-rendering/SdfFontHandler.ts","../src/core/text-rendering/SdfTextRenderer.ts","../exports/canvas-shaders.ts","../exports/canvas.ts","../exports/index.ts","../exports/inspector.ts","../exports/platform.ts","../exports/utils.ts","../exports/webgl-shaders.ts","../exports/webgl.ts"],"fileIdsList":[[98,132,135,137,139,141,143,146,147,149],[96,98,99,164],[61,64,66,73,75,77,78,80,83,84,93,94,102,105,111,112,113,114,117,122,123,131,133,136,138,140,144],[112],[70,71,79,92,125,127,128],[60,61,63,81],[104,106,150,152,153,154,155,156,157,158,159],[102,106,111,166,173],[77,122],[62],[81,122],[60,63,64,66,78,81,82,93,102,103,111,114,115,117,118,119,120,121,123],[60,66,67,114],[78,81,82,84,114,115,122,123],[63,71,73,74,77,78,87,109,114,115,116],[60,63,65,66,68,71,75,78,81,83,84,85,86,87,92,113,115,117,122,123],[60,61,78,114],[64],[60,61,63,122],[60,63,64,65,93,123],[122],[95],[80],[78,80],[70,73,79,114],[69,78,79,80],[70,71,72,73,79,88,89,90,91,114],[73,88,92,124],[71,73,88,90,92,126],[92],[73],[70,73,78],[60,73],[75,78],[66,67,76,78,85,114,122],[60,114,122],[74,76,78,95,96,97,98,114,115,122],[66,97,114,122],[60,76,95,123],[81,100,102,103,106,111,114,123],[75,79,81,102,109,123],[60,74,75,78,79,102,123],[60,75,76,78,79,81,101,123],[71,74,76,78,79,81,101,102,103,104,105,106,107,108,109,110,114,115,122,123],[66,79,80,81,105,111,114,122],[67,79,80,102,103,104,106,111,122],[79],[80,81,95,98,131],[80,81,98,133,134],[98,136],[98,138],[80,81,98,134,140],[80,81,98,132,134,141,142],[80,81,98,134,143,145,146],[80,81,98,134,141,146,148],[80,98,134,144],[66,80,130],[66,130],[66],[66,130,131,140,144],[66,130,131,140],[66,130,140,144],[60,80],[80,106,131],[106],[80,81,106,133],[80,81,106,111,136],[81,106,111,122,138],[80,81,106,122,140],[80,81,106,122,142],[80,81,106,122,145],[80,81,106,122,148,158],[81,106],[106,144],[83,84,114,122,161,162],[60,83,84,114,161,162,163],[73,83,84,114,122,161,162],[60,83,84,102,103,106,107,111,114,115,160,161,162,165],[84],[83,114,115],[78,117],[71,72,78,117],[60,73,78,117,123],[63,74,76,77,81,117,123],[64,66,83,93,122],[60,64,78,83,93,113,122],[60,63,66,68,71,75,83,84,92,94,99,111,112,114,117,122]],"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":"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":"5ba0a094f93834bf1d227ddfb621d45ffe5b37e4dfe0b8518cdb769713f86633","affectsGlobalScope":true,"impliedFormat":99},{"version":"51d08744a73f37d742991a8c1520cddb5b4467be59d51cf323ab648689b773c8","signature":"fd1af2ef5ae768945eeffcdeeb952b99d60c62a80a2e6a5d4fa12810c1c9acd4","impliedFormat":99},{"version":"ba0436dc1e7dd857a26192df6d04aa3c8d5ae9b619f2530ce4e1ccf73b423638","signature":"ee40f42d658eb673fa53ff333ab90b838d3d4397fcf6a4ce49cfba5202f7c4ab","impliedFormat":99},{"version":"5de4a2417fe760f83ce7c2e9e54067e98cd4152d76536003ef991fb737b161ea","signature":"11f10eef6b087b59bd9e527db506274380a36587a1bff3450e220ad7ec2ce45e","impliedFormat":99},{"version":"42637ec4fa701148d4feb23a2964911e95126f46f167fbccb406bc12729c7430","signature":"881f25b23cf946459048e2d76abdbb7056c728a15d92d20f2e76af12725cee7e","impliedFormat":99},{"version":"be89b93c8c4ba8bbf6978db90a2cb8b1c8a82f5b18ab222949b5875964bf174e","signature":"57c524f11a2ccc3fbb107176c4fbfdffa7159848bd8753a0197fb2a04c6d3c77","impliedFormat":99},{"version":"2f14e768b6006e0c9217f4f2d61ee87125118db122f239ea2b9f6269483696c1","signature":"86af1ef9e30559df431a169a1f9d87bc81421080efff8b87c971e75a54db67dd","impliedFormat":99},{"version":"6ae1dbd5661f184b6f78a55e139365b2fbee940b12e895fe16b272a850ff3459","signature":"c1a0fd4511bbf56aedef22aba390ce4fffcef26adaec16684eea65a35e408b66","impliedFormat":99},{"version":"13efb809be1e53bb68e743278191453b4c49183787d9c6e9d9f0bbc9397ec5e6","signature":"97326a2f5f0fce22509018fe77795cb2313d61f1ef71eff134612c81ec2ac600","impliedFormat":99},{"version":"0b64f0264b09bb808e8de6f7cd615395bc16c7eb367fcd5c54a5056b5bf5adcb","signature":"6dde36af67f486d0925af4ba0339e7a66b7f71fd36f1a4d928869ccbf4dfdda0","impliedFormat":99},{"version":"c1e884d41fb830745a0de5126e20c3b9f8cdd3940623cfacf57cf98b0a65d402","signature":"8e859e1af27f614aae3f8d163c831280e842bda6c53f11c60b78deaedcff6d92","impliedFormat":99},{"version":"e9d216f0e19aa76dfbd4c84c0cb58c7592656bad123edba102d092db1d9051fc","signature":"1ec2e11f88da9138973dd7f5bec75620929b5779f689b4cd53c82a5b68605026","impliedFormat":99},{"version":"4d8040cafb0fd27c024883bab7469561aefecc633b3d41b8c3ec9ff5cd478f3e","signature":"ce373bd47e1d078abcc10e037afbc52fae41284c23b679ec533f5e2de948740d","impliedFormat":99},{"version":"7506c9793143aa85897195bc356a28bac0c77a4969d32c968e18129c66969eb8","signature":"2cd450a808b6a4643287fc23d522957dfae443fad5680b646f2945c52d126fcb","impliedFormat":99},{"version":"3cf008509f915b508569b6fb740a139aba87ee37a69acacb19d36679cece1067","signature":"050b367212e3e86d6472ee25ebfa88f23a0691a98dd20e7dd7489dab5313d2c8","impliedFormat":99},{"version":"9e539779a0e8db554d5aca38c354bb863b694b7ac191a350b134300815e7683f","signature":"178bbaca724c8e19c6e3be26bbacb719daad5c0f3a5e3a2a645bae5b187edc48","impliedFormat":99},{"version":"66aa16fd53e49d3c126b1f14031bdb04a1bb4a77f144cdb87996c848d0d6480a","signature":"09333de2a7b46780e840f7e6cd51de5620ca8b9b84f540854058169a0fb87820","impliedFormat":99},{"version":"f8bb12172e9e15b67dd4f651bfbb0940b8ef8d8edc89e98220e479134936d7fb","signature":"7fa0036a92ef198a2140758b695b615596e7860cde2f8f50dc8772f1ae23fde0","impliedFormat":99},{"version":"eb5ebb320aa1183949c8d38cbb1d1a4adb66d89c2eabe482d06cbfcbb623a5c8","signature":"a99803c578fe88e219cf00596426fe7a7d4562fff03a9c2814b84e9d0b6a23df","impliedFormat":99},{"version":"824b17541616f7891dec3c133bda3846a91b6ceddf5c221b11606bef1a05d842","signature":"25ce49c3576ca9d969630d1fba75b742f37784c6c51a690743bfb1e516d7ec0c","impliedFormat":99},{"version":"b9e81a3da39763161010c4dcb6d12f4460ffc36eb775bef384c4e36a7fbb4cfc","signature":"ecdc1ca4120d9799a56b7d8dd589df68cf4fdba08b533e5b2e1950d1b3d60006","impliedFormat":99},{"version":"70a0b4888a5fdc0f94a6d4b9327b0e428b432c71cb96a3b3699d082c171a3c86","signature":"2fb80582116f4b75789f9cb20713774950ddb3196863bc0c30e8c649ff43a6f2","impliedFormat":99},{"version":"c95ab3cb063622388d9e49e976bab8e5805e53a3ea74dbabd41b7f1e15ab230d","signature":"208a5854bcfb067c89fbaa71b9b0d643d0c87b63d2652c20cf8d97dc18b95add","impliedFormat":99},{"version":"00225081075bead20c946a2202ff71bbc0c0d881a37299a85153534b8db95ead","signature":"82b4959cc8e78b6523427a16b137e53509dbae64f14851b999756aaffe318ce7","impliedFormat":99},{"version":"c9658f3b7195e92997293514f21580db33409d7b6ae0a5e261c5de100b12adb7","signature":"8895501a1adfa3c7436a5016eeca48eb6a7c26e7b73e80c52b008d734a1c37b7","impliedFormat":99},{"version":"09b00d183c6b3d0a9f61d8c81748a0ed32f973c099c342e36f9d8d7c7a644fdb","signature":"c1e47438480b259fd6292c2e59d10059e1c76d1795d46b8271a1636932f2f715","impliedFormat":99},{"version":"91fc62e55e9c0e46aeb37d1286e50805ea903c159ae1bf544f5ee54b5717995d","signature":"826d87ec474ecd59c827441df44d49f420dbe099333c3344e31dfada8cc39902","impliedFormat":99},{"version":"7f6e6e6104931e7907c74e53d336094350978646d9c02c2a205ffcea90b58e61","signature":"f02942f8ae408270e572fa4c23aca8f42b496b83a836bfc8cec4f559e8ce1125","impliedFormat":99},{"version":"9a729c87e869555d84041be47223a22bdea8b5bfc73a4f65a28866c8afd47b17","signature":"68cfd7feb1396181cc75d8cfbd95ae5e76e2ffee3c99aeb04e4d3175737c7a97","impliedFormat":99},{"version":"6aa33d25a99620395dd2f796dda36819ec88e3ddd233ea0fb7c101e3f08cc0dd","signature":"348b04d01c12484b0bcf0b51459ec6484e39c372dff8955829e9e35212eec213","impliedFormat":99},{"version":"4a79889f8577b7d5afd98b71a3d55295b1e39e153f78b907cd109713d70db9c9","signature":"0901521f88b1ff86af8ce6c58a6be3e0878d09587051931d934921d23c455375","impliedFormat":99},{"version":"19e4b1b3c142e250ba5403b4dcae1d943adaea2066816be4556c3efd6891b48e","signature":"1ef2b085e389863587d5c7c7d13140c64c9777d1de27fb5dbf624cea67a0fce0","impliedFormat":99},{"version":"368e5d7d8adb1d06a0d13fa66d4de51b7597e27c9081d547338d3f45cf931131","signature":"3a40830fa52d8c298f98360c96529c2be63dad326d0007af0d111538ce8d6901","impliedFormat":99},{"version":"0ed708bafdea54b669cf594c143de04a22a2bb9f69dbc8ffef3d681cfda5e9d6","signature":"e67a9dd698238f69378fdc73412c0fc83eb34e08a336aa2e194e111c02a4a36d","impliedFormat":99},{"version":"cd3353c087e03546d356d446993cf1347c13de8650914068988c06c3f5c1d4bc","signature":"18ba5f48d81404839647f24a785897883dc699b89397499eea03ae01cc88075c","impliedFormat":99},{"version":"acab9e99a2de0d1d20a7451ecbbdedc4d0372c3fc725f582b46688981520155e","signature":"06dcab8f25e15fdc5e573e9d552a55fd8bdd35830647d211e2e392d9f81f7f3c","impliedFormat":99},{"version":"93d6bb317f0d77cf8ea12575ff3951f7dd1b54db0fe20ecbbbcd3d9963da625e","signature":"566b53d6bd25dd8a6d93ef387b4a0ae8a795c1ea4854298c3a328fc6712aebb5","impliedFormat":99},{"version":"3f82e7cef37ef702eb56571d83a0e53acbe82e7fd4c731db2bcaad3f1bf80e6c","signature":"a3802aaf9d8320c01fa1156886402ae5383f9e49f104c261b1e3203c72c89dbc","impliedFormat":99},{"version":"f309bd228e2982f60f7ed817323e80d1187c1520248ae02059bd93d23eaa1acf","signature":"2885b4f117dd1d518624b16d3993749c17042fe5d799b60a46d9654d45fc1be1","impliedFormat":99},{"version":"7f205f17b22dd2ab59ed5991e6fb4dc76ebcf6a1efb91bca19457775b4097eaa","signature":"70dd0bd75de1a7b08011eddfacc2d0f1787ff28e7c588b860af4579a0dbc941f","impliedFormat":99},{"version":"fd97fef3fce1fba45888b97a55a2e7e8f5527d548d444eecd74e1db3aa8cb08b","signature":"f48eefee39bf44aefbbce05a6840b54309c8a31f05641e2c94fc82e76ce807a1","impliedFormat":99},{"version":"406863eae1f7adee4bfaf6b80f541e72ba3ff57a80997eae34dc2677733f62cc","signature":"21248172fdb4c3ce859fa761a360940384895116a845e10fb20812ef4d29431c","impliedFormat":99},{"version":"75c0517859f938323964be93caccf491654f3b3f6b1a4537bc38ab3e23d98036","signature":"6a1d1356c721505eb3dc472e1b631e880da82d2b8fdb483be9c3386a46c82a7c","impliedFormat":99},{"version":"edb92ee1a5b2a0b91e54ebb6504f16d12ae048c5007ff6cfc4f93411a2375b2f","signature":"412f28e19739cd68e7a510b7d2417e61e8c035567caec11199d2bc608bdd9049","impliedFormat":99},{"version":"fe059ad5602551efe1fd96feb8639a3b5b8519e4f13ae3562c67c45b32df8ec8","signature":"9c7e28c8554bb1e4ee50e06a4037967d79eb8126b3ee24c1676633381a352e0f","impliedFormat":99},{"version":"dc6d6d277e6627f3639b5ccea6f6d58273b2216bafd818d5c71d38455d79da7e","signature":"11d90ddf914600d7cdba80dc93576c8e4b9590b42542a4e4db56e36af1c3c341","impliedFormat":99},{"version":"1c586e0672cccd76f88a3c4b5499b84b85e4e7f5714481739da423a257500ce2","signature":"b99fb3db745e05805dd318a7610b2cdd549f05b1ed07adb8f16245addadb78f3","impliedFormat":99},{"version":"856fb8ec7842e79d82b20fa60eb94885d6236df0369e6b9f0c75169ba11178e8","signature":"6494935de0834e0fdf32549bb1d99db0baace738f94db109f0fe24f9908e5e13","impliedFormat":99},{"version":"899bb0fa7ad8e8f2e36c331b51a4168fa8714e8fb08c8ea662c59906d89b5795","signature":"566fed4f1624f5af82eaf5e00df742493ea0ac396b8407cb0af1587440f03da5","impliedFormat":99},{"version":"e0b807278a7eed1236ac49425924be2eef6a1a82e33fd97bf8cc21b7d8bc2dc0","signature":"76c2c064d1ec7016eb04f3b857c850f405ee31b5de030ba14949c842d10b3ed4","impliedFormat":99},{"version":"37d417d8e07de3d2bf23b926bc2b7a2f68e2083e227987878fb285983172f0fa","signature":"8adbddff6d8303fdf5de01602f8c2b9a28efc3bf60530eeba3857aa7f550f655","impliedFormat":99},{"version":"59eff4434a1dee49ed455270cf7a4dfe84d88db36185092ae5733f462e72f180","signature":"4649e209c8e55ea7da478772401659c9afe839176071603a3aebaf7a096963e8","impliedFormat":99},{"version":"425df37164ba24a136660c1ee085074c42e42d435e79c968e3dbcdb9827f2955","signature":"1745542a9cd61dea502e363ea6f2fdcaf61e37b9a683bac1ce29bf82c4e193d5","impliedFormat":99},{"version":"080ef68cb739c663b974cc84b33883aeac7839eabade7f77dd760648302ee9f6","signature":"0ac7bb457ac07cb746a4cd0f9056cd13d06ac92515df7f4d04fdb426c0d04789","impliedFormat":99},{"version":"e6846a4494bcc42cd5e18558f269128928206895ae335a1a1f8d8755c0015858","signature":"147dea73a1812befb25fa16d0f35efaff0f17320b901d8f9a22b275eac9e2ebd","impliedFormat":99},{"version":"2415614daaf6621d606c9d0a7bea278e5b505914d47b5fea2832f0be6e348eb1","signature":"230774b131e9cf85d2f9904ca48c6bc42521ca5b085c9601fceaa472b249a63e","impliedFormat":99},{"version":"34f0da1c3e1b1a906ca88a49c9c37e7e976f56ef0d7f7a562f3f459c2d519247","signature":"7a483fb2215b5d16372b26efe149e55ab716c52b752b9af1f5d9c64103c27d10","impliedFormat":99},{"version":"cd590c2da019805851133b25cf44be9c7f99e89a9888dd6d8a68a769512c667c","signature":"46d6995fa6153325dae9fcaf8eb7fdc183936a42a3fb851efcda43cc0bf7edef","impliedFormat":99},{"version":"9b9d70363c327d22ea8e0b8a35dec53ec63ca438c256e010e284a8bb54f3b99e","signature":"8aa95be4a204a0a1df189c4f3c58584c005f19f512dfe0cc664dc73c653da11e","impliedFormat":99},{"version":"8537b931a2666f64673f350100f408d703edb0a35b705099034cdce6a164b335","signature":"9b47d61d6e847112cf7e9f2fb1631d36e81d966b79b46ede120eaf85058f6a97","impliedFormat":99},{"version":"819166128c4a222f29524ed88cb79df43a5b85e8d0186859fdefff5828994559","signature":"775f83aba0a790ff27ad5e6642106c49f74e3918fc405f7d2431e4bd58c60ea9","impliedFormat":99},{"version":"c9eff3fee02c0f60bd21b4472d32e6781dd680e6877c62a268d5842641d38252","signature":"3ea67cb40367de619dc4addce96f4d5e80160ea305c6afe526d44a1b7988a3ea","impliedFormat":99},{"version":"8d59e2583567b1644d515390886f9448e2b74c5807b06953aa1f55581ad3a66e","signature":"05b142f6ee1495a2241cdeb8edebe68ec86f73de919b39c68a6a42dae460a524","impliedFormat":99},{"version":"e7cf2bbaf7bb0a40be7bc08028edb1acd01582c6118adbc304767a8acc2b7d89","signature":"96353d67ad67490f6865d86bd54aa4a5c4d95642d68a77ec545573b759cc0cf1","impliedFormat":99},{"version":"2accc5d167e3f6469fe824a754d75da6673b769ac7871c774ea2b550967f673a","signature":"6033589d06e12b3c3c9847974d7a3d1d2b838f575295611772f427b1e09a9719","impliedFormat":99},{"version":"ade60cf70633551c03e78934872a45ce58866f29171ecab7c71eaccad87734c1","signature":"18ba204a908da4aece7a8e5919ec556f8493e535ca08ed165d53fd72f7f43df0","impliedFormat":99},{"version":"3baf2dee52419bab3dc8e3af0f1a434b4ef3c8c20129112c9210c2e9509daf3f","signature":"211119813e2fc8cccb2630db0a6f889981efe71c55fe89b63a56c7fcc4dd9b1f","impliedFormat":99},{"version":"4c0e6ec19bf21f91b7eea91251655ee8aa8fffc66e44ac3dabe1db1822539823","signature":"e76000bf56e7303a06281974d287fabf1d9219ec9b45e18aa1eef4d6e1026856","impliedFormat":99},{"version":"02598a75c65eb545b30fb97b29a1ec2f6eecd1d8d4709a6776eedd1824bd9b3b","signature":"160bde8c2e4379c48043740eab17a6163842f750e56692052a08d28475181ef0","impliedFormat":99},{"version":"3130d3bd1498fe0fb67e8b70d644a73772b0d9ee4cbaefdf885574c7ddb69ddf","signature":"2291caf1b1e7ec37a1ffd42ea02c88bac063bbe210886ead78056aaa81b117c7","impliedFormat":99},{"version":"6c200ec4f5e1b4282c66c9ba7c3fef3e7d92b46678c1043f08d5ae9728f13b7b","signature":"20166865cbc1461da0c5c09438c8221c83e897918a1d8fa708003b5d3e412bdf","impliedFormat":99},{"version":"80fb1e124b3befd9e215f0585a7587232ca8617623289795d526a54a6c1b2f90","signature":"6b38678a012f8055e5f0a8aa9c1ca13d8a6d60110541d60e244a132b31f1fec2","impliedFormat":99},{"version":"e3d6ae9f282b044965d33d9ac07a2ff7a9740ac18ec120a1108322b1b10af0a4","signature":"a13bbfb6077d7cb71485da903e99986a83312876720b182476136dcce73775d5","impliedFormat":99},{"version":"fcf7e7036b5f6414b3ed3329784ff67013ccec57c3e9e3f947a5989820e8f398","signature":"47e1b725b6d55b6284e63568e9074f195005f8b79e066b28449663aef9aed95c","impliedFormat":99},{"version":"fd4726084fc420f22d41ed89924588eb763d505dad1e962cb7342262f3768a9b","signature":"42e936ecc3b9b7ad5a489eeaea7c25af8d7b71162a08e00ad638648e87a7ee51","impliedFormat":99},{"version":"a98565fe3f6544349391fcfa5b85228a7c930432e7cb0ece5836e0bb3bcc4df2","signature":"e6f972dc162ead1d86897a3488316aab8b034472695d40eac74b6557e184919d","impliedFormat":99},{"version":"6778505747ca2fe895398a950e1b7ae1ec2082598ab40f4747ed92b38f432486","signature":"d91415fa00b3eef01ae2e08e8ffaf7cef9fa568515c83ac1474a22cc55bb3718","impliedFormat":99},{"version":"4c07cb4af489aa7e5386c5c71589b9c1dc19d6cd844a40fff43b306c2595d302","signature":"912202a19d5e8972357af639e5e65d06c9171e30d4bf077fcdfe184c30effc7c","impliedFormat":99},{"version":"732171c867502bf996c071ca99ebd61b81b3c9180c764e8487923afbfd923c43","signature":"16ea4109bf543dd521c2e9cd4ff0f8c498250ce26f6fe55739e077e0761c8807","impliedFormat":99},{"version":"559e7d0c8fc59a863ab372f153cac32ed9b8a491cecbb55ae99eae5dafb63183","signature":"9ab0406e79c8ae7a4f552c6609b8ce436242d74abbeebd1f4303a63c53ccb56a","impliedFormat":99},{"version":"7ece36a110abd08f05dd49a92252701bcbddf4fe293ae01cbf9c601016d7bba1","signature":"76fdce1e19f5cf3a2243a37f1778f534dc527e73c25100a14d63994c2f0b8760","impliedFormat":99},{"version":"2090d0eca18e731bd8d969d2cba352c8df8cf90ba868f4cfa283dad83808bb08","signature":"4dcaec244d4486f21fa7800fd6853c914df66154d4ca6b7cf0aa0370c5e6a656","impliedFormat":99},{"version":"9b0ff49d36b7824d21256ddb1ba4768b457813540c0d62f554cea3dc9c64f216","signature":"5111e2e2ffb1264243951a0c15fa3498e2c0c23e74599f535ad2227a16d8c503","impliedFormat":99},{"version":"2ec552907133a2cf71b3ac6691c4c967b9812c55fb4aae93c84b244dec1f1138","signature":"6a0b240c302708869a73e229cd379d6604160cb4eea371f0a24b1cc44fd710fd","impliedFormat":99},{"version":"2439c9e3342755a2b1f94156bb03be2b0a5e3eb5348455bfb818cf6ec1810b30","signature":"b6c5cb675d41673f3d27982b79d6b96033d9f0976ff9c62a49b4d61bbfc71b1f","impliedFormat":99},{"version":"0e7d1baa841b8ce02d9b4c0e2cc28ba995c002d931bd0858613ea0d18c7ee69c","signature":"db5ff6f8ae2b0a4ff8cb16b43646b5561304b219fcc10ab1c470965743fe7662","impliedFormat":99},{"version":"7749ed7783d1b596ff2a559c6f1791c26663aa481de28c7f1f1088da957b4c19","signature":"e4bf9388266333a7b08b77dfc53f0bd5cc25da0e148c7a896aaac443c6becb47","impliedFormat":99},{"version":"5fdf113dbbe850c8aa72bae575e5e3b16d721b6aff1a9403b891ecc142f2e1c9","signature":"986c6fa0b20de6185466d165274d7896f8734b92302b70ffccf4614be069db61","impliedFormat":99},{"version":"f01a50cf37609b6fd68a162f19d1399ea4d6e784b53fa93d445f4192ba2227c1","signature":"02fad959da0f7217696defb6dead5557228c3ef9791e4cbb28164d4bea2a8245","impliedFormat":99},{"version":"a6f783cd14b1236fd93670f8bd6b5240f071360ac6b0e45a50162328e18076bb","signature":"43065306646acc1b02890238154e075cb4e2a6cbc73e213e1f56fcc6ad568d37","impliedFormat":99},{"version":"70abff315bc54a5d05ea49691b7c87d88510d6fb501a2988f728052a8c3a9b70","signature":"ccd53c52eddd8eaa19baaf4ac4224f18b3c9ee90cbdb62001f1477e59c5006be","impliedFormat":99},{"version":"5ce2ef299565dd538dbae555e49d9165607c98b4623894bdcd57defa75d5aa66","signature":"fc4560cb792ceead9e3fea2f6af6cfc1f6c3ae85091f1857c7d268a11c01b948","impliedFormat":99},{"version":"c7205820e804b0a2e14ca3aa30af92887627dcef8944fe3e260a9fd0e4bff6bd","signature":"3cdbb5ee633613ec6a9f05133cb58f37dc9600addb234645c281fa12bbec37ff","impliedFormat":99},{"version":"dea2f44cd31947f991cba9799e0b2c32fb505e334eac1c2bbef841366c7cce26","signature":"e7f707dc443bc70c46576168b519c3ba5479373575af4399855ca8b0b3013a02","impliedFormat":99},{"version":"2a2f055ec91fd4a2da87bc5f8ab27116ad452b64527116ea70ca6b9acf0dcaec","signature":"8b97d49f33fb21b2b6616c0600cb2e3968deede70049dd50e38e7d5e60258e48","impliedFormat":99},{"version":"4fb42330f9a63d62f635ecd7875cd137ca0768a72dd2d77a8e499b2d865b1339","signature":"a61270eb38bce478ba85ad3126a149e7d178fdfc02d91d901ec450ca2a08a3c9","impliedFormat":99},{"version":"989f0349d96b3f6dfcd6c14980fd7fb88ad6f7030183e6aa3ab737633dd6b648","signature":"b02e020e0ad1378e97a9e1d26795695ac5527087e5c174e8aea70ec0d00192e9","impliedFormat":99},{"version":"0b7f4df70b2fbc7e90c94a703d809030b24fd121445d07eb735e32286ef46d06","signature":"b34ecdba664a2ec3b8dbf9e941b6dbe316902ba0e406a7c31299e7eb959fb7e9","impliedFormat":99},{"version":"d87858efdb535b05d169b22601f65d8ca82d6e3b7ddd7f38645373f0936827ea","signature":"66fc58d212375c49354827feb93cf399644bddf49c6d5aa7cd716cd81cf5b691","impliedFormat":99},{"version":"30d55aeaa2023bf1741360ae54ded373993ad84fac37a0c51da15e1fd4bae5a0","signature":"5cf4cc52274a28bd8ab9406ed3e98fa53551f4b4cf1a34bd65b78b5e1439414f","impliedFormat":99},{"version":"6bd4ee1a9b711e709fcea6caace0391f479d7de7d01227f6c61ef1d71be801c1","signature":"0c184d4bfd1585aefffd168cf5f09cd420bebc653e912e418c24cab332f186e3","impliedFormat":99},{"version":"f1e93bcf479bf169e1d6702475e03d9674246683fc867e399b8efa99f6a410bc","signature":"d4ddbde0ad7387fe5129919e6f01803225906697af15bb29e0a2c5d0ec6056f4","impliedFormat":99},{"version":"52da757ac1c31ce1d39cbdd9fc2a6b7536ca57ed7c8d4820766f1f2a20233c25","signature":"48706ca10c8d5d293d1546c75598d177ec2e218aadc913c0c0e22d140788e167","impliedFormat":99},{"version":"8ca170400622ef866364e492266f8241db0ae20cbc57912931ca39545a416504","signature":"c430ada62ab9935c53a79e6d72008eee291d10a6b38380e016217a1ddbd876d7","impliedFormat":99},{"version":"d0abfa19ac6ceecf5e54008ba6358f55a31e5ac4aa5171cb5572f43a85c95f21","signature":"9a9f677f1c5a10068fe5bd9492449d3286c81009410a4efbc0c01720e76fccd9","impliedFormat":99},{"version":"c443bb9d05382282847c545e15e25203a6812b4394b67ebc9ef74a0a2a13a4ed","signature":"ce43e2dd65f632ef9507b64db36a0f6b3d5e1629660b4a1e3b68463519b56f52","impliedFormat":99},{"version":"e764a7109ea6986151c6510e0b7b36864ae60f9dbbecd3294656a56c38d5d0b8","signature":"ddc749b51a994ebd89f4e034e43c3d63194cd79d38b9f4ff9eca1e9691fdf7ab","impliedFormat":99},{"version":"1095592be3f7630f67edb2a1681e8c5873bb823d622fb13c16812d4471f95060","signature":"5779a3beccd25719ed449aa5b36496c690aedf1513bb4b9d0f62a06d15065aa9","impliedFormat":99},{"version":"c13ae93c52c5c83574356ce89ca352e1678f8e83d108ff889c148c7d9e647046","signature":"dad66df5c6f61ed2d640e4b1bd1c251ea8baf76e41b504c328a64519dcb457a4","impliedFormat":99},{"version":"a7193152de3eae35775571c6c8d797e9d46ffa5ee8a9d2f111ca1e8338b80ecc","signature":"a34189c39e64e75e77d978d1c1705f53c585e7598705ffb45487f46c26b2cae1","impliedFormat":99},{"version":"756acb82b79db98fe9bd034fead6f2acbdc4a5fdd18bf080654a54111dc577f1","signature":"b5e7dc922a6ba13fd0816be1fd36301ed2ff7b8701c967c6b31efddc6d979caf","impliedFormat":99},{"version":"56148315ae495bfcc65aa8cb1488068051ac0542cf16746766c4d20304d9cfb1","signature":"db959774546bdddc7101c53894e3138cd245b33175f7c9377f9343eec1a8d680","impliedFormat":99},{"version":"ced59bb0807ff89b09ceab247bb3e96eb92b749f76ba345a11ee0847bc69bf21","signature":"708983bc2119bb450def1cad417be1837a1585939e468ecef67105deae1b40b3","impliedFormat":99},{"version":"4d6cde6ff7c07288b8fd15eac68eb57fffcede2d34746d57bd7001f0a87d38c1","signature":"8c826192b6757cbc3ffc140a36dc8ada7957796bd2242467287ae231450b4f99","impliedFormat":99},{"version":"438b4f6cce10e0fe41c399013be35aebf81afc03a4eaa7545c7cbc1c44999cbf","signature":"2560d1b3b4dd06af6b5163953192a0577ee86f1a9a8aed2ca429012b15084e93","impliedFormat":99},{"version":"b28aeeacae8001059b0d56fdcde97ce729184c69fa2a79959860460d06dca6de","signature":"10c7bdc6518b5f312287ce56e2ad08318c9c6a205f70fc51138764c9f0579ccd","impliedFormat":99}],"root":[[59,174]],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"experimentalDecorators":true,"module":100,"noImplicitAny":false,"noImplicitOverride":true,"noUncheckedIndexedAccess":true,"outDir":"./","rootDir":"..","sourceMap":true,"strict":true,"target":9,"verbatimModuleSyntax":true},"referencedMap":[[167,1],[168,2],[169,3],[170,4],[171,5],[172,6],[173,7],[174,8],[123,9],[63,10],[93,10],[120,11],[122,12],[68,13],[83,14],[117,15],[114,16],[75,17],[65,18],[64,19],[119,20],[121,21],[97,22],[81,23],[79,24],[71,25],[70,26],[92,27],[125,28],[127,29],[128,30],[88,31],[72,32],[91,33],[76,34],[115,35],[66,36],[99,37],[98,38],[96,39],[107,40],[110,41],[108,42],[102,43],[111,44],[106,45],[105,46],[103,23],[101,47],[80,47],[132,48],[135,49],[137,50],[139,51],[141,52],[143,53],[147,54],[149,55],[146,56],[134,23],[131,57],[133,58],[136,59],[138,59],[140,57],[145,60],[142,61],[148,62],[144,58],[130,63],[150,64],[104,65],[151,65],[152,66],[153,67],[154,68],[155,69],[156,70],[157,71],[159,72],[160,73],[158,74],[163,75],[164,76],[165,77],[166,78],[162,79],[84,80],[161,79],[87,81],[73,82],[116,81],[109,81],[74,83],[78,84],[94,85],[112,86],[113,87],[86,21]],"latestChangedDtsFile":"./src/core/text-rendering/SdfTextRenderer.d.ts","version":"5.9.2"}
|
|
1
|
+
{"fileNames":["../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es5.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.dom.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/env.d.ts","../src/utils.ts","../src/core/utils.ts","../src/common/ieventemitter.ts","../src/common/eventemitter.ts","../src/core/animations/coreanimation.ts","../src/core/animations/animationmanager.ts","../src/core/renderers/coreshadernode.ts","../src/core/renderers/coreshaderprogram.ts","../src/core/coreshadermanager.ts","../src/core/renderers/webgl/internal/webglutils.ts","../src/core/platforms/web/webglcontextwrapper.ts","../src/core/platforms/platform.ts","../src/core/platforms/web/lib/texturecompression.ts","../src/core/textures/imagetexture.ts","../src/core/textures/subtexture.ts","../src/core/texturememorymanager.ts","../src/core/renderers/corecontexttexture.ts","../src/core/textureerror.ts","../src/core/textures/texture.ts","../src/core/platforms/glcontextwrapper.ts","../src/core/renderers/webgl/internal/shaderutils.ts","../src/core/lib/utils.ts","../src/core/lib/matrix3d.ts","../src/core/coretextnode.ts","../src/core/text-rendering/textrenderer.ts","../src/core/lib/contextspy.ts","../src/main-api/utils.ts","../src/core/textures/colortexture.ts","../src/core/platforms/web/lib/imageworker.ts","../src/core/platforms/web/lib/imageworkerdefault.ts","../src/core/platforms/web/lib/utils.ts","../src/core/platforms/web/lib/texturesvg.ts","../src/core/platforms/web/webplatform.ts","../src/common/ianimationcontroller.ts","../src/main-api/inode.ts","../src/core/lib/colorparser.ts","../src/core/renderers/canvas/canvastexture.ts","../src/core/lib/colorcache.ts","../src/core/renderers/canvas/canvasshadernode.ts","../src/core/renderers/canvas/canvasrenderer.ts","../src/core/renderers/corerenderop.ts","../src/core/renderers/webgl/internal/rendererutils.ts","../src/core/renderers/webgl/webglctxtexture.ts","../src/core/renderers/webgl/internal/buffercollection.ts","../src/core/shaders/webgl/default.ts","../src/core/renderers/webgl/webglshaderprogram.ts","../src/core/renderers/webgl/webglshadernode.ts","../src/core/renderers/webgl/sdfrenderop.ts","../src/core/renderers/webgl/webglctxsubtexture.ts","../src/core/textures/rendertexture.ts","../src/core/renderers/webgl/webglctxrendertexture.ts","../src/core/renderers/webgl/webglrenderer.ts","../src/main-api/inspector.ts","../src/main-api/renderer.ts","../src/core/stage.ts","../src/core/renderers/corerenderer.ts","../src/core/textures/noisetexture.ts","../src/core/coretexturemanager.ts","../src/core/lib/rendercoords.ts","../src/core/animations/coreanimationcontroller.ts","../src/core/autosizer.ts","../src/core/lib/collectionutils.ts","../src/core/corenode.ts","../src/common/commontypes.ts","../src/core/platforms/web/lib/imageworkernooptions.ts","../src/core/platforms/web/webplatformchrome50.ts","../src/core/platforms/web/lib/imageworkerlegacy.ts","../src/core/platforms/web/webplatformlegacy.ts","../src/core/platforms/web/webplatformnext.ts","../src/core/platforms/web/lib/createimagebitmap.ts","../src/core/shaders/utils.ts","../src/core/shaders/templates/bordertemplate.ts","../src/core/shaders/canvas/border.ts","../src/core/shaders/templates/holepunchtemplate.ts","../src/core/shaders/canvas/utils/render.ts","../src/core/shaders/canvas/holepunch.ts","../src/core/shaders/templates/lineargradienttemplate.ts","../src/core/shaders/canvas/lineargradient.ts","../src/core/shaders/templates/radialgradienttemplate.ts","../src/core/shaders/canvas/radialgradient.ts","../src/core/shaders/templates/roundedtemplate.ts","../src/core/shaders/canvas/rounded.ts","../src/core/shaders/templates/roundedwithbordertemplate.ts","../src/core/shaders/canvas/roundedwithborder.ts","../src/core/shaders/templates/shadowtemplate.ts","../src/core/shaders/templates/roundedwithborderandshadowtemplate.ts","../src/core/shaders/canvas/shadow.ts","../src/core/shaders/canvas/roundedwithborderandshadow.ts","../src/core/shaders/templates/roundedwithshadowtemplate.ts","../src/core/shaders/canvas/roundedwithshadow.ts","../src/core/shaders/webgl/border.ts","../src/core/shaders/webgl/defaultbatched.ts","../src/core/shaders/webgl/holepunch.ts","../src/core/shaders/webgl/lineargradient.ts","../src/core/shaders/webgl/radialgradient.ts","../src/core/shaders/webgl/rounded.ts","../src/core/shaders/webgl/roundedwithborder.ts","../src/core/shaders/webgl/roundedwithborderandshadow.ts","../src/core/shaders/webgl/shadow.ts","../src/core/shaders/webgl/roundedwithshadow.ts","../src/core/shaders/webgl/sdfshader.ts","../src/core/text-rendering/utils.ts","../src/core/text-rendering/textlayoutengine.ts","../src/core/text-rendering/canvasfonthandler.ts","../src/core/text-rendering/canvastextrenderer.ts","../src/core/text-rendering/sdffonthandler.ts","../src/core/text-rendering/sdftextrenderer.ts","../exports/canvas-shaders.ts","../exports/canvas.ts","../exports/index.ts","../exports/inspector.ts","../exports/platform.ts","../exports/utils.ts","../exports/webgl-shaders.ts","../exports/webgl.ts"],"fileIdsList":[[98,132,135,137,139,141,143,146,147,149],[96,98,99,164],[61,64,66,73,75,77,78,80,83,84,93,94,102,105,111,112,113,114,117,122,123,131,133,136,138,140,144],[112],[70,71,79,92,125,127,128],[60,61,63,81],[104,106,150,152,153,154,155,156,157,158,159],[102,106,111,166,173],[77,122],[62],[64],[60,61,63,122],[60,63,64,65,93,123],[81,122],[60,63,64,66,78,81,82,93,102,103,111,114,115,117,118,119,120,121,123],[60,66,67,114],[78,81,82,84,114,115,122,123],[63,71,73,74,77,78,87,109,114,115,116],[122],[95],[80],[78,80],[70,73,79,114],[73],[70,73,78],[60,73],[69,78,79,80],[70,71,72,73,79,88,89,90,91,114],[73,88,92,124],[71,73,88,90,92,126],[92],[74,76,78,95,96,97,98,114,115,122],[66,97,114,122],[60,76,95,123],[75,78],[66,67,76,78,85,114,122],[60,114,122],[79],[81,100,102,103,106,111,114,123],[75,79,81,102,109,123],[60,74,75,78,79,102,123],[60,75,76,78,79,81,101,123],[71,74,76,78,79,81,101,102,103,104,105,106,107,108,109,110,114,115,122,123],[66,79,80,81,105,111,114,122],[67,79,80,102,103,104,106,111,122],[80,81,95,98,131],[80,81,98,133,134],[98,136],[98,138],[80,81,98,134,140],[80,81,98,132,134,141,142],[80,81,98,134,143,145,146],[80,81,98,134,141,146,148],[80,98,134,144],[66,80,130],[66,130],[66],[66,130,131,140,144],[66,130,131,140],[66,130,140,144],[60,80],[80,106,131],[106],[80,81,106,133],[80,81,106,111,136],[81,106,111,122,138],[80,81,106,122,140],[80,81,106,122,142],[80,81,106,122,145],[80,81,106,122,148,158],[81,106],[106,144],[60,63,65,66,68,71,75,78,81,83,84,85,86,87,92,113,115,117,122,123],[83,84,114,122,161,162],[60,83,84,114,161,162,163],[73,83,84,114,122,161,162],[60,83,84,102,103,106,107,111,114,115,160,161,162,165],[84],[83,114,115],[83],[60,61,78,114],[78,117],[71,72,78,117],[60,73,78,117,123],[63,74,76,77,81,117,123],[64,66,83,93,122],[60,64,78,83,93,113,122],[60,63,66,68,71,75,83,84,92,94,99,111,112,114,117,122]],"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":"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":"5ba0a094f93834bf1d227ddfb621d45ffe5b37e4dfe0b8518cdb769713f86633","affectsGlobalScope":true,"impliedFormat":99},{"version":"51d08744a73f37d742991a8c1520cddb5b4467be59d51cf323ab648689b773c8","signature":"fd1af2ef5ae768945eeffcdeeb952b99d60c62a80a2e6a5d4fa12810c1c9acd4","impliedFormat":99},{"version":"ba0436dc1e7dd857a26192df6d04aa3c8d5ae9b619f2530ce4e1ccf73b423638","signature":"ee40f42d658eb673fa53ff333ab90b838d3d4397fcf6a4ce49cfba5202f7c4ab","impliedFormat":99},{"version":"5de4a2417fe760f83ce7c2e9e54067e98cd4152d76536003ef991fb737b161ea","signature":"11f10eef6b087b59bd9e527db506274380a36587a1bff3450e220ad7ec2ce45e","impliedFormat":99},{"version":"42637ec4fa701148d4feb23a2964911e95126f46f167fbccb406bc12729c7430","signature":"881f25b23cf946459048e2d76abdbb7056c728a15d92d20f2e76af12725cee7e","impliedFormat":99},{"version":"be89b93c8c4ba8bbf6978db90a2cb8b1c8a82f5b18ab222949b5875964bf174e","signature":"57c524f11a2ccc3fbb107176c4fbfdffa7159848bd8753a0197fb2a04c6d3c77","impliedFormat":99},{"version":"2f14e768b6006e0c9217f4f2d61ee87125118db122f239ea2b9f6269483696c1","signature":"86af1ef9e30559df431a169a1f9d87bc81421080efff8b87c971e75a54db67dd","impliedFormat":99},{"version":"6ae1dbd5661f184b6f78a55e139365b2fbee940b12e895fe16b272a850ff3459","signature":"c1a0fd4511bbf56aedef22aba390ce4fffcef26adaec16684eea65a35e408b66","impliedFormat":99},{"version":"13efb809be1e53bb68e743278191453b4c49183787d9c6e9d9f0bbc9397ec5e6","signature":"97326a2f5f0fce22509018fe77795cb2313d61f1ef71eff134612c81ec2ac600","impliedFormat":99},{"version":"0b64f0264b09bb808e8de6f7cd615395bc16c7eb367fcd5c54a5056b5bf5adcb","signature":"6dde36af67f486d0925af4ba0339e7a66b7f71fd36f1a4d928869ccbf4dfdda0","impliedFormat":99},{"version":"c1e884d41fb830745a0de5126e20c3b9f8cdd3940623cfacf57cf98b0a65d402","signature":"8e859e1af27f614aae3f8d163c831280e842bda6c53f11c60b78deaedcff6d92","impliedFormat":99},{"version":"e9d216f0e19aa76dfbd4c84c0cb58c7592656bad123edba102d092db1d9051fc","signature":"1ec2e11f88da9138973dd7f5bec75620929b5779f689b4cd53c82a5b68605026","impliedFormat":99},{"version":"9e0b25bf71fe7c2947a3b6a99083f4bdc160ab712e3305143e6474d93bb4a3d5","signature":"28eece2a081785856c15b49c548557567efcf780ec11feb29eb7323e25c94085","impliedFormat":99},{"version":"7506c9793143aa85897195bc356a28bac0c77a4969d32c968e18129c66969eb8","signature":"2cd450a808b6a4643287fc23d522957dfae443fad5680b646f2945c52d126fcb","impliedFormat":99},{"version":"3cf008509f915b508569b6fb740a139aba87ee37a69acacb19d36679cece1067","signature":"050b367212e3e86d6472ee25ebfa88f23a0691a98dd20e7dd7489dab5313d2c8","impliedFormat":99},{"version":"9e539779a0e8db554d5aca38c354bb863b694b7ac191a350b134300815e7683f","signature":"178bbaca724c8e19c6e3be26bbacb719daad5c0f3a5e3a2a645bae5b187edc48","impliedFormat":99},{"version":"43daaf38b59c7838cc7ac29da740b9ff9db0fde70e80dbf8ebdb474ec5de0679","signature":"b56ac7d6862995c7edaffd14327cb8ca9238ba4f5489c8224643bd86afc5aab3","impliedFormat":99},{"version":"f8bb12172e9e15b67dd4f651bfbb0940b8ef8d8edc89e98220e479134936d7fb","signature":"7fa0036a92ef198a2140758b695b615596e7860cde2f8f50dc8772f1ae23fde0","impliedFormat":99},{"version":"eb5ebb320aa1183949c8d38cbb1d1a4adb66d89c2eabe482d06cbfcbb623a5c8","signature":"a99803c578fe88e219cf00596426fe7a7d4562fff03a9c2814b84e9d0b6a23df","impliedFormat":99},{"version":"824b17541616f7891dec3c133bda3846a91b6ceddf5c221b11606bef1a05d842","signature":"25ce49c3576ca9d969630d1fba75b742f37784c6c51a690743bfb1e516d7ec0c","impliedFormat":99},{"version":"b9e81a3da39763161010c4dcb6d12f4460ffc36eb775bef384c4e36a7fbb4cfc","signature":"ecdc1ca4120d9799a56b7d8dd589df68cf4fdba08b533e5b2e1950d1b3d60006","impliedFormat":99},{"version":"70a0b4888a5fdc0f94a6d4b9327b0e428b432c71cb96a3b3699d082c171a3c86","signature":"2fb80582116f4b75789f9cb20713774950ddb3196863bc0c30e8c649ff43a6f2","impliedFormat":99},{"version":"c95ab3cb063622388d9e49e976bab8e5805e53a3ea74dbabd41b7f1e15ab230d","signature":"208a5854bcfb067c89fbaa71b9b0d643d0c87b63d2652c20cf8d97dc18b95add","impliedFormat":99},{"version":"00225081075bead20c946a2202ff71bbc0c0d881a37299a85153534b8db95ead","signature":"82b4959cc8e78b6523427a16b137e53509dbae64f14851b999756aaffe318ce7","impliedFormat":99},{"version":"1c74e9bfeeb2b392186ca8d5a19ecc8c3b2b678577055790f0485fd9458f340e","signature":"7338c5998027b776e2858cdcdd55e25bc1fc3922489df2d233b39f14b5af79ce","impliedFormat":99},{"version":"4525a086ff54b9fff4161002b37b99f6d5c722b55554ab420734b91c3c02a008","signature":"e26579b827a942b3009c6dd922eab0e10e2d69f3ae38b5ac1bcf47b289dc1102","impliedFormat":99},{"version":"91fc62e55e9c0e46aeb37d1286e50805ea903c159ae1bf544f5ee54b5717995d","signature":"826d87ec474ecd59c827441df44d49f420dbe099333c3344e31dfada8cc39902","impliedFormat":99},{"version":"7f6e6e6104931e7907c74e53d336094350978646d9c02c2a205ffcea90b58e61","signature":"f02942f8ae408270e572fa4c23aca8f42b496b83a836bfc8cec4f559e8ce1125","impliedFormat":99},{"version":"9a729c87e869555d84041be47223a22bdea8b5bfc73a4f65a28866c8afd47b17","signature":"68cfd7feb1396181cc75d8cfbd95ae5e76e2ffee3c99aeb04e4d3175737c7a97","impliedFormat":99},{"version":"6aa33d25a99620395dd2f796dda36819ec88e3ddd233ea0fb7c101e3f08cc0dd","signature":"348b04d01c12484b0bcf0b51459ec6484e39c372dff8955829e9e35212eec213","impliedFormat":99},{"version":"4a79889f8577b7d5afd98b71a3d55295b1e39e153f78b907cd109713d70db9c9","signature":"0901521f88b1ff86af8ce6c58a6be3e0878d09587051931d934921d23c455375","impliedFormat":99},{"version":"19e4b1b3c142e250ba5403b4dcae1d943adaea2066816be4556c3efd6891b48e","signature":"1ef2b085e389863587d5c7c7d13140c64c9777d1de27fb5dbf624cea67a0fce0","impliedFormat":99},{"version":"368e5d7d8adb1d06a0d13fa66d4de51b7597e27c9081d547338d3f45cf931131","signature":"3a40830fa52d8c298f98360c96529c2be63dad326d0007af0d111538ce8d6901","impliedFormat":99},{"version":"184857dec4490478bab67755dd9f445c3a547b105faa2c4b1673b758080e9a12","signature":"72893154b99a2b66b88deaf85394d04973e23a8f3b4bc8e83cce4c15365abf54","impliedFormat":99},{"version":"cd3353c087e03546d356d446993cf1347c13de8650914068988c06c3f5c1d4bc","signature":"18ba5f48d81404839647f24a785897883dc699b89397499eea03ae01cc88075c","impliedFormat":99},{"version":"acab9e99a2de0d1d20a7451ecbbdedc4d0372c3fc725f582b46688981520155e","signature":"06dcab8f25e15fdc5e573e9d552a55fd8bdd35830647d211e2e392d9f81f7f3c","impliedFormat":99},{"version":"93d6bb317f0d77cf8ea12575ff3951f7dd1b54db0fe20ecbbbcd3d9963da625e","signature":"566b53d6bd25dd8a6d93ef387b4a0ae8a795c1ea4854298c3a328fc6712aebb5","impliedFormat":99},{"version":"3f82e7cef37ef702eb56571d83a0e53acbe82e7fd4c731db2bcaad3f1bf80e6c","signature":"a3802aaf9d8320c01fa1156886402ae5383f9e49f104c261b1e3203c72c89dbc","impliedFormat":99},{"version":"f309bd228e2982f60f7ed817323e80d1187c1520248ae02059bd93d23eaa1acf","signature":"2885b4f117dd1d518624b16d3993749c17042fe5d799b60a46d9654d45fc1be1","impliedFormat":99},{"version":"7f205f17b22dd2ab59ed5991e6fb4dc76ebcf6a1efb91bca19457775b4097eaa","signature":"70dd0bd75de1a7b08011eddfacc2d0f1787ff28e7c588b860af4579a0dbc941f","impliedFormat":99},{"version":"59d6dfebfcf764a7a28bde94726a67f07191c47ceb0dbf968eeeb4ad01af1e82","signature":"78fcbd522144fdc8d0b87da77c6ea63c6d46bac002882bcdaf185c31d026bf40","impliedFormat":99},{"version":"406863eae1f7adee4bfaf6b80f541e72ba3ff57a80997eae34dc2677733f62cc","signature":"21248172fdb4c3ce859fa761a360940384895116a845e10fb20812ef4d29431c","impliedFormat":99},{"version":"75c0517859f938323964be93caccf491654f3b3f6b1a4537bc38ab3e23d98036","signature":"6a1d1356c721505eb3dc472e1b631e880da82d2b8fdb483be9c3386a46c82a7c","impliedFormat":99},{"version":"edb92ee1a5b2a0b91e54ebb6504f16d12ae048c5007ff6cfc4f93411a2375b2f","signature":"412f28e19739cd68e7a510b7d2417e61e8c035567caec11199d2bc608bdd9049","impliedFormat":99},{"version":"fe059ad5602551efe1fd96feb8639a3b5b8519e4f13ae3562c67c45b32df8ec8","signature":"9c7e28c8554bb1e4ee50e06a4037967d79eb8126b3ee24c1676633381a352e0f","impliedFormat":99},{"version":"dc6d6d277e6627f3639b5ccea6f6d58273b2216bafd818d5c71d38455d79da7e","signature":"11d90ddf914600d7cdba80dc93576c8e4b9590b42542a4e4db56e36af1c3c341","impliedFormat":99},{"version":"1c586e0672cccd76f88a3c4b5499b84b85e4e7f5714481739da423a257500ce2","signature":"b99fb3db745e05805dd318a7610b2cdd549f05b1ed07adb8f16245addadb78f3","impliedFormat":99},{"version":"856fb8ec7842e79d82b20fa60eb94885d6236df0369e6b9f0c75169ba11178e8","signature":"6494935de0834e0fdf32549bb1d99db0baace738f94db109f0fe24f9908e5e13","impliedFormat":99},{"version":"899bb0fa7ad8e8f2e36c331b51a4168fa8714e8fb08c8ea662c59906d89b5795","signature":"566fed4f1624f5af82eaf5e00df742493ea0ac396b8407cb0af1587440f03da5","impliedFormat":99},{"version":"e0b807278a7eed1236ac49425924be2eef6a1a82e33fd97bf8cc21b7d8bc2dc0","signature":"76c2c064d1ec7016eb04f3b857c850f405ee31b5de030ba14949c842d10b3ed4","impliedFormat":99},{"version":"37d417d8e07de3d2bf23b926bc2b7a2f68e2083e227987878fb285983172f0fa","signature":"8adbddff6d8303fdf5de01602f8c2b9a28efc3bf60530eeba3857aa7f550f655","impliedFormat":99},{"version":"59eff4434a1dee49ed455270cf7a4dfe84d88db36185092ae5733f462e72f180","signature":"4649e209c8e55ea7da478772401659c9afe839176071603a3aebaf7a096963e8","impliedFormat":99},{"version":"40bb7e2647a178b2d124142506100572dea4550c9617d9bad42aedaf6f30429e","signature":"d071bca73f1884430c94ce24cc2c0ebea1023667a42f5c5f7afd9eefa313899d","impliedFormat":99},{"version":"080ef68cb739c663b974cc84b33883aeac7839eabade7f77dd760648302ee9f6","signature":"0ac7bb457ac07cb746a4cd0f9056cd13d06ac92515df7f4d04fdb426c0d04789","impliedFormat":99},{"version":"a521421e8d9a53a865d8eb1deb9f3041621065e59eda552e57137c62f234b6a6","signature":"19e680d7f8cb5e7c4bfda368852991c0f2abd2ed59440b31a0ab84d3328597a6","impliedFormat":99},{"version":"1888b7c85d4cd4485c0d75dc2e9426c5ce5ca162b1443f07480531596dfd0837","signature":"84ec6a01bf1ece27828c554a4a6598d07b997dece417ed169f525fae6a3d61d4","impliedFormat":99},{"version":"d0d76513334006303a9712ec25613b441cff071089a4869b04ff78a19c1f434a","signature":"8e460c7b88442665e9f0dd12e202c8d0982851af8a3832ca1857678a5d4fd968","impliedFormat":99},{"version":"cd590c2da019805851133b25cf44be9c7f99e89a9888dd6d8a68a769512c667c","signature":"46d6995fa6153325dae9fcaf8eb7fdc183936a42a3fb851efcda43cc0bf7edef","impliedFormat":99},{"version":"41b179cc191947eaf48d7cb0329e2fa2f486eab747d978415945346609f57820","signature":"c9fd6387d2642c14c20d96298b870e54ea744665fc62ca70f521a84621943c31","impliedFormat":99},{"version":"8537b931a2666f64673f350100f408d703edb0a35b705099034cdce6a164b335","signature":"9b47d61d6e847112cf7e9f2fb1631d36e81d966b79b46ede120eaf85058f6a97","impliedFormat":99},{"version":"819166128c4a222f29524ed88cb79df43a5b85e8d0186859fdefff5828994559","signature":"775f83aba0a790ff27ad5e6642106c49f74e3918fc405f7d2431e4bd58c60ea9","impliedFormat":99},{"version":"c9eff3fee02c0f60bd21b4472d32e6781dd680e6877c62a268d5842641d38252","signature":"3ea67cb40367de619dc4addce96f4d5e80160ea305c6afe526d44a1b7988a3ea","impliedFormat":99},{"version":"8d59e2583567b1644d515390886f9448e2b74c5807b06953aa1f55581ad3a66e","signature":"05b142f6ee1495a2241cdeb8edebe68ec86f73de919b39c68a6a42dae460a524","impliedFormat":99},{"version":"97bde0fb918b6cb66013158766ec1b9beea46061d5642c4d093b72bbccfc9570","signature":"96353d67ad67490f6865d86bd54aa4a5c4d95642d68a77ec545573b759cc0cf1","impliedFormat":99},{"version":"2accc5d167e3f6469fe824a754d75da6673b769ac7871c774ea2b550967f673a","signature":"6033589d06e12b3c3c9847974d7a3d1d2b838f575295611772f427b1e09a9719","impliedFormat":99},{"version":"ade60cf70633551c03e78934872a45ce58866f29171ecab7c71eaccad87734c1","signature":"18ba204a908da4aece7a8e5919ec556f8493e535ca08ed165d53fd72f7f43df0","impliedFormat":99},{"version":"3baf2dee52419bab3dc8e3af0f1a434b4ef3c8c20129112c9210c2e9509daf3f","signature":"211119813e2fc8cccb2630db0a6f889981efe71c55fe89b63a56c7fcc4dd9b1f","impliedFormat":99},{"version":"4c0e6ec19bf21f91b7eea91251655ee8aa8fffc66e44ac3dabe1db1822539823","signature":"e76000bf56e7303a06281974d287fabf1d9219ec9b45e18aa1eef4d6e1026856","impliedFormat":99},{"version":"02598a75c65eb545b30fb97b29a1ec2f6eecd1d8d4709a6776eedd1824bd9b3b","signature":"160bde8c2e4379c48043740eab17a6163842f750e56692052a08d28475181ef0","impliedFormat":99},{"version":"3130d3bd1498fe0fb67e8b70d644a73772b0d9ee4cbaefdf885574c7ddb69ddf","signature":"2291caf1b1e7ec37a1ffd42ea02c88bac063bbe210886ead78056aaa81b117c7","impliedFormat":99},{"version":"6c200ec4f5e1b4282c66c9ba7c3fef3e7d92b46678c1043f08d5ae9728f13b7b","signature":"20166865cbc1461da0c5c09438c8221c83e897918a1d8fa708003b5d3e412bdf","impliedFormat":99},{"version":"80fb1e124b3befd9e215f0585a7587232ca8617623289795d526a54a6c1b2f90","signature":"6b38678a012f8055e5f0a8aa9c1ca13d8a6d60110541d60e244a132b31f1fec2","impliedFormat":99},{"version":"e3d6ae9f282b044965d33d9ac07a2ff7a9740ac18ec120a1108322b1b10af0a4","signature":"a13bbfb6077d7cb71485da903e99986a83312876720b182476136dcce73775d5","impliedFormat":99},{"version":"fcf7e7036b5f6414b3ed3329784ff67013ccec57c3e9e3f947a5989820e8f398","signature":"47e1b725b6d55b6284e63568e9074f195005f8b79e066b28449663aef9aed95c","impliedFormat":99},{"version":"fd4726084fc420f22d41ed89924588eb763d505dad1e962cb7342262f3768a9b","signature":"42e936ecc3b9b7ad5a489eeaea7c25af8d7b71162a08e00ad638648e87a7ee51","impliedFormat":99},{"version":"a98565fe3f6544349391fcfa5b85228a7c930432e7cb0ece5836e0bb3bcc4df2","signature":"e6f972dc162ead1d86897a3488316aab8b034472695d40eac74b6557e184919d","impliedFormat":99},{"version":"6778505747ca2fe895398a950e1b7ae1ec2082598ab40f4747ed92b38f432486","signature":"d91415fa00b3eef01ae2e08e8ffaf7cef9fa568515c83ac1474a22cc55bb3718","impliedFormat":99},{"version":"4c07cb4af489aa7e5386c5c71589b9c1dc19d6cd844a40fff43b306c2595d302","signature":"912202a19d5e8972357af639e5e65d06c9171e30d4bf077fcdfe184c30effc7c","impliedFormat":99},{"version":"732171c867502bf996c071ca99ebd61b81b3c9180c764e8487923afbfd923c43","signature":"16ea4109bf543dd521c2e9cd4ff0f8c498250ce26f6fe55739e077e0761c8807","impliedFormat":99},{"version":"559e7d0c8fc59a863ab372f153cac32ed9b8a491cecbb55ae99eae5dafb63183","signature":"9ab0406e79c8ae7a4f552c6609b8ce436242d74abbeebd1f4303a63c53ccb56a","impliedFormat":99},{"version":"7ece36a110abd08f05dd49a92252701bcbddf4fe293ae01cbf9c601016d7bba1","signature":"76fdce1e19f5cf3a2243a37f1778f534dc527e73c25100a14d63994c2f0b8760","impliedFormat":99},{"version":"2090d0eca18e731bd8d969d2cba352c8df8cf90ba868f4cfa283dad83808bb08","signature":"4dcaec244d4486f21fa7800fd6853c914df66154d4ca6b7cf0aa0370c5e6a656","impliedFormat":99},{"version":"9b0ff49d36b7824d21256ddb1ba4768b457813540c0d62f554cea3dc9c64f216","signature":"5111e2e2ffb1264243951a0c15fa3498e2c0c23e74599f535ad2227a16d8c503","impliedFormat":99},{"version":"2ec552907133a2cf71b3ac6691c4c967b9812c55fb4aae93c84b244dec1f1138","signature":"6a0b240c302708869a73e229cd379d6604160cb4eea371f0a24b1cc44fd710fd","impliedFormat":99},{"version":"2439c9e3342755a2b1f94156bb03be2b0a5e3eb5348455bfb818cf6ec1810b30","signature":"b6c5cb675d41673f3d27982b79d6b96033d9f0976ff9c62a49b4d61bbfc71b1f","impliedFormat":99},{"version":"0e7d1baa841b8ce02d9b4c0e2cc28ba995c002d931bd0858613ea0d18c7ee69c","signature":"db5ff6f8ae2b0a4ff8cb16b43646b5561304b219fcc10ab1c470965743fe7662","impliedFormat":99},{"version":"7749ed7783d1b596ff2a559c6f1791c26663aa481de28c7f1f1088da957b4c19","signature":"e4bf9388266333a7b08b77dfc53f0bd5cc25da0e148c7a896aaac443c6becb47","impliedFormat":99},{"version":"5fdf113dbbe850c8aa72bae575e5e3b16d721b6aff1a9403b891ecc142f2e1c9","signature":"986c6fa0b20de6185466d165274d7896f8734b92302b70ffccf4614be069db61","impliedFormat":99},{"version":"f01a50cf37609b6fd68a162f19d1399ea4d6e784b53fa93d445f4192ba2227c1","signature":"02fad959da0f7217696defb6dead5557228c3ef9791e4cbb28164d4bea2a8245","impliedFormat":99},{"version":"a6f783cd14b1236fd93670f8bd6b5240f071360ac6b0e45a50162328e18076bb","signature":"43065306646acc1b02890238154e075cb4e2a6cbc73e213e1f56fcc6ad568d37","impliedFormat":99},{"version":"70abff315bc54a5d05ea49691b7c87d88510d6fb501a2988f728052a8c3a9b70","signature":"ccd53c52eddd8eaa19baaf4ac4224f18b3c9ee90cbdb62001f1477e59c5006be","impliedFormat":99},{"version":"5ce2ef299565dd538dbae555e49d9165607c98b4623894bdcd57defa75d5aa66","signature":"fc4560cb792ceead9e3fea2f6af6cfc1f6c3ae85091f1857c7d268a11c01b948","impliedFormat":99},{"version":"c7205820e804b0a2e14ca3aa30af92887627dcef8944fe3e260a9fd0e4bff6bd","signature":"3cdbb5ee633613ec6a9f05133cb58f37dc9600addb234645c281fa12bbec37ff","impliedFormat":99},{"version":"dea2f44cd31947f991cba9799e0b2c32fb505e334eac1c2bbef841366c7cce26","signature":"e7f707dc443bc70c46576168b519c3ba5479373575af4399855ca8b0b3013a02","impliedFormat":99},{"version":"2a2f055ec91fd4a2da87bc5f8ab27116ad452b64527116ea70ca6b9acf0dcaec","signature":"8b97d49f33fb21b2b6616c0600cb2e3968deede70049dd50e38e7d5e60258e48","impliedFormat":99},{"version":"4fb42330f9a63d62f635ecd7875cd137ca0768a72dd2d77a8e499b2d865b1339","signature":"a61270eb38bce478ba85ad3126a149e7d178fdfc02d91d901ec450ca2a08a3c9","impliedFormat":99},{"version":"989f0349d96b3f6dfcd6c14980fd7fb88ad6f7030183e6aa3ab737633dd6b648","signature":"b02e020e0ad1378e97a9e1d26795695ac5527087e5c174e8aea70ec0d00192e9","impliedFormat":99},{"version":"0b7f4df70b2fbc7e90c94a703d809030b24fd121445d07eb735e32286ef46d06","signature":"b34ecdba664a2ec3b8dbf9e941b6dbe316902ba0e406a7c31299e7eb959fb7e9","impliedFormat":99},{"version":"d87858efdb535b05d169b22601f65d8ca82d6e3b7ddd7f38645373f0936827ea","signature":"66fc58d212375c49354827feb93cf399644bddf49c6d5aa7cd716cd81cf5b691","impliedFormat":99},{"version":"30d55aeaa2023bf1741360ae54ded373993ad84fac37a0c51da15e1fd4bae5a0","signature":"5cf4cc52274a28bd8ab9406ed3e98fa53551f4b4cf1a34bd65b78b5e1439414f","impliedFormat":99},{"version":"6bd4ee1a9b711e709fcea6caace0391f479d7de7d01227f6c61ef1d71be801c1","signature":"0c184d4bfd1585aefffd168cf5f09cd420bebc653e912e418c24cab332f186e3","impliedFormat":99},{"version":"f1e93bcf479bf169e1d6702475e03d9674246683fc867e399b8efa99f6a410bc","signature":"d4ddbde0ad7387fe5129919e6f01803225906697af15bb29e0a2c5d0ec6056f4","impliedFormat":99},{"version":"37cfbce8318c076e7df5e5f73ac921d4c2b4270d413230be607c5fa81a683bb6","signature":"6485f54ff8053b3f08f4332b9f4e59e41d8f7b23e98ea4f69c58fb47d7858540","impliedFormat":99},{"version":"8ca170400622ef866364e492266f8241db0ae20cbc57912931ca39545a416504","signature":"c430ada62ab9935c53a79e6d72008eee291d10a6b38380e016217a1ddbd876d7","impliedFormat":99},{"version":"d0abfa19ac6ceecf5e54008ba6358f55a31e5ac4aa5171cb5572f43a85c95f21","signature":"9a9f677f1c5a10068fe5bd9492449d3286c81009410a4efbc0c01720e76fccd9","impliedFormat":99},{"version":"f6d27ce52ba514d4aab08de3f9e3891620e7f6dc56891a07f5d5e83cd9a46794","signature":"0fcd1052c69b0c06c0552954349c7bec3eb2869fb6a3900acc234b7d3d4c9c07","impliedFormat":99},{"version":"e764a7109ea6986151c6510e0b7b36864ae60f9dbbecd3294656a56c38d5d0b8","signature":"ddc749b51a994ebd89f4e034e43c3d63194cd79d38b9f4ff9eca1e9691fdf7ab","impliedFormat":99},{"version":"cf706960e4fc4f112454ff5352cfe15b457131401a4d6713021a53b1800a40b6","signature":"6266282e479cc5c873fa76ad329cb75049fbb0dbcb92ea1b39feab25688ac67a","impliedFormat":99},{"version":"c13ae93c52c5c83574356ce89ca352e1678f8e83d108ff889c148c7d9e647046","signature":"dad66df5c6f61ed2d640e4b1bd1c251ea8baf76e41b504c328a64519dcb457a4","impliedFormat":99},{"version":"a7193152de3eae35775571c6c8d797e9d46ffa5ee8a9d2f111ca1e8338b80ecc","signature":"a34189c39e64e75e77d978d1c1705f53c585e7598705ffb45487f46c26b2cae1","impliedFormat":99},{"version":"756acb82b79db98fe9bd034fead6f2acbdc4a5fdd18bf080654a54111dc577f1","signature":"b5e7dc922a6ba13fd0816be1fd36301ed2ff7b8701c967c6b31efddc6d979caf","impliedFormat":99},{"version":"56148315ae495bfcc65aa8cb1488068051ac0542cf16746766c4d20304d9cfb1","signature":"db959774546bdddc7101c53894e3138cd245b33175f7c9377f9343eec1a8d680","impliedFormat":99},{"version":"ced59bb0807ff89b09ceab247bb3e96eb92b749f76ba345a11ee0847bc69bf21","signature":"708983bc2119bb450def1cad417be1837a1585939e468ecef67105deae1b40b3","impliedFormat":99},{"version":"4d6cde6ff7c07288b8fd15eac68eb57fffcede2d34746d57bd7001f0a87d38c1","signature":"8c826192b6757cbc3ffc140a36dc8ada7957796bd2242467287ae231450b4f99","impliedFormat":99},{"version":"438b4f6cce10e0fe41c399013be35aebf81afc03a4eaa7545c7cbc1c44999cbf","signature":"2560d1b3b4dd06af6b5163953192a0577ee86f1a9a8aed2ca429012b15084e93","impliedFormat":99},{"version":"b28aeeacae8001059b0d56fdcde97ce729184c69fa2a79959860460d06dca6de","signature":"10c7bdc6518b5f312287ce56e2ad08318c9c6a205f70fc51138764c9f0579ccd","impliedFormat":99}],"root":[[59,174]],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"experimentalDecorators":true,"module":100,"noImplicitAny":false,"noImplicitOverride":true,"noUncheckedIndexedAccess":true,"outDir":"./","rootDir":"..","sourceMap":true,"strict":true,"target":9,"verbatimModuleSyntax":true},"referencedMap":[[167,1],[168,2],[169,3],[170,4],[171,5],[172,6],[173,7],[174,8],[123,9],[63,10],[93,10],[65,11],[64,12],[119,13],[120,14],[122,15],[68,16],[83,17],[117,18],[121,19],[97,20],[81,21],[79,22],[71,23],[88,24],[72,25],[91,26],[70,27],[92,28],[125,29],[127,30],[128,31],[99,32],[98,33],[96,34],[76,35],[115,36],[66,37],[103,21],[101,38],[80,38],[107,39],[110,40],[108,41],[102,42],[111,43],[106,44],[105,45],[132,46],[135,47],[137,48],[139,49],[141,50],[143,51],[147,52],[149,53],[146,54],[134,21],[131,55],[133,56],[136,57],[138,57],[140,55],[145,58],[142,59],[148,60],[144,56],[130,61],[150,62],[104,63],[151,63],[152,64],[153,65],[154,66],[155,67],[156,68],[157,69],[159,70],[160,71],[158,72],[114,73],[163,74],[164,75],[165,76],[166,77],[162,78],[84,79],[161,80],[75,81],[87,82],[73,83],[116,82],[109,82],[74,84],[78,85],[94,86],[112,87],[113,88],[86,19]],"latestChangedDtsFile":"./src/core/text-rendering/TextRenderer.d.ts","version":"5.9.2"}
|