@operato/property-editor 10.0.0-beta.44 → 10.0.0-beta.48
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/CHANGELOG.md +18 -0
- package/dist/src/ox-property-editor-backdrop-faces.d.ts +60 -0
- package/dist/src/ox-property-editor-backdrop-faces.js +530 -0
- package/dist/src/ox-property-editor-backdrop-faces.js.map +1 -0
- package/dist/src/ox-property-editor-fill-style.d.ts +20 -0
- package/dist/src/ox-property-editor-fill-style.js +55 -0
- package/dist/src/ox-property-editor-fill-style.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +11 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,24 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [10.0.0-beta.48](https://github.com/hatiolab/operato/compare/v10.0.0-beta.47...v10.0.0-beta.48) (2026-05-05)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @operato/property-editor
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [10.0.0-beta.46](https://github.com/hatiolab/operato/compare/v10.0.0-beta.45...v10.0.0-beta.46) (2026-05-01)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### :rocket: New Features
|
|
18
|
+
|
|
19
|
+
* **property-editor/backdrop-faces:** per-face rotation + mirror controls ([fa780ea](https://github.com/hatiolab/operato/commit/fa780eae8b1600c77becf4052b9eef05341be199))
|
|
20
|
+
* **property-editor:** backdrop-faces composite editor + fill-style wrapper ([dd832e7](https://github.com/hatiolab/operato/commit/dd832e78ff2560a98728d259131b9c490bfb8d0b))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
6
24
|
## [10.0.0-beta.44](https://github.com/hatiolab/operato/compare/v10.0.0-beta.43...v10.0.0-beta.44) (2026-04-28)
|
|
7
25
|
|
|
8
26
|
**Note:** Version bump only for package @operato/property-editor
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import '@operato/input/ox-input-fill-style.js';
|
|
2
|
+
import '@operato/i18n/ox-i18n.js';
|
|
3
|
+
import { LitElement, type TemplateResult } from 'lit';
|
|
4
|
+
import { OxPropertyEditor } from './ox-property-editor.js';
|
|
5
|
+
import type { PropertySpec } from './types.js';
|
|
6
|
+
/**
|
|
7
|
+
* Backdrop 의 6개 면 (east/west/north/south/ceiling/floor) 을 한 번에
|
|
8
|
+
* 편집하는 합성 에디터.
|
|
9
|
+
*
|
|
10
|
+
* 면당 5개 속성 (fillStyle/visible/alpha/rotation/mirror) 을 flat NATURE 로
|
|
11
|
+
* 펼치면 30+개 항목 폼이 되어 좌표 감각이 사라진다. 이 에디터는:
|
|
12
|
+
* 1) cabinet projection cube 로 6면을 시각화 — 앞 3면(ceiling/east/south)
|
|
13
|
+
* 은 fill polygon, 뒤 3면(north/west/floor)은 dashed ghost outline
|
|
14
|
+
* 2) 각 면 라벨에 fillStyle swatch — 6면 색 분포 한 눈에
|
|
15
|
+
* 3) 면/라벨 클릭 → 그 면 detail 패널만 표시
|
|
16
|
+
* 4) "반대편 복사" / "벽 4면 일괄" 단축 동작
|
|
17
|
+
*
|
|
18
|
+
* value 형태:
|
|
19
|
+
* {
|
|
20
|
+
* east: { fillStyle, visible, alpha, rotation, mirror },
|
|
21
|
+
* west: { ... },
|
|
22
|
+
* ...
|
|
23
|
+
* }
|
|
24
|
+
*/
|
|
25
|
+
type FaceName = 'east' | 'west' | 'north' | 'south' | 'ceiling' | 'floor';
|
|
26
|
+
interface FaceState {
|
|
27
|
+
fillStyle?: any;
|
|
28
|
+
visible?: boolean;
|
|
29
|
+
alpha?: number;
|
|
30
|
+
rotation?: 0 | 90 | 180 | 270;
|
|
31
|
+
mirror?: boolean;
|
|
32
|
+
}
|
|
33
|
+
type FacesValue = Partial<Record<FaceName, FaceState>>;
|
|
34
|
+
export declare class OxInputBackdropFaces extends LitElement {
|
|
35
|
+
value: FacesValue;
|
|
36
|
+
private _selected;
|
|
37
|
+
static styles: import("lit").CSSResult;
|
|
38
|
+
private _face;
|
|
39
|
+
/** fillStyle 의 대표 색을 swatch 용으로 추출. 없으면 undefined → hatched 표시. */
|
|
40
|
+
private _swatchColor;
|
|
41
|
+
private _select;
|
|
42
|
+
private _commit;
|
|
43
|
+
private _patchFace;
|
|
44
|
+
private _onFillStyleChange;
|
|
45
|
+
private _onVisibleChange;
|
|
46
|
+
private _onAlphaChange;
|
|
47
|
+
private _onRotationChange;
|
|
48
|
+
private _onMirrorChange;
|
|
49
|
+
private _copyToOpposite;
|
|
50
|
+
private _copyToAllWalls;
|
|
51
|
+
private _renderLabel;
|
|
52
|
+
private _faceClass;
|
|
53
|
+
private _ghostClass;
|
|
54
|
+
render(): TemplateResult<1>;
|
|
55
|
+
}
|
|
56
|
+
export declare class OxPropertyEditorBackdropFaces extends OxPropertyEditor {
|
|
57
|
+
static styles: import("lit").CSSResult[];
|
|
58
|
+
editorTemplate(value: any, spec: PropertySpec): TemplateResult;
|
|
59
|
+
}
|
|
60
|
+
export {};
|
|
@@ -0,0 +1,530 @@
|
|
|
1
|
+
import { __decorate } from "tslib";
|
|
2
|
+
import '@operato/input/ox-input-fill-style.js';
|
|
3
|
+
import '@operato/i18n/ox-i18n.js';
|
|
4
|
+
import { css, html, LitElement, nothing } from 'lit';
|
|
5
|
+
import { customElement, property, state } from 'lit/decorators.js';
|
|
6
|
+
import { OxPropertyEditor } from './ox-property-editor.js';
|
|
7
|
+
const OPPOSITE = {
|
|
8
|
+
east: 'west',
|
|
9
|
+
west: 'east',
|
|
10
|
+
north: 'south',
|
|
11
|
+
south: 'north',
|
|
12
|
+
ceiling: 'floor',
|
|
13
|
+
floor: 'ceiling'
|
|
14
|
+
};
|
|
15
|
+
const AXIS_LABEL = {
|
|
16
|
+
east: '+X',
|
|
17
|
+
west: '−X',
|
|
18
|
+
north: '−Z',
|
|
19
|
+
south: '+Z',
|
|
20
|
+
ceiling: '+Y',
|
|
21
|
+
floor: '−Y'
|
|
22
|
+
};
|
|
23
|
+
const DEFAULT_FACES = {
|
|
24
|
+
east: { fillStyle: '#dde2e8', visible: true, alpha: 0.35, rotation: 0, mirror: false },
|
|
25
|
+
west: { fillStyle: '#dde2e8', visible: true, alpha: 0.35, rotation: 0, mirror: false },
|
|
26
|
+
north: { fillStyle: '#dde2e8', visible: true, alpha: 0.35, rotation: 0, mirror: false },
|
|
27
|
+
south: { fillStyle: '#dde2e8', visible: true, alpha: 0.35, rotation: 0, mirror: false },
|
|
28
|
+
ceiling: { fillStyle: '#e8e8ec', visible: true, alpha: 1.0, rotation: 0, mirror: false },
|
|
29
|
+
floor: { fillStyle: '#9c9c9c', visible: true, alpha: 1.0, rotation: 0, mirror: false }
|
|
30
|
+
};
|
|
31
|
+
let OxInputBackdropFaces = class OxInputBackdropFaces extends LitElement {
|
|
32
|
+
constructor() {
|
|
33
|
+
super(...arguments);
|
|
34
|
+
this.value = {};
|
|
35
|
+
this._selected = 'ceiling';
|
|
36
|
+
}
|
|
37
|
+
_face(name) {
|
|
38
|
+
var _a, _b;
|
|
39
|
+
return { ...DEFAULT_FACES[name], ...((_b = (_a = this.value) === null || _a === void 0 ? void 0 : _a[name]) !== null && _b !== void 0 ? _b : {}) };
|
|
40
|
+
}
|
|
41
|
+
/** fillStyle 의 대표 색을 swatch 용으로 추출. 없으면 undefined → hatched 표시. */
|
|
42
|
+
_swatchColor(name) {
|
|
43
|
+
var _a;
|
|
44
|
+
const fs = this._face(name).fillStyle;
|
|
45
|
+
if (typeof fs === 'string' && fs && fs !== 'transparent')
|
|
46
|
+
return fs;
|
|
47
|
+
if (fs && typeof fs === 'object') {
|
|
48
|
+
if (fs.type === 'gradient' && Array.isArray(fs.colorStops) && ((_a = fs.colorStops[0]) === null || _a === void 0 ? void 0 : _a.color)) {
|
|
49
|
+
return fs.colorStops[0].color;
|
|
50
|
+
}
|
|
51
|
+
if (fs.color)
|
|
52
|
+
return fs.color;
|
|
53
|
+
}
|
|
54
|
+
return undefined;
|
|
55
|
+
}
|
|
56
|
+
_select(name) {
|
|
57
|
+
this._selected = name;
|
|
58
|
+
}
|
|
59
|
+
_commit(next) {
|
|
60
|
+
this.value = next;
|
|
61
|
+
this.dispatchEvent(new CustomEvent('change', { bubbles: true, composed: true }));
|
|
62
|
+
}
|
|
63
|
+
_patchFace(name, patch) {
|
|
64
|
+
const next = { ...(this.value || {}) };
|
|
65
|
+
next[name] = { ...this._face(name), ...patch };
|
|
66
|
+
this._commit(next);
|
|
67
|
+
}
|
|
68
|
+
_onFillStyleChange(e) {
|
|
69
|
+
e.stopPropagation();
|
|
70
|
+
const target = e.target;
|
|
71
|
+
this._patchFace(this._selected, { fillStyle: target.value });
|
|
72
|
+
}
|
|
73
|
+
_onVisibleChange(e) {
|
|
74
|
+
e.stopPropagation();
|
|
75
|
+
const target = e.target;
|
|
76
|
+
this._patchFace(this._selected, { visible: target.checked });
|
|
77
|
+
}
|
|
78
|
+
_onAlphaChange(e) {
|
|
79
|
+
e.stopPropagation();
|
|
80
|
+
const target = e.target;
|
|
81
|
+
const v = parseFloat(target.value);
|
|
82
|
+
const alpha = Number.isFinite(v) ? Math.max(0, Math.min(1, v)) : 1;
|
|
83
|
+
this._patchFace(this._selected, { alpha });
|
|
84
|
+
}
|
|
85
|
+
_onRotationChange(e) {
|
|
86
|
+
e.stopPropagation();
|
|
87
|
+
const target = e.target;
|
|
88
|
+
const n = parseInt(target.value, 10);
|
|
89
|
+
const rotation = n === 90 || n === 180 || n === 270 ? n : 0;
|
|
90
|
+
this._patchFace(this._selected, { rotation });
|
|
91
|
+
}
|
|
92
|
+
_onMirrorChange(e) {
|
|
93
|
+
e.stopPropagation();
|
|
94
|
+
const target = e.target;
|
|
95
|
+
this._patchFace(this._selected, { mirror: target.checked });
|
|
96
|
+
}
|
|
97
|
+
_copyToOpposite() {
|
|
98
|
+
const src = this._face(this._selected);
|
|
99
|
+
const opposite = OPPOSITE[this._selected];
|
|
100
|
+
const next = { ...(this.value || {}) };
|
|
101
|
+
next[opposite] = { ...src };
|
|
102
|
+
this._commit(next);
|
|
103
|
+
}
|
|
104
|
+
_copyToAllWalls() {
|
|
105
|
+
const src = this._face(this._selected);
|
|
106
|
+
const next = { ...(this.value || {}) };
|
|
107
|
+
for (const w of ['east', 'west', 'north', 'south']) {
|
|
108
|
+
next[w] = { ...src };
|
|
109
|
+
}
|
|
110
|
+
this._commit(next);
|
|
111
|
+
}
|
|
112
|
+
_renderLabel(name, x, y) {
|
|
113
|
+
const f = this._face(name);
|
|
114
|
+
const swatch = this._swatchColor(name);
|
|
115
|
+
const selected = this._selected === name;
|
|
116
|
+
return html `
|
|
117
|
+
<div
|
|
118
|
+
class="face-label ${selected ? 'selected' : ''}"
|
|
119
|
+
style="left: ${x}px; top: ${y}px;"
|
|
120
|
+
@click=${() => this._select(name)}
|
|
121
|
+
title=${`${name} (${AXIS_LABEL[name]})`}
|
|
122
|
+
>
|
|
123
|
+
<span
|
|
124
|
+
class="swatch"
|
|
125
|
+
style=${swatch ? `background: ${swatch};` : ''}
|
|
126
|
+
?data-empty=${!swatch}
|
|
127
|
+
></span>
|
|
128
|
+
<ox-i18n msgid="label.${name}">${name}</ox-i18n>
|
|
129
|
+
${f.visible === false ? html `<span class="eye" title="hidden">⊘</span>` : nothing}
|
|
130
|
+
</div>
|
|
131
|
+
`;
|
|
132
|
+
}
|
|
133
|
+
_faceClass(name) {
|
|
134
|
+
const cls = ['face-poly'];
|
|
135
|
+
if (this._selected === name)
|
|
136
|
+
cls.push('selected');
|
|
137
|
+
if (this._face(name).visible === false)
|
|
138
|
+
cls.push('hidden-face');
|
|
139
|
+
return cls.join(' ');
|
|
140
|
+
}
|
|
141
|
+
_ghostClass(name) {
|
|
142
|
+
const cls = ['face-ghost'];
|
|
143
|
+
if (this._selected === name)
|
|
144
|
+
cls.push('selected');
|
|
145
|
+
if (this._face(name).visible === false)
|
|
146
|
+
cls.push('invisible');
|
|
147
|
+
return cls.join(' ');
|
|
148
|
+
}
|
|
149
|
+
render() {
|
|
150
|
+
var _a, _b, _c, _d, _e, _f;
|
|
151
|
+
const sel = this._face(this._selected);
|
|
152
|
+
return html `
|
|
153
|
+
<div class="cube-picker">
|
|
154
|
+
<svg viewBox="0 0 288 160" aria-label="Backdrop face picker">
|
|
155
|
+
<!-- Cabinet projection — south face 정면 1:1 (큰 사각형),
|
|
156
|
+
east axis 는 30° 위방향으로 절반 foreshortened (좁게 보임),
|
|
157
|
+
vertical 은 0.7 배로 압축해 안정감 있는 납작한 형태.
|
|
158
|
+
L=80, depth=40, yScale=0.7 → vertical edge 56.
|
|
159
|
+
south face (z=L) 좌하단을 (90,125) 로 배치. -->
|
|
160
|
+
|
|
161
|
+
<!-- Ceiling (+Y, top) — trapezoid -->
|
|
162
|
+
<polygon
|
|
163
|
+
class=${this._faceClass('ceiling')}
|
|
164
|
+
points="90,69 170,69 198,41 118,41"
|
|
165
|
+
fill="${(_a = this._swatchColor('ceiling')) !== null && _a !== void 0 ? _a : '#fff8e1'}"
|
|
166
|
+
@click=${() => this._select('ceiling')}
|
|
167
|
+
/>
|
|
168
|
+
<!-- East face (+X, right) — narrow parallelogram -->
|
|
169
|
+
<polygon
|
|
170
|
+
class=${this._faceClass('east')}
|
|
171
|
+
points="170,125 198,97 198,41 170,69"
|
|
172
|
+
fill="${(_b = this._swatchColor('east')) !== null && _b !== void 0 ? _b : '#ffcdd2'}"
|
|
173
|
+
@click=${() => this._select('east')}
|
|
174
|
+
/>
|
|
175
|
+
<!-- South face (+Z, front) — dominant rectangle 80×56 -->
|
|
176
|
+
<polygon
|
|
177
|
+
class=${this._faceClass('south')}
|
|
178
|
+
points="90,125 170,125 170,69 90,69"
|
|
179
|
+
fill="${(_c = this._swatchColor('south')) !== null && _c !== void 0 ? _c : '#c8e6c9'}"
|
|
180
|
+
@click=${() => this._select('south')}
|
|
181
|
+
/>
|
|
182
|
+
|
|
183
|
+
<!-- Back-face ghost outlines (always faint, accent on selection). -->
|
|
184
|
+
<polygon
|
|
185
|
+
class=${this._ghostClass('north')}
|
|
186
|
+
points="118,97 198,97 198,41 118,41"
|
|
187
|
+
@click=${() => this._select('north')}
|
|
188
|
+
/>
|
|
189
|
+
<polygon
|
|
190
|
+
class=${this._ghostClass('west')}
|
|
191
|
+
points="118,97 90,125 90,69 118,41"
|
|
192
|
+
@click=${() => this._select('west')}
|
|
193
|
+
/>
|
|
194
|
+
<polygon
|
|
195
|
+
class=${this._ghostClass('floor')}
|
|
196
|
+
points="118,97 198,97 170,125 90,125"
|
|
197
|
+
@click=${() => this._select('floor')}
|
|
198
|
+
/>
|
|
199
|
+
</svg>
|
|
200
|
+
|
|
201
|
+
${this._renderLabel('ceiling', 144, 20)} ${this._renderLabel('floor', 144, 146)}
|
|
202
|
+
${this._renderLabel('east', 220, 83)} ${this._renderLabel('west', 38, 83)}
|
|
203
|
+
${this._renderLabel('north', 220, 51)} ${this._renderLabel('south', 38, 115)}
|
|
204
|
+
</div>
|
|
205
|
+
|
|
206
|
+
<div class="face-detail">
|
|
207
|
+
<div class="face-detail-title">
|
|
208
|
+
<span><ox-i18n msgid="label.${this._selected}">${this._selected}</ox-i18n></span>
|
|
209
|
+
<small>${AXIS_LABEL[this._selected]}</small>
|
|
210
|
+
</div>
|
|
211
|
+
|
|
212
|
+
<div class="row">
|
|
213
|
+
<label><ox-i18n msgid="label.visible">visible</ox-i18n></label>
|
|
214
|
+
<div class="ctl">
|
|
215
|
+
<input type="checkbox" ?checked=${sel.visible !== false} @change=${this._onVisibleChange} />
|
|
216
|
+
</div>
|
|
217
|
+
</div>
|
|
218
|
+
|
|
219
|
+
<div class="fill-row">
|
|
220
|
+
<ox-input-fill-style .value=${sel.fillStyle} fullwidth @change=${this._onFillStyleChange}>
|
|
221
|
+
</ox-input-fill-style>
|
|
222
|
+
</div>
|
|
223
|
+
|
|
224
|
+
<div class="row">
|
|
225
|
+
<label><ox-i18n msgid="label.alpha">alpha</ox-i18n></label>
|
|
226
|
+
<div class="ctl">
|
|
227
|
+
<input
|
|
228
|
+
type="range"
|
|
229
|
+
min="0"
|
|
230
|
+
max="1"
|
|
231
|
+
step="0.05"
|
|
232
|
+
.value=${String((_d = sel.alpha) !== null && _d !== void 0 ? _d : 1)}
|
|
233
|
+
@input=${this._onAlphaChange}
|
|
234
|
+
/>
|
|
235
|
+
<span class="alpha-readout">${((_e = sel.alpha) !== null && _e !== void 0 ? _e : 1).toFixed(2)}</span>
|
|
236
|
+
</div>
|
|
237
|
+
</div>
|
|
238
|
+
|
|
239
|
+
<div class="row">
|
|
240
|
+
<label><ox-i18n msgid="label.rotation">rotation</ox-i18n></label>
|
|
241
|
+
<div class="ctl">
|
|
242
|
+
<select .value=${String((_f = sel.rotation) !== null && _f !== void 0 ? _f : 0)} @change=${this._onRotationChange}>
|
|
243
|
+
<option value="0">0°</option>
|
|
244
|
+
<option value="90">90°</option>
|
|
245
|
+
<option value="180">180°</option>
|
|
246
|
+
<option value="270">270°</option>
|
|
247
|
+
</select>
|
|
248
|
+
<label class="mirror-toggle">
|
|
249
|
+
<input type="checkbox" ?checked=${sel.mirror === true} @change=${this._onMirrorChange} />
|
|
250
|
+
<ox-i18n msgid="label.mirror">mirror</ox-i18n>
|
|
251
|
+
</label>
|
|
252
|
+
</div>
|
|
253
|
+
</div>
|
|
254
|
+
|
|
255
|
+
<div class="actions">
|
|
256
|
+
<button @click=${this._copyToOpposite} title="Copy current face to opposite">
|
|
257
|
+
↔ <ox-i18n msgid="label.copy-to-opposite">opposite</ox-i18n>
|
|
258
|
+
</button>
|
|
259
|
+
<button @click=${this._copyToAllWalls} title="Copy current face to all 4 walls">
|
|
260
|
+
<ox-i18n msgid="label.copy-to-walls">all walls</ox-i18n>
|
|
261
|
+
</button>
|
|
262
|
+
</div>
|
|
263
|
+
</div>
|
|
264
|
+
`;
|
|
265
|
+
}
|
|
266
|
+
};
|
|
267
|
+
OxInputBackdropFaces.styles = css `
|
|
268
|
+
:host {
|
|
269
|
+
display: block;
|
|
270
|
+
font: 12px Arial, sans-serif;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
.cube-picker {
|
|
274
|
+
position: relative;
|
|
275
|
+
width: 100%;
|
|
276
|
+
max-width: 260px;
|
|
277
|
+
height: 160px;
|
|
278
|
+
margin: 0 auto 8px;
|
|
279
|
+
}
|
|
280
|
+
.cube-picker svg {
|
|
281
|
+
display: block;
|
|
282
|
+
width: 100%;
|
|
283
|
+
height: 100%;
|
|
284
|
+
overflow: visible;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
.face-poly {
|
|
288
|
+
cursor: pointer;
|
|
289
|
+
stroke: #3a3f4a;
|
|
290
|
+
stroke-width: 1;
|
|
291
|
+
stroke-linejoin: round;
|
|
292
|
+
transition:
|
|
293
|
+
filter 0.15s,
|
|
294
|
+
stroke 0.15s,
|
|
295
|
+
stroke-width 0.15s;
|
|
296
|
+
}
|
|
297
|
+
.face-poly:hover {
|
|
298
|
+
filter: brightness(1.15);
|
|
299
|
+
}
|
|
300
|
+
.face-poly.selected {
|
|
301
|
+
stroke: var(--md-sys-color-primary, #e15c5c);
|
|
302
|
+
stroke-width: 2.5;
|
|
303
|
+
}
|
|
304
|
+
.face-poly.hidden-face {
|
|
305
|
+
stroke-dasharray: 3 2;
|
|
306
|
+
opacity: 0.4;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
/* 뒷면 3 개 (north/west/floor) — 항상 dashed 프레임으로 희미하게 표시.
|
|
310
|
+
선택되면 accent 컬러로 강조되어 라벨 highlight 와 함께 시각적 feedback. */
|
|
311
|
+
.face-ghost {
|
|
312
|
+
cursor: pointer;
|
|
313
|
+
fill: none;
|
|
314
|
+
stroke: #8a93a6;
|
|
315
|
+
stroke-width: 1;
|
|
316
|
+
stroke-dasharray: 3 3;
|
|
317
|
+
stroke-linejoin: round;
|
|
318
|
+
opacity: 0.4;
|
|
319
|
+
pointer-events: stroke;
|
|
320
|
+
transition:
|
|
321
|
+
stroke 0.15s,
|
|
322
|
+
stroke-width 0.15s,
|
|
323
|
+
opacity 0.15s;
|
|
324
|
+
}
|
|
325
|
+
.face-ghost:hover {
|
|
326
|
+
opacity: 0.85;
|
|
327
|
+
stroke: var(--md-sys-color-primary, #e15c5c);
|
|
328
|
+
}
|
|
329
|
+
.face-ghost.selected {
|
|
330
|
+
stroke: var(--md-sys-color-primary, #e15c5c);
|
|
331
|
+
stroke-width: 2;
|
|
332
|
+
opacity: 1;
|
|
333
|
+
}
|
|
334
|
+
.face-ghost.invisible {
|
|
335
|
+
opacity: 0.2;
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
.face-label {
|
|
339
|
+
position: absolute;
|
|
340
|
+
display: inline-flex;
|
|
341
|
+
align-items: center;
|
|
342
|
+
gap: 4px;
|
|
343
|
+
padding: 2px 6px 2px 4px;
|
|
344
|
+
font: 600 10px Arial, sans-serif;
|
|
345
|
+
background: var(--md-sys-color-surface, #fff);
|
|
346
|
+
border: 1px solid var(--md-sys-color-outline-variant, #d8dde6);
|
|
347
|
+
border-radius: 10px;
|
|
348
|
+
cursor: pointer;
|
|
349
|
+
user-select: none;
|
|
350
|
+
transform: translate(-50%, -50%);
|
|
351
|
+
white-space: nowrap;
|
|
352
|
+
transition:
|
|
353
|
+
border-color 0.15s,
|
|
354
|
+
background 0.15s,
|
|
355
|
+
color 0.15s;
|
|
356
|
+
text-transform: capitalize;
|
|
357
|
+
}
|
|
358
|
+
.face-label:hover {
|
|
359
|
+
border-color: var(--md-sys-color-primary, #e15c5c);
|
|
360
|
+
}
|
|
361
|
+
.face-label.selected {
|
|
362
|
+
border-color: var(--md-sys-color-primary, #e15c5c);
|
|
363
|
+
background: var(--md-sys-color-primary-container, #fde7e7);
|
|
364
|
+
color: var(--md-sys-color-on-primary-container, #b91c1c);
|
|
365
|
+
}
|
|
366
|
+
.face-label .swatch {
|
|
367
|
+
width: 12px;
|
|
368
|
+
height: 12px;
|
|
369
|
+
border-radius: 2px;
|
|
370
|
+
border: 1px solid rgba(0, 0, 0, 0.15);
|
|
371
|
+
flex: none;
|
|
372
|
+
}
|
|
373
|
+
.face-label .swatch[data-empty] {
|
|
374
|
+
background: repeating-linear-gradient(45deg, #fff, #fff 2px, #ccc 2px, #ccc 4px);
|
|
375
|
+
}
|
|
376
|
+
.face-label .eye {
|
|
377
|
+
font-size: 9px;
|
|
378
|
+
opacity: 0.55;
|
|
379
|
+
margin-left: 1px;
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
.face-detail {
|
|
383
|
+
border-top: 1px dashed var(--md-sys-color-outline-variant, #d8dde6);
|
|
384
|
+
padding-top: 10px;
|
|
385
|
+
margin-top: 4px;
|
|
386
|
+
}
|
|
387
|
+
.face-detail-title {
|
|
388
|
+
display: flex;
|
|
389
|
+
justify-content: space-between;
|
|
390
|
+
align-items: baseline;
|
|
391
|
+
font-weight: 600;
|
|
392
|
+
font-size: 11px;
|
|
393
|
+
color: var(--md-sys-color-primary, #e15c5c);
|
|
394
|
+
text-transform: uppercase;
|
|
395
|
+
letter-spacing: 0.5px;
|
|
396
|
+
margin-bottom: 8px;
|
|
397
|
+
}
|
|
398
|
+
.face-detail-title small {
|
|
399
|
+
font-weight: 400;
|
|
400
|
+
text-transform: none;
|
|
401
|
+
letter-spacing: 0;
|
|
402
|
+
color: var(--md-sys-color-on-secondary-container, #8a93a6);
|
|
403
|
+
font: 10px monospace;
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
.row {
|
|
407
|
+
display: grid;
|
|
408
|
+
grid-template-columns: 60px 1fr;
|
|
409
|
+
gap: 8px;
|
|
410
|
+
align-items: center;
|
|
411
|
+
margin-bottom: 6px;
|
|
412
|
+
}
|
|
413
|
+
.row > label {
|
|
414
|
+
text-align: right;
|
|
415
|
+
font-size: 11px;
|
|
416
|
+
color: var(--md-sys-color-on-secondary-container, #6b7280);
|
|
417
|
+
}
|
|
418
|
+
.row .ctl {
|
|
419
|
+
display: flex;
|
|
420
|
+
align-items: center;
|
|
421
|
+
gap: 6px;
|
|
422
|
+
}
|
|
423
|
+
.ctl input[type='range'] {
|
|
424
|
+
flex: 1;
|
|
425
|
+
accent-color: var(--md-sys-color-primary, #e15c5c);
|
|
426
|
+
}
|
|
427
|
+
.ctl input[type='checkbox'] {
|
|
428
|
+
accent-color: var(--md-sys-color-primary, #e15c5c);
|
|
429
|
+
}
|
|
430
|
+
.alpha-readout {
|
|
431
|
+
width: 30px;
|
|
432
|
+
text-align: right;
|
|
433
|
+
font: 11px monospace;
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
/* Rotation select + mirror toggle — actions 버튼과 동일한 border 스타일. */
|
|
437
|
+
.row select,
|
|
438
|
+
.row .mirror-toggle {
|
|
439
|
+
font: 10px Arial, sans-serif;
|
|
440
|
+
padding: 5px 6px;
|
|
441
|
+
border: 1px solid var(--md-sys-color-outline-variant, #d8dde6);
|
|
442
|
+
border-radius: 4px;
|
|
443
|
+
background: var(--md-sys-color-surface, #fff);
|
|
444
|
+
color: inherit;
|
|
445
|
+
cursor: pointer;
|
|
446
|
+
}
|
|
447
|
+
.row select {
|
|
448
|
+
flex: 1;
|
|
449
|
+
outline: none;
|
|
450
|
+
}
|
|
451
|
+
.row select:hover,
|
|
452
|
+
.row .mirror-toggle:hover {
|
|
453
|
+
border-color: var(--md-sys-color-primary, #e15c5c);
|
|
454
|
+
color: var(--md-sys-color-primary, #e15c5c);
|
|
455
|
+
}
|
|
456
|
+
.row .mirror-toggle {
|
|
457
|
+
display: inline-flex;
|
|
458
|
+
align-items: center;
|
|
459
|
+
gap: 4px;
|
|
460
|
+
}
|
|
461
|
+
.row .mirror-toggle input[type='checkbox'] {
|
|
462
|
+
margin: 0;
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
.fill-row {
|
|
466
|
+
margin-bottom: 6px;
|
|
467
|
+
}
|
|
468
|
+
ox-input-fill-style {
|
|
469
|
+
font: 12px Arial, sans-serif;
|
|
470
|
+
display: block;
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
.actions {
|
|
474
|
+
margin-top: 8px;
|
|
475
|
+
display: flex;
|
|
476
|
+
gap: 6px;
|
|
477
|
+
}
|
|
478
|
+
.actions button {
|
|
479
|
+
flex: 1;
|
|
480
|
+
font: 10px Arial, sans-serif;
|
|
481
|
+
padding: 5px 6px;
|
|
482
|
+
border: 1px solid var(--md-sys-color-outline-variant, #d8dde6);
|
|
483
|
+
border-radius: 4px;
|
|
484
|
+
background: var(--md-sys-color-surface, #fff);
|
|
485
|
+
color: inherit;
|
|
486
|
+
cursor: pointer;
|
|
487
|
+
}
|
|
488
|
+
.actions button:hover {
|
|
489
|
+
border-color: var(--md-sys-color-primary, #e15c5c);
|
|
490
|
+
color: var(--md-sys-color-primary, #e15c5c);
|
|
491
|
+
}
|
|
492
|
+
`;
|
|
493
|
+
__decorate([
|
|
494
|
+
property({ type: Object })
|
|
495
|
+
], OxInputBackdropFaces.prototype, "value", void 0);
|
|
496
|
+
__decorate([
|
|
497
|
+
state()
|
|
498
|
+
], OxInputBackdropFaces.prototype, "_selected", void 0);
|
|
499
|
+
OxInputBackdropFaces = __decorate([
|
|
500
|
+
customElement('ox-input-backdrop-faces')
|
|
501
|
+
], OxInputBackdropFaces);
|
|
502
|
+
export { OxInputBackdropFaces };
|
|
503
|
+
let OxPropertyEditorBackdropFaces = class OxPropertyEditorBackdropFaces extends OxPropertyEditor {
|
|
504
|
+
editorTemplate(value, spec) {
|
|
505
|
+
// 큐브 + detail panel 이 좁은 column 에서는 답답하므로 기본 fullwidth=true.
|
|
506
|
+
// PropertySpec.editor.fullwidth = false 로 좁게 둘 수도 있다.
|
|
507
|
+
const { fullwidth = true } = spec.editor || {};
|
|
508
|
+
return html `
|
|
509
|
+
<ox-input-backdrop-faces
|
|
510
|
+
id="editor"
|
|
511
|
+
.value=${value}
|
|
512
|
+
?fullwidth=${fullwidth}
|
|
513
|
+
?disabled=${this.disabled}
|
|
514
|
+
></ox-input-backdrop-faces>
|
|
515
|
+
`;
|
|
516
|
+
}
|
|
517
|
+
};
|
|
518
|
+
OxPropertyEditorBackdropFaces.styles = [
|
|
519
|
+
...OxPropertyEditor.styles,
|
|
520
|
+
css `
|
|
521
|
+
ox-input-backdrop-faces#editor {
|
|
522
|
+
font: 12px Arial, sans-serif;
|
|
523
|
+
}
|
|
524
|
+
`
|
|
525
|
+
];
|
|
526
|
+
OxPropertyEditorBackdropFaces = __decorate([
|
|
527
|
+
customElement('ox-property-editor-backdrop-faces')
|
|
528
|
+
], OxPropertyEditorBackdropFaces);
|
|
529
|
+
export { OxPropertyEditorBackdropFaces };
|
|
530
|
+
//# sourceMappingURL=ox-property-editor-backdrop-faces.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ox-property-editor-backdrop-faces.js","sourceRoot":"","sources":["../../src/ox-property-editor-backdrop-faces.ts"],"names":[],"mappings":"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","sourcesContent":["import '@operato/input/ox-input-fill-style.js'\nimport '@operato/i18n/ox-i18n.js'\n\nimport { css, html, LitElement, nothing, type TemplateResult } from 'lit'\nimport { customElement, property, state } from 'lit/decorators.js'\n\nimport { OxPropertyEditor } from './ox-property-editor.js'\nimport type { PropertySpec } from './types.js'\n\n/**\n * Backdrop 의 6개 면 (east/west/north/south/ceiling/floor) 을 한 번에\n * 편집하는 합성 에디터.\n *\n * 면당 5개 속성 (fillStyle/visible/alpha/rotation/mirror) 을 flat NATURE 로\n * 펼치면 30+개 항목 폼이 되어 좌표 감각이 사라진다. 이 에디터는:\n * 1) cabinet projection cube 로 6면을 시각화 — 앞 3면(ceiling/east/south)\n * 은 fill polygon, 뒤 3면(north/west/floor)은 dashed ghost outline\n * 2) 각 면 라벨에 fillStyle swatch — 6면 색 분포 한 눈에\n * 3) 면/라벨 클릭 → 그 면 detail 패널만 표시\n * 4) \"반대편 복사\" / \"벽 4면 일괄\" 단축 동작\n *\n * value 형태:\n * {\n * east: { fillStyle, visible, alpha, rotation, mirror },\n * west: { ... },\n * ...\n * }\n */\n\ntype FaceName = 'east' | 'west' | 'north' | 'south' | 'ceiling' | 'floor'\nconst OPPOSITE: Record<FaceName, FaceName> = {\n east: 'west',\n west: 'east',\n north: 'south',\n south: 'north',\n ceiling: 'floor',\n floor: 'ceiling'\n}\nconst AXIS_LABEL: Record<FaceName, string> = {\n east: '+X',\n west: '−X',\n north: '−Z',\n south: '+Z',\n ceiling: '+Y',\n floor: '−Y'\n}\n\ninterface FaceState {\n fillStyle?: any\n visible?: boolean\n alpha?: number\n rotation?: 0 | 90 | 180 | 270\n mirror?: boolean\n}\ntype FacesValue = Partial<Record<FaceName, FaceState>>\n\nconst DEFAULT_FACES: Record<FaceName, FaceState> = {\n east: { fillStyle: '#dde2e8', visible: true, alpha: 0.35, rotation: 0, mirror: false },\n west: { fillStyle: '#dde2e8', visible: true, alpha: 0.35, rotation: 0, mirror: false },\n north: { fillStyle: '#dde2e8', visible: true, alpha: 0.35, rotation: 0, mirror: false },\n south: { fillStyle: '#dde2e8', visible: true, alpha: 0.35, rotation: 0, mirror: false },\n ceiling: { fillStyle: '#e8e8ec', visible: true, alpha: 1.0, rotation: 0, mirror: false },\n floor: { fillStyle: '#9c9c9c', visible: true, alpha: 1.0, rotation: 0, mirror: false }\n}\n\n@customElement('ox-input-backdrop-faces')\nexport class OxInputBackdropFaces extends LitElement {\n @property({ type: Object }) value: FacesValue = {}\n @state() private _selected: FaceName = 'ceiling'\n\n static styles = css`\n :host {\n display: block;\n font: 12px Arial, sans-serif;\n }\n\n .cube-picker {\n position: relative;\n width: 100%;\n max-width: 260px;\n height: 160px;\n margin: 0 auto 8px;\n }\n .cube-picker svg {\n display: block;\n width: 100%;\n height: 100%;\n overflow: visible;\n }\n\n .face-poly {\n cursor: pointer;\n stroke: #3a3f4a;\n stroke-width: 1;\n stroke-linejoin: round;\n transition:\n filter 0.15s,\n stroke 0.15s,\n stroke-width 0.15s;\n }\n .face-poly:hover {\n filter: brightness(1.15);\n }\n .face-poly.selected {\n stroke: var(--md-sys-color-primary, #e15c5c);\n stroke-width: 2.5;\n }\n .face-poly.hidden-face {\n stroke-dasharray: 3 2;\n opacity: 0.4;\n }\n\n /* 뒷면 3 개 (north/west/floor) — 항상 dashed 프레임으로 희미하게 표시.\n 선택되면 accent 컬러로 강조되어 라벨 highlight 와 함께 시각적 feedback. */\n .face-ghost {\n cursor: pointer;\n fill: none;\n stroke: #8a93a6;\n stroke-width: 1;\n stroke-dasharray: 3 3;\n stroke-linejoin: round;\n opacity: 0.4;\n pointer-events: stroke;\n transition:\n stroke 0.15s,\n stroke-width 0.15s,\n opacity 0.15s;\n }\n .face-ghost:hover {\n opacity: 0.85;\n stroke: var(--md-sys-color-primary, #e15c5c);\n }\n .face-ghost.selected {\n stroke: var(--md-sys-color-primary, #e15c5c);\n stroke-width: 2;\n opacity: 1;\n }\n .face-ghost.invisible {\n opacity: 0.2;\n }\n\n .face-label {\n position: absolute;\n display: inline-flex;\n align-items: center;\n gap: 4px;\n padding: 2px 6px 2px 4px;\n font: 600 10px Arial, sans-serif;\n background: var(--md-sys-color-surface, #fff);\n border: 1px solid var(--md-sys-color-outline-variant, #d8dde6);\n border-radius: 10px;\n cursor: pointer;\n user-select: none;\n transform: translate(-50%, -50%);\n white-space: nowrap;\n transition:\n border-color 0.15s,\n background 0.15s,\n color 0.15s;\n text-transform: capitalize;\n }\n .face-label:hover {\n border-color: var(--md-sys-color-primary, #e15c5c);\n }\n .face-label.selected {\n border-color: var(--md-sys-color-primary, #e15c5c);\n background: var(--md-sys-color-primary-container, #fde7e7);\n color: var(--md-sys-color-on-primary-container, #b91c1c);\n }\n .face-label .swatch {\n width: 12px;\n height: 12px;\n border-radius: 2px;\n border: 1px solid rgba(0, 0, 0, 0.15);\n flex: none;\n }\n .face-label .swatch[data-empty] {\n background: repeating-linear-gradient(45deg, #fff, #fff 2px, #ccc 2px, #ccc 4px);\n }\n .face-label .eye {\n font-size: 9px;\n opacity: 0.55;\n margin-left: 1px;\n }\n\n .face-detail {\n border-top: 1px dashed var(--md-sys-color-outline-variant, #d8dde6);\n padding-top: 10px;\n margin-top: 4px;\n }\n .face-detail-title {\n display: flex;\n justify-content: space-between;\n align-items: baseline;\n font-weight: 600;\n font-size: 11px;\n color: var(--md-sys-color-primary, #e15c5c);\n text-transform: uppercase;\n letter-spacing: 0.5px;\n margin-bottom: 8px;\n }\n .face-detail-title small {\n font-weight: 400;\n text-transform: none;\n letter-spacing: 0;\n color: var(--md-sys-color-on-secondary-container, #8a93a6);\n font: 10px monospace;\n }\n\n .row {\n display: grid;\n grid-template-columns: 60px 1fr;\n gap: 8px;\n align-items: center;\n margin-bottom: 6px;\n }\n .row > label {\n text-align: right;\n font-size: 11px;\n color: var(--md-sys-color-on-secondary-container, #6b7280);\n }\n .row .ctl {\n display: flex;\n align-items: center;\n gap: 6px;\n }\n .ctl input[type='range'] {\n flex: 1;\n accent-color: var(--md-sys-color-primary, #e15c5c);\n }\n .ctl input[type='checkbox'] {\n accent-color: var(--md-sys-color-primary, #e15c5c);\n }\n .alpha-readout {\n width: 30px;\n text-align: right;\n font: 11px monospace;\n }\n\n /* Rotation select + mirror toggle — actions 버튼과 동일한 border 스타일. */\n .row select,\n .row .mirror-toggle {\n font: 10px Arial, sans-serif;\n padding: 5px 6px;\n border: 1px solid var(--md-sys-color-outline-variant, #d8dde6);\n border-radius: 4px;\n background: var(--md-sys-color-surface, #fff);\n color: inherit;\n cursor: pointer;\n }\n .row select {\n flex: 1;\n outline: none;\n }\n .row select:hover,\n .row .mirror-toggle:hover {\n border-color: var(--md-sys-color-primary, #e15c5c);\n color: var(--md-sys-color-primary, #e15c5c);\n }\n .row .mirror-toggle {\n display: inline-flex;\n align-items: center;\n gap: 4px;\n }\n .row .mirror-toggle input[type='checkbox'] {\n margin: 0;\n }\n\n .fill-row {\n margin-bottom: 6px;\n }\n ox-input-fill-style {\n font: 12px Arial, sans-serif;\n display: block;\n }\n\n .actions {\n margin-top: 8px;\n display: flex;\n gap: 6px;\n }\n .actions button {\n flex: 1;\n font: 10px Arial, sans-serif;\n padding: 5px 6px;\n border: 1px solid var(--md-sys-color-outline-variant, #d8dde6);\n border-radius: 4px;\n background: var(--md-sys-color-surface, #fff);\n color: inherit;\n cursor: pointer;\n }\n .actions button:hover {\n border-color: var(--md-sys-color-primary, #e15c5c);\n color: var(--md-sys-color-primary, #e15c5c);\n }\n `\n\n private _face(name: FaceName): FaceState {\n return { ...DEFAULT_FACES[name], ...(this.value?.[name] ?? {}) }\n }\n\n /** fillStyle 의 대표 색을 swatch 용으로 추출. 없으면 undefined → hatched 표시. */\n private _swatchColor(name: FaceName): string | undefined {\n const fs = this._face(name).fillStyle\n if (typeof fs === 'string' && fs && fs !== 'transparent') return fs\n if (fs && typeof fs === 'object') {\n if (fs.type === 'gradient' && Array.isArray(fs.colorStops) && fs.colorStops[0]?.color) {\n return fs.colorStops[0].color\n }\n if (fs.color) return fs.color\n }\n return undefined\n }\n\n private _select(name: FaceName) {\n this._selected = name\n }\n\n private _commit(next: FacesValue) {\n this.value = next\n this.dispatchEvent(new CustomEvent('change', { bubbles: true, composed: true }))\n }\n\n private _patchFace(name: FaceName, patch: Partial<FaceState>) {\n const next: FacesValue = { ...(this.value || {}) }\n next[name] = { ...this._face(name), ...patch }\n this._commit(next)\n }\n\n private _onFillStyleChange(e: Event) {\n e.stopPropagation()\n const target = e.target as { value?: any }\n this._patchFace(this._selected, { fillStyle: target.value })\n }\n\n private _onVisibleChange(e: Event) {\n e.stopPropagation()\n const target = e.target as HTMLInputElement\n this._patchFace(this._selected, { visible: target.checked })\n }\n\n private _onAlphaChange(e: Event) {\n e.stopPropagation()\n const target = e.target as HTMLInputElement\n const v = parseFloat(target.value)\n const alpha = Number.isFinite(v) ? Math.max(0, Math.min(1, v)) : 1\n this._patchFace(this._selected, { alpha })\n }\n\n private _onRotationChange(e: Event) {\n e.stopPropagation()\n const target = e.target as HTMLSelectElement\n const n = parseInt(target.value, 10)\n const rotation: 0 | 90 | 180 | 270 = n === 90 || n === 180 || n === 270 ? n : 0\n this._patchFace(this._selected, { rotation })\n }\n\n private _onMirrorChange(e: Event) {\n e.stopPropagation()\n const target = e.target as HTMLInputElement\n this._patchFace(this._selected, { mirror: target.checked })\n }\n\n private _copyToOpposite() {\n const src = this._face(this._selected)\n const opposite = OPPOSITE[this._selected]\n const next: FacesValue = { ...(this.value || {}) }\n next[opposite] = { ...src }\n this._commit(next)\n }\n\n private _copyToAllWalls() {\n const src = this._face(this._selected)\n const next: FacesValue = { ...(this.value || {}) }\n for (const w of ['east', 'west', 'north', 'south'] as const) {\n next[w] = { ...src }\n }\n this._commit(next)\n }\n\n private _renderLabel(name: FaceName, x: number, y: number) {\n const f = this._face(name)\n const swatch = this._swatchColor(name)\n const selected = this._selected === name\n return html`\n <div\n class=\"face-label ${selected ? 'selected' : ''}\"\n style=\"left: ${x}px; top: ${y}px;\"\n @click=${() => this._select(name)}\n title=${`${name} (${AXIS_LABEL[name]})`}\n >\n <span\n class=\"swatch\"\n style=${swatch ? `background: ${swatch};` : ''}\n ?data-empty=${!swatch}\n ></span>\n <ox-i18n msgid=\"label.${name}\">${name}</ox-i18n>\n ${f.visible === false ? html`<span class=\"eye\" title=\"hidden\">⊘</span>` : nothing}\n </div>\n `\n }\n\n private _faceClass(name: FaceName): string {\n const cls = ['face-poly']\n if (this._selected === name) cls.push('selected')\n if (this._face(name).visible === false) cls.push('hidden-face')\n return cls.join(' ')\n }\n\n private _ghostClass(name: FaceName): string {\n const cls = ['face-ghost']\n if (this._selected === name) cls.push('selected')\n if (this._face(name).visible === false) cls.push('invisible')\n return cls.join(' ')\n }\n\n override render() {\n const sel = this._face(this._selected)\n return html`\n <div class=\"cube-picker\">\n <svg viewBox=\"0 0 288 160\" aria-label=\"Backdrop face picker\">\n <!-- Cabinet projection — south face 정면 1:1 (큰 사각형),\n east axis 는 30° 위방향으로 절반 foreshortened (좁게 보임),\n vertical 은 0.7 배로 압축해 안정감 있는 납작한 형태.\n L=80, depth=40, yScale=0.7 → vertical edge 56.\n south face (z=L) 좌하단을 (90,125) 로 배치. -->\n\n <!-- Ceiling (+Y, top) — trapezoid -->\n <polygon\n class=${this._faceClass('ceiling')}\n points=\"90,69 170,69 198,41 118,41\"\n fill=\"${this._swatchColor('ceiling') ?? '#fff8e1'}\"\n @click=${() => this._select('ceiling')}\n />\n <!-- East face (+X, right) — narrow parallelogram -->\n <polygon\n class=${this._faceClass('east')}\n points=\"170,125 198,97 198,41 170,69\"\n fill=\"${this._swatchColor('east') ?? '#ffcdd2'}\"\n @click=${() => this._select('east')}\n />\n <!-- South face (+Z, front) — dominant rectangle 80×56 -->\n <polygon\n class=${this._faceClass('south')}\n points=\"90,125 170,125 170,69 90,69\"\n fill=\"${this._swatchColor('south') ?? '#c8e6c9'}\"\n @click=${() => this._select('south')}\n />\n\n <!-- Back-face ghost outlines (always faint, accent on selection). -->\n <polygon\n class=${this._ghostClass('north')}\n points=\"118,97 198,97 198,41 118,41\"\n @click=${() => this._select('north')}\n />\n <polygon\n class=${this._ghostClass('west')}\n points=\"118,97 90,125 90,69 118,41\"\n @click=${() => this._select('west')}\n />\n <polygon\n class=${this._ghostClass('floor')}\n points=\"118,97 198,97 170,125 90,125\"\n @click=${() => this._select('floor')}\n />\n </svg>\n\n ${this._renderLabel('ceiling', 144, 20)} ${this._renderLabel('floor', 144, 146)}\n ${this._renderLabel('east', 220, 83)} ${this._renderLabel('west', 38, 83)}\n ${this._renderLabel('north', 220, 51)} ${this._renderLabel('south', 38, 115)}\n </div>\n\n <div class=\"face-detail\">\n <div class=\"face-detail-title\">\n <span><ox-i18n msgid=\"label.${this._selected}\">${this._selected}</ox-i18n></span>\n <small>${AXIS_LABEL[this._selected]}</small>\n </div>\n\n <div class=\"row\">\n <label><ox-i18n msgid=\"label.visible\">visible</ox-i18n></label>\n <div class=\"ctl\">\n <input type=\"checkbox\" ?checked=${sel.visible !== false} @change=${this._onVisibleChange} />\n </div>\n </div>\n\n <div class=\"fill-row\">\n <ox-input-fill-style .value=${sel.fillStyle} fullwidth @change=${this._onFillStyleChange}>\n </ox-input-fill-style>\n </div>\n\n <div class=\"row\">\n <label><ox-i18n msgid=\"label.alpha\">alpha</ox-i18n></label>\n <div class=\"ctl\">\n <input\n type=\"range\"\n min=\"0\"\n max=\"1\"\n step=\"0.05\"\n .value=${String(sel.alpha ?? 1)}\n @input=${this._onAlphaChange}\n />\n <span class=\"alpha-readout\">${(sel.alpha ?? 1).toFixed(2)}</span>\n </div>\n </div>\n\n <div class=\"row\">\n <label><ox-i18n msgid=\"label.rotation\">rotation</ox-i18n></label>\n <div class=\"ctl\">\n <select .value=${String(sel.rotation ?? 0)} @change=${this._onRotationChange}>\n <option value=\"0\">0°</option>\n <option value=\"90\">90°</option>\n <option value=\"180\">180°</option>\n <option value=\"270\">270°</option>\n </select>\n <label class=\"mirror-toggle\">\n <input type=\"checkbox\" ?checked=${sel.mirror === true} @change=${this._onMirrorChange} />\n <ox-i18n msgid=\"label.mirror\">mirror</ox-i18n>\n </label>\n </div>\n </div>\n\n <div class=\"actions\">\n <button @click=${this._copyToOpposite} title=\"Copy current face to opposite\">\n ↔ <ox-i18n msgid=\"label.copy-to-opposite\">opposite</ox-i18n>\n </button>\n <button @click=${this._copyToAllWalls} title=\"Copy current face to all 4 walls\">\n <ox-i18n msgid=\"label.copy-to-walls\">all walls</ox-i18n>\n </button>\n </div>\n </div>\n `\n }\n}\n\n@customElement('ox-property-editor-backdrop-faces')\nexport class OxPropertyEditorBackdropFaces extends OxPropertyEditor {\n static styles = [\n ...OxPropertyEditor.styles,\n css`\n ox-input-backdrop-faces#editor {\n font: 12px Arial, sans-serif;\n }\n `\n ]\n\n override editorTemplate(value: any, spec: PropertySpec): TemplateResult {\n // 큐브 + detail panel 이 좁은 column 에서는 답답하므로 기본 fullwidth=true.\n // PropertySpec.editor.fullwidth = false 로 좁게 둘 수도 있다.\n const { fullwidth = true } = spec.editor || {}\n return html`\n <ox-input-backdrop-faces\n id=\"editor\"\n .value=${value}\n ?fullwidth=${fullwidth}\n ?disabled=${this.disabled}\n ></ox-input-backdrop-faces>\n `\n }\n}\n"]}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import '@operato/input/ox-input-fill-style.js';
|
|
2
|
+
import { TemplateResult } from 'lit';
|
|
3
|
+
import { OxPropertyEditor } from './ox-property-editor.js';
|
|
4
|
+
import { PropertySpec } from './types.js';
|
|
5
|
+
/**
|
|
6
|
+
* Property editor for the COMPOSITE `FillStyle` type — the same widget
|
|
7
|
+
* used for the standard component-level `fillStyle` (color / pattern /
|
|
8
|
+
* gradient / image). Wraps `<ox-input-fill-style>` so that NATURE
|
|
9
|
+
* properties declared with `type: 'fill-style'` get the full editor in
|
|
10
|
+
* the property panel.
|
|
11
|
+
*
|
|
12
|
+
* Use this when a component exposes MULTIPLE fillStyle slots (e.g. a
|
|
13
|
+
* Backdrop's per-face fillStyles) and each needs the same rich editor.
|
|
14
|
+
* For a simple solid-color slot, use `type: 'color'` (which uses
|
|
15
|
+
* `<ox-input-color>` — string value, no pattern/gradient/image).
|
|
16
|
+
*/
|
|
17
|
+
export declare class OxPropertyEditorFillStyle extends OxPropertyEditor {
|
|
18
|
+
static styles: import("lit").CSSResult[];
|
|
19
|
+
editorTemplate(value: any, spec: PropertySpec): TemplateResult;
|
|
20
|
+
}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { __decorate } from "tslib";
|
|
2
|
+
import '@operato/input/ox-input-fill-style.js';
|
|
3
|
+
import { css, html } from 'lit';
|
|
4
|
+
import { customElement } from 'lit/decorators.js';
|
|
5
|
+
import { OxPropertyEditor } from './ox-property-editor.js';
|
|
6
|
+
/**
|
|
7
|
+
* Property editor for the COMPOSITE `FillStyle` type — the same widget
|
|
8
|
+
* used for the standard component-level `fillStyle` (color / pattern /
|
|
9
|
+
* gradient / image). Wraps `<ox-input-fill-style>` so that NATURE
|
|
10
|
+
* properties declared with `type: 'fill-style'` get the full editor in
|
|
11
|
+
* the property panel.
|
|
12
|
+
*
|
|
13
|
+
* Use this when a component exposes MULTIPLE fillStyle slots (e.g. a
|
|
14
|
+
* Backdrop's per-face fillStyles) and each needs the same rich editor.
|
|
15
|
+
* For a simple solid-color slot, use `type: 'color'` (which uses
|
|
16
|
+
* `<ox-input-color>` — string value, no pattern/gradient/image).
|
|
17
|
+
*/
|
|
18
|
+
let OxPropertyEditorFillStyle = class OxPropertyEditorFillStyle extends OxPropertyEditor {
|
|
19
|
+
editorTemplate(value, spec) {
|
|
20
|
+
// fillStyle 에디터는 색상/그라디언트/패턴/이미지 sub-controls 가
|
|
21
|
+
// 모두 펼쳐지면 폭이 부족하므로 기본 full row. 좁게 쓰고 싶으면
|
|
22
|
+
// PropertySpec.editor.fullwidth = false 로 override 가능.
|
|
23
|
+
const { fullwidth = true } = spec.editor || {};
|
|
24
|
+
return html `
|
|
25
|
+
<ox-input-fill-style
|
|
26
|
+
id="editor"
|
|
27
|
+
.value=${value}
|
|
28
|
+
placeholder=${spec.placeholder || ''}
|
|
29
|
+
.properties=${spec.property}
|
|
30
|
+
?fullwidth=${fullwidth}
|
|
31
|
+
?disabled=${this.disabled}
|
|
32
|
+
>
|
|
33
|
+
</ox-input-fill-style>
|
|
34
|
+
`;
|
|
35
|
+
}
|
|
36
|
+
};
|
|
37
|
+
OxPropertyEditorFillStyle.styles = [
|
|
38
|
+
...OxPropertyEditor.styles,
|
|
39
|
+
css `
|
|
40
|
+
/*
|
|
41
|
+
* ox-input-fill-style 내부의 radio + label 이 명시 font 가 없어
|
|
42
|
+
* 브라우저 기본 (~16px) 으로 폴백된다. property-grid 컨벤션 (12px)
|
|
43
|
+
* 에 맞춰 12px Arial 강제. inherit 하지 않는 form control 에는
|
|
44
|
+
* 명시 지정 필요.
|
|
45
|
+
*/
|
|
46
|
+
ox-input-fill-style#editor {
|
|
47
|
+
font: 12px Arial, sans-serif;
|
|
48
|
+
}
|
|
49
|
+
`
|
|
50
|
+
];
|
|
51
|
+
OxPropertyEditorFillStyle = __decorate([
|
|
52
|
+
customElement('ox-property-editor-fill-style')
|
|
53
|
+
], OxPropertyEditorFillStyle);
|
|
54
|
+
export { OxPropertyEditorFillStyle };
|
|
55
|
+
//# sourceMappingURL=ox-property-editor-fill-style.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ox-property-editor-fill-style.js","sourceRoot":"","sources":["../../src/ox-property-editor-fill-style.ts"],"names":[],"mappings":";AAAA,OAAO,uCAAuC,CAAA;AAE9C,OAAO,EAAE,GAAG,EAAE,IAAI,EAAkB,MAAM,KAAK,CAAA;AAC/C,OAAO,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAA;AAEjD,OAAO,EAAE,gBAAgB,EAAE,MAAM,yBAAyB,CAAA;AAG1D;;;;;;;;;;;GAWG;AAEI,IAAM,yBAAyB,GAA/B,MAAM,yBAA0B,SAAQ,gBAAgB;IAgB7D,cAAc,CAAC,KAAU,EAAE,IAAkB;QAC3C,gDAAgD;QAChD,0CAA0C;QAC1C,uDAAuD;QACvD,MAAM,EAAE,SAAS,GAAG,IAAI,EAAE,GAAG,IAAI,CAAC,MAAM,IAAI,EAAE,CAAA;QAE9C,OAAO,IAAI,CAAA;;;iBAGE,KAAK;sBACA,IAAI,CAAC,WAAW,IAAI,EAAE;sBACtB,IAAI,CAAC,QAAQ;qBACd,SAAS;oBACV,IAAI,CAAC,QAAQ;;;KAG5B,CAAA;IACH,CAAC;;AAhCM,gCAAM,GAAG;IACd,GAAG,gBAAgB,CAAC,MAAM;IAC1B,GAAG,CAAA;;;;;;;;;;KAUF;CACF,AAbY,CAaZ;AAdU,yBAAyB;IADrC,aAAa,CAAC,+BAA+B,CAAC;GAClC,yBAAyB,CAkCrC","sourcesContent":["import '@operato/input/ox-input-fill-style.js'\n\nimport { css, html, TemplateResult } from 'lit'\nimport { customElement } from 'lit/decorators.js'\n\nimport { OxPropertyEditor } from './ox-property-editor.js'\nimport { PropertySpec } from './types.js'\n\n/**\n * Property editor for the COMPOSITE `FillStyle` type — the same widget\n * used for the standard component-level `fillStyle` (color / pattern /\n * gradient / image). Wraps `<ox-input-fill-style>` so that NATURE\n * properties declared with `type: 'fill-style'` get the full editor in\n * the property panel.\n *\n * Use this when a component exposes MULTIPLE fillStyle slots (e.g. a\n * Backdrop's per-face fillStyles) and each needs the same rich editor.\n * For a simple solid-color slot, use `type: 'color'` (which uses\n * `<ox-input-color>` — string value, no pattern/gradient/image).\n */\n@customElement('ox-property-editor-fill-style')\nexport class OxPropertyEditorFillStyle extends OxPropertyEditor {\n static styles = [\n ...OxPropertyEditor.styles,\n css`\n /*\n * ox-input-fill-style 내부의 radio + label 이 명시 font 가 없어\n * 브라우저 기본 (~16px) 으로 폴백된다. property-grid 컨벤션 (12px)\n * 에 맞춰 12px Arial 강제. inherit 하지 않는 form control 에는\n * 명시 지정 필요.\n */\n ox-input-fill-style#editor {\n font: 12px Arial, sans-serif;\n }\n `\n ]\n\n editorTemplate(value: any, spec: PropertySpec): TemplateResult {\n // fillStyle 에디터는 색상/그라디언트/패턴/이미지 sub-controls 가\n // 모두 펼쳐지면 폭이 부족하므로 기본 full row. 좁게 쓰고 싶으면\n // PropertySpec.editor.fullwidth = false 로 override 가능.\n const { fullwidth = true } = spec.editor || {}\n\n return html`\n <ox-input-fill-style\n id=\"editor\"\n .value=${value}\n placeholder=${spec.placeholder || ''}\n .properties=${spec.property}\n ?fullwidth=${fullwidth}\n ?disabled=${this.disabled}\n >\n </ox-input-fill-style>\n `\n }\n}\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/typescript/lib/lib.esnext.float16.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../@types/global/index.d.ts","../../../node_modules/tslib/tslib.d.ts","../../../node_modules/tslib/modules/index.d.ts","../src/types.ts","../../../node_modules/@lit/reactive-element/development/css-tag.d.ts","../../../node_modules/@lit/reactive-element/development/reactive-controller.d.ts","../../../node_modules/@lit/reactive-element/development/reactive-element.d.ts","../../../node_modules/lit-html/development/directive.d.ts","../../../node_modules/@types/trusted-types/lib/index.d.ts","../../../node_modules/lit-html/development/lit-html.d.ts","../../../node_modules/lit-element/development/lit-element.d.ts","../../../node_modules/lit-html/development/is-server.d.ts","../../../node_modules/lit/development/index.d.ts","../../i18n/dist/src/ox-i18n.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/base.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/custom-element.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/property.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/state.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/event-options.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query-all.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query-async.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query-assigned-nodes.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query-assigned-elements.d.ts","../../../node_modules/lit/development/decorators.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/lodash-es/clonedeep.d.ts","../src/ox-property-editor.ts","../src/ox-properties-dynamic-view.ts","../src/index.ts","../../input/dist/src/ox-form-field.d.ts","../../input/dist/src/ox-input-3axis.d.ts","../src/ox-property-editor-3axis.ts","../../input/dist/src/ox-input-angle.d.ts","../../input/dist/src/ox-input-3dish.d.ts","../src/ox-property-editor-3dish.ts","../../../node_modules/@material/web/elevation/internal/elevation.d.ts","../../../node_modules/@material/web/elevation/elevation.d.ts","../../../node_modules/@material/web/internal/controller/attachable-controller.d.ts","../../../node_modules/@material/web/focus/internal/focus-ring.d.ts","../../../node_modules/@material/web/focus/md-focus-ring.d.ts","../../../node_modules/@material/web/ripple/internal/ripple.d.ts","../../../node_modules/@material/web/ripple/ripple.d.ts","../../../node_modules/@material/web/labs/behaviors/mixin.d.ts","../../../node_modules/@material/web/labs/behaviors/element-internals.d.ts","../../../node_modules/@material/web/internal/controller/form-submitter.d.ts","../../../node_modules/@material/web/button/internal/button.d.ts","../../../node_modules/@material/web/button/internal/elevated-button.d.ts","../../../node_modules/@material/web/button/elevated-button.d.ts","../src/ox-property-editor-action.ts","../src/ox-property-editor-angle.ts","../../input/dist/src/ox-checkbox.d.ts","../src/ox-property-editor-checkbox.ts","../../input/dist/src/ox-input-color.d.ts","../src/ox-property-editor-color.ts","../../../node_modules/@material/web/fab/internal/shared.d.ts","../../../node_modules/@material/web/fab/internal/fab.d.ts","../../../node_modules/@material/web/fab/fab.d.ts","../../../node_modules/@material/web/icon/internal/icon.d.ts","../../../node_modules/@material/web/icon/icon.d.ts","../../input/dist/src/ox-input-crontab.d.ts","../src/ox-property-editor-crontab.ts","../../../node_modules/@codemirror/state/dist/index.d.ts","../../../node_modules/style-mod/src/style-mod.d.ts","../../../node_modules/@codemirror/view/dist/index.d.ts","../../input/dist/src/ox-input-code.d.ts","../../../node_modules/@endo/immutable-arraybuffer/shim.d.ts","../../../node_modules/ses/types.d.ts","../../input/dist/src/ox-input-data.d.ts","../src/ox-property-editor-data.ts","../src/ox-property-editor-date.ts","../src/ox-property-editor-datetime.ts","../src/ox-property-editor-description.ts","../../input/dist/src/ox-input-duration.d.ts","../src/ox-property-editor-duration.ts","../../input/dist/src/ox-input-file.d.ts","../src/ox-property-editor-file.ts","../../input/dist/src/ox-input-color-stops.d.ts","../src/ox-property-editor-gradient-colorstops.ts","../../input/dist/src/ox-input-hashtags.d.ts","../src/ox-property-editor-hashtags.ts","../../input/dist/src/ox-input-image.d.ts","../src/ox-property-editor-image.ts","../../input/dist/src/ox-input-key-values.d.ts","../src/ox-property-editor-key-values.ts","../src/ox-property-editor-legend.ts","../../popup/dist/src/ox-popup.d.ts","../../popup/dist/src/ox-popup-list.d.ts","../../input/dist/src/ox-select.d.ts","../../input/dist/src/ox-input-mass-fraction.d.ts","../src/ox-property-editor-mass-fraction.ts","../src/ox-property-editor-month.ts","../../input/dist/src/ox-input-multiple-colors.d.ts","../src/ox-property-editor-multiple-colors.ts","../../../node_modules/lit-html/development/directives/if-defined.d.ts","../../../node_modules/lit/development/directives/if-defined.d.ts","../src/ox-property-editor-number.ts","../../input/dist/src/ox-input-options.d.ts","../src/ox-property-editor-options.ts","../../input/dist/src/ox-input-partition-keys.d.ts","../src/ox-property-editor-partition-keys.ts","../src/ox-property-editor-password.ts","../../input/dist/src/ox-input-range.d.ts","../src/ox-property-editor-range.ts","../../input/dist/src/ox-input-scene-component-id.d.ts","../src/ox-property-editor-scene-component-id.ts","../../input/dist/src/ox-input-secret.d.ts","../src/ox-property-editor-secret.ts","../src/ox-property-editor-select.ts","../../input/dist/src/ox-input-signature.d.ts","../src/ox-property-editor-signature.ts","../src/ox-property-editor-solid-colorstops.ts","../src/ox-property-editor-string.ts","../../input/dist/src/ox-input-table-column-config.d.ts","../src/ox-property-editor-table-column-config.ts","../../input/dist/src/ox-input-table.d.ts","../src/ox-property-editor-table.ts","../src/ox-property-editor-textarea.ts","../src/ox-property-editor-time.ts","../../popup/dist/src/ox-popup-menu.d.ts","../../popup/dist/src/ox-popup-menuitem.d.ts","../../../node_modules/@material/web/button/internal/filled-button.d.ts","../../../node_modules/@material/web/button/filled-button.d.ts","../../../node_modules/@material/web/button/internal/outlined-button.d.ts","../../../node_modules/@material/web/button/outlined-button.d.ts","../../popup/dist/src/ox-prompt.d.ts","../../popup/dist/src/ox-floating-overlay.d.ts","../../popup/dist/src/open-popup.d.ts","../../popup/dist/src/index.d.ts","../../input/dist/src/ox-input-unit-number.d.ts","../src/ox-property-editor-unit-number.ts","../../input/dist/src/ox-input-value-map.d.ts","../src/ox-property-editor-value-map.ts","../../input/dist/src/ox-input-value-ranges.d.ts","../src/ox-property-editor-value-ranges.ts","../../input/dist/src/ox-input-work-shift.d.ts","../src/ox-property-editor-work-shift.ts","../../../node_modules/@material/web/typography/md-typescale-styles.d.ts","../stories/ox-properties-dynamic-view.stories.ts","../stories/ox-properties-editor-textarea.stories.ts","../../../node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/@types/node/web-globals/blob.d.ts","../../../node_modules/@types/node/web-globals/console.d.ts","../../../node_modules/@types/node/web-globals/crypto.d.ts","../../../node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/@types/node/web-globals/encoding.d.ts","../../../node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/undici-types/utility.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client-stats.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/round-robin-pool.d.ts","../../../node_modules/undici-types/h2c-client.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-call-history.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/snapshot-agent.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/undici-types/retry-handler.d.ts","../../../node_modules/undici-types/retry-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/cache-interceptor.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/util.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/eventsource.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/index.d.ts","../../../node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/@types/node/web-globals/importmeta.d.ts","../../../node_modules/@types/node/web-globals/messaging.d.ts","../../../node_modules/@types/node/web-globals/navigator.d.ts","../../../node_modules/@types/node/web-globals/performance.d.ts","../../../node_modules/@types/node/web-globals/storage.d.ts","../../../node_modules/@types/node/web-globals/streams.d.ts","../../../node_modules/@types/node/web-globals/timers.d.ts","../../../node_modules/@types/node/web-globals/url.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/inspector.generated.d.ts","../../../node_modules/@types/node/inspector/promises.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/path/posix.d.ts","../../../node_modules/@types/node/path/win32.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/quic.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/sea.d.ts","../../../node_modules/@types/node/sqlite.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/test/reporters.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/util/types.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/mocha/index.d.ts"],"fileIdsList":[[203,266,274,278,281,283,284,285,298],[123,124,203,266,274,278,281,283,284,285,298],[63,203,266,274,278,281,283,284,285,298],[55,63,203,266,274,278,281,283,284,285,298],[55,63,71,203,266,274,278,281,283,284,285,298],[65,203,266,274,278,281,283,284,285,298],[53,54,203,266,274,278,281,283,284,285,298],[61,108,203,266,274,278,281,283,284,285,298],[61,182,203,266,274,278,281,283,284,285,298],[58,61,101,103,104,105,106,203,266,274,278,281,283,284,285,298],[58,98,107,203,266,274,278,281,283,284,285,298],[58,107,203,266,274,278,281,283,284,285,298],[61,184,203,266,274,278,281,283,284,285,298],[61,97,203,266,274,278,281,283,284,285,298],[58,61,203,266,274,278,281,283,284,285,298],[61,116,117,203,266,274,278,281,283,284,285,298],[116,203,266,274,278,281,283,284,285,298],[58,61,98,101,103,104,203,266,274,278,281,283,284,285,298],[61,99,203,266,274,278,281,283,284,285,298],[61,100,203,266,274,278,281,283,284,285,298],[61,119,203,266,274,278,281,283,284,285,298],[61,203,266,274,278,281,283,284,285,298],[61,105,203,266,274,278,281,283,284,285,298],[61,104,203,266,274,278,281,283,284,285,298],[58,61,99,203,266,274,278,281,283,284,285,298],[61,102,203,266,274,278,281,283,284,285,298],[86,203,266,274,278,281,283,284,285,298],[74,76,77,78,79,80,81,82,83,84,85,86,203,266,274,278,281,283,284,285,298],[74,75,77,78,79,80,81,82,83,84,85,86,203,266,274,278,281,283,284,285,298],[75,76,77,78,79,80,81,82,83,84,85,86,203,266,274,278,281,283,284,285,298],[74,75,76,78,79,80,81,82,83,84,85,86,203,266,274,278,281,283,284,285,298],[74,75,76,77,79,80,81,82,83,84,85,86,203,266,274,278,281,283,284,285,298],[74,75,76,77,78,80,81,82,83,84,85,86,203,266,274,278,281,283,284,285,298],[74,75,76,77,78,79,81,82,83,84,85,86,203,266,274,278,281,283,284,285,298],[74,75,76,77,78,79,80,82,83,84,85,86,203,266,274,278,281,283,284,285,298],[74,75,76,77,78,79,80,81,83,84,85,86,203,266,274,278,281,283,284,285,298],[74,75,76,77,78,79,80,81,82,84,85,86,203,266,274,278,281,283,284,285,298],[74,75,76,77,78,79,80,81,82,83,85,86,203,266,274,278,281,283,284,285,298],[74,75,76,77,78,79,80,81,82,83,84,86,203,266,274,278,281,283,284,285,298],[74,75,76,77,78,79,80,81,82,83,84,85,203,266,274,278,281,283,284,285,298],[203,263,264,266,274,278,281,283,284,285,298],[203,265,266,274,278,281,283,284,285,298],[266,274,278,281,283,284,285,298],[203,266,274,278,281,283,284,285,298,306],[203,266,267,272,274,277,278,281,283,284,285,287,298,303,315],[203,266,267,268,274,277,278,281,283,284,285,298],[203,266,269,274,278,281,283,284,285,298,316],[203,266,270,271,274,278,281,283,284,285,289,298],[203,266,271,274,278,281,283,284,285,298,303,312],[203,266,272,274,277,278,281,283,284,285,287,298],[203,265,266,273,274,278,281,283,284,285,298],[203,266,274,275,278,281,283,284,285,298],[203,266,274,276,277,278,281,283,284,285,298],[203,265,266,274,277,278,281,283,284,285,298],[203,266,274,277,278,279,281,283,284,285,298,303,315],[203,266,274,277,278,279,281,283,284,285,298,303,306],[203,253,266,274,277,278,280,281,283,284,285,287,298,303,315],[203,266,274,277,278,280,281,283,284,285,287,298,303,312,315],[203,266,274,278,280,281,282,283,284,285,298,303,312,315],[201,202,203,204,205,206,207,208,209,210,211,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322],[203,266,274,277,278,281,283,284,285,298],[203,266,274,278,281,283,285,298],[203,266,274,278,281,283,284,285,286,298,315],[203,266,274,277,278,281,283,284,285,287,298,303],[203,266,274,278,281,283,284,285,289,298],[203,266,274,278,281,283,284,285,290,298],[203,266,274,277,278,281,283,284,285,293,298],[203,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322],[203,266,274,278,281,283,284,285,295,298],[203,266,274,278,281,283,284,285,296,298],[203,266,271,274,278,281,283,284,285,287,298,306],[203,266,274,277,278,281,283,284,285,298,299],[203,266,274,278,281,283,284,285,298,300,316,319],[203,266,274,277,278,281,283,284,285,298,303,305,306],[203,266,274,278,281,283,284,285,298,304,306],[203,266,274,278,281,283,284,285,298,306,316],[203,266,274,278,281,283,284,285,298,307],[203,263,266,274,278,281,283,284,285,298,303,309,315],[203,266,274,278,281,283,284,285,298,303,308],[203,266,274,277,278,281,283,284,285,298,310,311],[203,266,274,278,281,283,284,285,298,310,311],[203,266,271,274,278,281,283,284,285,287,298,303,312],[203,266,274,278,281,283,284,285,298,313],[203,266,274,278,281,283,284,285,287,298,314],[203,266,274,278,280,281,283,284,285,296,298,315],[203,266,274,278,281,283,284,285,298,316,317],[203,266,271,274,278,281,283,284,285,298,317],[203,266,274,278,281,283,284,285,298,303,318],[203,266,274,278,281,283,284,285,286,298,319],[203,266,274,278,281,283,284,285,298,320],[203,266,269,274,278,281,283,284,285,298],[203,266,271,274,278,281,283,284,285,298],[203,266,274,278,281,283,284,285,298,316],[203,253,266,274,278,281,283,284,285,298],[203,266,274,278,281,283,284,285,298,315],[203,266,274,278,281,283,284,285,298,321],[203,266,274,278,281,283,284,285,293,298],[203,266,274,278,281,283,284,285,298,311],[203,253,266,274,277,278,279,281,283,284,285,293,298,303,306,315,318,319,321],[203,266,274,278,281,283,284,285,298,303,322],[55,58,203,266,274,278,281,283,284,285,298],[58,203,266,274,278,281,283,284,285,298],[56,57,203,266,274,278,281,283,284,285,298],[64,65,66,67,68,69,70,71,72,203,266,274,278,281,283,284,285,298],[155,203,266,274,278,281,283,284,285,298],[55,58,59,60,203,266,274,278,281,283,284,285,298],[127,203,266,274,278,281,283,284,285,298],[50,203,266,274,278,281,283,284,285,298],[203,218,221,224,225,266,274,278,281,283,284,285,298,315],[203,221,266,274,278,281,283,284,285,298,303,315],[203,221,225,266,274,278,281,283,284,285,298,315],[203,266,274,278,281,283,284,285,298,303],[203,215,266,274,278,281,283,284,285,298],[203,219,266,274,278,281,283,284,285,298],[203,217,218,221,266,274,278,281,283,284,285,298,315],[203,266,274,278,281,283,284,285,287,298,312],[203,266,274,278,281,283,284,285,298,323],[203,215,266,274,278,281,283,284,285,298,323],[203,217,221,266,274,278,281,283,284,285,287,298,315],[203,212,213,214,216,220,266,274,277,278,281,283,284,285,298,303,315],[203,221,230,238,266,274,278,281,283,284,285,298],[203,213,219,266,274,278,281,283,284,285,298],[203,221,247,248,266,274,278,281,283,284,285,298],[203,213,216,221,266,274,278,281,283,284,285,298,306,315,323],[203,221,266,274,278,281,283,284,285,298],[203,217,221,266,274,278,281,283,284,285,298,315],[203,212,266,274,278,281,283,284,285,298],[203,215,216,217,219,220,221,222,223,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,266,274,278,281,283,284,285,298],[203,221,240,243,266,274,278,281,283,284,285,298],[203,221,230,231,232,266,274,278,281,283,284,285,298],[203,219,221,231,233,266,274,278,281,283,284,285,298],[203,220,266,274,278,281,283,284,285,298],[203,213,215,221,266,274,278,281,283,284,285,298],[203,221,225,231,233,266,274,278,281,283,284,285,298],[203,225,266,274,278,281,283,284,285,298],[203,219,221,224,266,274,278,281,283,284,285,298,315],[203,213,217,221,230,266,274,278,281,283,284,285,298],[203,221,240,266,274,278,281,283,284,285,298],[203,233,266,274,278,281,283,284,285,298],[203,215,221,247,266,274,278,281,283,284,285,298,306,321,323],[58,61,91,203,266,274,278,281,283,284,285,298],[58,61,91,94,203,266,274,278,281,283,284,285,298],[61,91,125,203,266,274,278,281,283,284,285,298],[58,61,91,114,120,203,266,274,278,281,283,284,285,298],[58,61,91,118,120,203,266,274,278,281,283,284,285,298],[58,61,91,126,128,203,266,274,278,281,283,284,285,298],[58,61,91,120,203,266,274,278,281,283,284,285,298],[58,61,91,120,148,149,203,266,274,278,281,283,284,285,298],[58,61,62,91,114,120,203,266,274,278,281,283,284,285,298],[58,61,91,120,189,203,266,274,278,281,283,284,285,298],[58,61,91,114,203,266,274,278,281,283,284,285,298],[58,61,91,112,120,148,203,266,274,278,281,283,284,285,298],[147,148,180,181,186,188,203,266,274,278,281,283,284,285,298],[61,187,203,266,274,278,281,283,284,285,298],[58,61,120,203,266,274,278,281,283,284,285,298],[58,61,120,147,203,266,274,278,281,283,284,285,298],[58,61,147,203,266,274,278,281,283,284,285,298],[58,61,180,203,266,274,278,281,283,284,285,298],[58,61,120,183,185,203,266,274,278,281,283,284,285,298],[51,52,88,89,203,266,274,278,281,283,284,285,298],[51,52,61,73,88,203,266,274,278,281,283,284,285,298],[51,52,61,73,88,92,203,266,274,278,281,283,284,285,298],[51,52,61,73,88,95,203,266,274,278,281,283,284,285,298],[51,52,61,73,88,109,203,266,274,278,281,283,284,285,298],[51,52,61,73,88,94,203,266,274,278,281,283,284,285,298],[51,52,61,73,88,112,203,266,274,278,281,283,284,285,298],[51,52,61,73,88,114,203,266,274,278,281,283,284,285,298],[51,52,61,73,88,121,203,266,274,278,281,283,284,285,298],[51,52,61,73,88,129,203,266,274,278,281,283,284,285,298],[51,52,61,73,88,134,203,266,274,278,281,283,284,285,298],[51,52,61,73,88,136,203,266,274,278,281,283,284,285,298],[51,52,61,73,88,138,203,266,274,278,281,283,284,285,298],[51,52,61,73,88,140,203,266,274,278,281,283,284,285,298],[51,52,61,73,88,142,203,266,274,278,281,283,284,285,298],[51,52,61,73,88,144,203,266,274,278,281,283,284,285,298],[51,52,61,73,88,150,203,266,274,278,281,283,284,285,298],[51,52,61,73,88,153,203,266,274,278,281,283,284,285,298],[51,52,61,73,88,156,203,266,274,278,281,283,284,285,298],[51,52,61,73,88,158,203,266,274,278,281,283,284,285,298],[51,52,61,73,88,160,203,266,274,278,281,283,284,285,298],[51,52,61,73,88,163,203,266,274,278,281,283,284,285,298],[51,52,61,73,88,165,203,266,274,278,281,283,284,285,298],[51,52,61,73,88,167,203,266,274,278,281,283,284,285,298],[51,52,61,73,88,148,149,203,266,274,278,281,283,284,285,298],[51,52,61,73,88,170,203,266,274,278,281,283,284,285,298],[51,52,61,73,88,174,203,266,274,278,281,283,284,285,298],[51,52,61,73,88,176,203,266,274,278,281,283,284,285,298],[51,52,61,73,88,126,203,266,274,278,281,283,284,285,298],[51,52,61,73,88,190,203,266,274,278,281,283,284,285,298],[51,52,61,73,88,192,203,266,274,278,281,283,284,285,298],[51,52,61,73,88,194,203,266,274,278,281,283,284,285,298],[51,52,61,73,88,196,203,266,274,278,281,283,284,285,298],[51,52,61,62,73,87,203,266,274,278,281,283,284,285,298],[51,203,266,274,278,281,283,284,285,298],[51,52,61,88,89,93,96,111,113,115,122,131,132,133,137,141,143,145,146,154,157,159,161,162,164,168,169,171,173,178,191,197,198,203,266,274,278,281,283,284,285,298],[51,52,61,88,89,178,203,266,274,278,281,283,284,285,298]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},"b5c159239c33d1bcb3d7ca8d24cf9ba1b1579aab80e70fbb0029e374880f2470",{"version":"a6a5253138c5432c68a1510c70fe78a644fe2e632111ba778e1978010d6edfec","impliedFormat":1},{"version":"b8f34dd1757f68e03262b1ca3ddfa668a855b872f8bdd5224d6f993a7b37dc2c","impliedFormat":99},{"version":"b07f5be9a57a2858c78eaf04d97a7340963f1f31de055efe9fa81e086034ecb7","signature":"b3522fc474172a4dc96b7845e16101d70098f7c77c2c67d7fbc196401ba8b5eb"},{"version":"74012d464fbc5354ca3a7d5e71bee43b17da01a853c8ff10971bbe3680c76f40","impliedFormat":99},{"version":"5e30131b6a5587fe666926ad1d9807e733c0a597ed12d682669fcaa331aea576","impliedFormat":99},{"version":"a0f82d2f9450bd147a8c137798d9501bd49b7c9e118f75b07b76709ff39b6b55","affectsGlobalScope":true,"impliedFormat":99},{"version":"00cb63103f9670f8094c238a4a7e252c8b4c06ba371fea5c44add7e41b7247e4","impliedFormat":99},{"version":"15fe687c59d62741b4494d5e623d497d55eb38966ecf5bea7f36e48fc3fbe15e","impliedFormat":1},{"version":"e09db3291e6b440f7debed2227d8357e80c95987a0d0d67ac17521d8f7b11bdb","impliedFormat":99},{"version":"9a318e3a8900672b85cd3c8c3a5acf51b88049557a3ae897ccdcf2b85a8f61f9","impliedFormat":99},{"version":"1bcd560deed90a43c51b08aa18f7f55229f2e30974ab5ed1b7bb5721be379013","impliedFormat":99},{"version":"dc08fe04e50bc24d1baded4f33e942222bbdd5d77d6341a93cfe6e4e4586a3be","impliedFormat":99},"29dca1b5f0cac95b675f86c7846f9d587ed47cc46609dd00d152bcb37683b069",{"version":"cdeae34aca6700620ebf3f27cf7d439c3af97595dd6e2729fa4780483add5680","impliedFormat":99},{"version":"3ff87ea3471b51beaf4aa8fd8f4422862b11d343fdbb55bf383e0f8cc195a445","impliedFormat":99},{"version":"99bdf729529cdbf12e2bf76ea751b662011133dcf9e35abcb3def47bb02f7b0a","impliedFormat":99},{"version":"732fb71ecb695d6f36ddcbb72ebfe4ff6b6491d45101a00fa2b75a26b80d640f","impliedFormat":99},{"version":"039cb05125d7621f8143616c495b8e6b54249c4e64d2754b80ff93867f7f4b01","impliedFormat":99},{"version":"1b81f1fa82ad30af01ab1cae91ccaddc10c48f5916bbd6d282155e44a65d858d","impliedFormat":99},{"version":"a0fc7a02a75802678a67000607f20266cf1a49dc0e787967efe514e31b9ed0c3","impliedFormat":99},{"version":"5ebf098a1d81d400b8af82807cf19893700335cf91a7b9dbd83a5d737af34b11","impliedFormat":99},{"version":"101cf83ac3f9c5e1a7355a02e4fbe988877ef83c4ebec0ff0f02b2af022254a3","impliedFormat":99},{"version":"d017e2fcd44b46ca80cd2b592a6314e75f5caab5bda230f0f4a45e964049a43a","impliedFormat":99},{"version":"a8992b852521a66f63e0cedc6e1f054b28f972232b6fa5ca59771db6a1c8bbea","impliedFormat":99},{"version":"380b919bfa0516118edaf25b99e45f855e7bc3fd75ce4163a1cfe4a666388804","impliedFormat":1},{"version":"40de86ced5175a6ffe84a52abe6ac59ac0efbc604a5975a8c6476c3ddc682ff1","impliedFormat":1},{"version":"fcf79300e5257a23ed3bacaa6861d7c645139c6f7ece134d15e6669447e5e6db","impliedFormat":1},{"version":"187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","impliedFormat":1},{"version":"aa2c18a1b5a086bbcaae10a4efba409cc95ba7287d8cf8f2591b53704fea3dea","impliedFormat":1},{"version":"5a0b15210129310cee9fa6af9200714bb4b12af4a04d890e15f34dbea1cf1852","impliedFormat":1},{"version":"0244119dbcbcf34faf3ffdae72dab1e9bc2bc9efc3c477b2240ffa94af3bca56","impliedFormat":1},{"version":"00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","impliedFormat":1},{"version":"a873c50d3e47c21aa09fbe1e2023d9a44efb07cc0cb8c72f418bf301b0771fd3","impliedFormat":1},{"version":"7c14ccd2eaa82619fffc1bfa877eb68a012e9fb723d07ee98db451fadb618906","impliedFormat":1},{"version":"49c36529ee09ea9ce19525af5bb84985ea8e782cb7ee8c493d9e36d027a3d019","impliedFormat":1},{"version":"df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","impliedFormat":1},{"version":"4f6a12044ee6f458db11964153830abbc499e73d065c51c329ec97407f4b13dd","impliedFormat":1},{"version":"7e7a817c8ec57035b2b74df8d5dbcc376a4a60ad870b27ec35463536158e1156","impliedFormat":99},{"version":"cd9e9a3729fcd946e0c2e83e02a42fdeb20f13958622ed291e727f5c28ed33fb","signature":"eef625cb6790746c6bb63366ac4660e58260ebfd28a592de6677e8a85e267c15"},{"version":"efa3d736db0569c359233251d6aa089d1b5d6fd19a51a965b8869939f37293e9","signature":"e27b7dda5e25159011e797ca96bff2d3476bb19cb942ad1a83d0a8e8172b87c3"},{"version":"1333308b633c48ce258023edda23233204fc2f57a8f98c309198e170506118bb","signature":"d0f0b9c123ac41343b6faec852928381067194bf8c60d70ae9e2ce896f3bd31b"},"cb85235628f67d0904e45733fd9071f6ec8332e9a6ae66d32730ba6c445a51ef","e46c6b9e011509b9d5cb86a0daf0ddec8abed2b575a575325f8e886784a8163b",{"version":"bacfcfe3fd5e69ce10939d1ddff9d66d90e8ed71432db2faf678bd353cdd25ed","signature":"52f8d4fc01e4ac6a7582505cd91358e2aa383910d64b4c01ffeef04e72256ddf"},"53b2a55014f054f5b36eb94b4ebd5790e3e455f668403718032efec1b589d103","aceae7fb3a67386f3feedcc318ff33a7199c4280f18a642be53cd53f615e1f82",{"version":"e3e3ba5bc25e3859d8ecdca6c4e83633803a1a554440e3eaf56511cd83a4a73d","signature":"12e2a51cf74bd50ba640abfb21093cebeeed0a9bf6887562024dd195a322a61e"},{"version":"6184309fe39e2fe444f4ba94e7cd1abef48fcb48e258457c3b77c65828184241","impliedFormat":99},{"version":"98c511f60c3079d731a35353a47bfa89dd79eeacad48a45d07170d22ef4bfd02","affectsGlobalScope":true,"impliedFormat":99},{"version":"905800cc110167503d0cf58bb0dd6fa4aaac1e9cedc9bd9c48e5d1f8b5b8d4c8","impliedFormat":99},{"version":"d17be577b99e59611df19ca2cf0356df554f55bb06617c21321fc4ec06b820d0","impliedFormat":99},{"version":"5f30145fbc8ca508ae4e0d90a4fe9eaff490783f380a92f6aa262accdf7887b7","affectsGlobalScope":true,"impliedFormat":99},{"version":"cefe49d29d43726072e88671a2c40cdeeb8d49ca8fa6c2d4b06013dc7b9d6206","impliedFormat":99},{"version":"f882b77c5939860d599b4b7bc39f741ebcd56123e18b284500f4b8923acd2e72","affectsGlobalScope":true,"impliedFormat":99},{"version":"0230bc76ed3a464531a43d2434d315b9cc2096aaca28bdaa65b8f9dce9f3bc81","impliedFormat":99},{"version":"559d2d1cd7f37dc2ac59e7adce198ad16a5eb0c7273d67b8e4ff72821b7c853f","impliedFormat":99},{"version":"afa8760622183e35e86f516574217eb1853b08cf2168be0bfe991643ece1a8fe","impliedFormat":99},{"version":"40e539ae4fb534c8032594c8e2e7c420be13942b43b20a9afca53d1fd42eb8b3","impliedFormat":99},{"version":"0cb349f3a6866eb4ec6424b3844fa51498b32402f922d5a571d069d7cf44c68f","impliedFormat":99},{"version":"517dd6f73e4d20b38841f7be1edb2fb6f4152775ac3a9c04e319ff0b3509c8ba","affectsGlobalScope":true,"impliedFormat":99},{"version":"8183712231872bbc6ced8cff9dee08deefe5e2eeb7cfa8af35ade8079e06ce3d","signature":"f783dd601bebd477b9a198f9264f4f0aa1d34e1c4e124f9ef48a3153dd7ea004"},{"version":"f53f79e8c67dbf105324416d2d2e5d770f72c67a7317be2750c54337948eea6f","signature":"1de801b5870240983bf8dd318c21e028af92166a1767d63dc8122ef68b589503"},"2e8d620000b61541f0a8ac23d90fcc9ffacf72045920273f95aa9d17ba54b6fa",{"version":"f88142aed2f0ef46eaefd213e4766337fd8fd351adfd5dee72b8ca4d956e0670","signature":"d2180072449a08d847092e04aca711d5eacb6ae8dae4ea180ec3737f2f5cc58e"},"e7db50dc539498b089c30cac94b538962d340c63c277a13c7233ddf3d4641fab",{"version":"71f26e5a91514065956b4ec31b65c93c8027c88be28d505e4c95d43bb06d101b","signature":"4e7551dcb839207608c438680ba306211b3483c46ebab4ce3b99b32587132edb"},{"version":"50d6de22a2638ee065f170cf1c4e7db26b2cd9eeb1a1ce023f4cd93d43fc453e","impliedFormat":99},{"version":"41e4b825afe9f38c821a8d7bd9667e2c923c847e31036cfd6c98006b0ca1653e","impliedFormat":99},{"version":"fb3796f25b77cf1496279d8250b8ca76741ce750a75bd8cca753eccf02358e07","affectsGlobalScope":true,"impliedFormat":99},{"version":"5565deadc1d553f9f1ef370351432c258d2a6f1a5ca47e574e5430db824468c7","impliedFormat":99},{"version":"4ae1ed87c59518f4e0918a21409ec3020e97037a386b57953c6b9fed9cad6949","affectsGlobalScope":true,"impliedFormat":99},"fa7607f48ba2c02eb8af042878d7e376157900562340f72874650d2102b5b72d",{"version":"f4feb3cc53015edab6506e3e4583e5edf7a748dda6dc264a67e7532c55f1f509","signature":"1168227ad5d84017ebda70c93f7779c587c892eeee786009f3be396612978e8f"},{"version":"152accb0c34090709491877e607a5ec957a70040e5320a1516348311c112933a","impliedFormat":99},{"version":"fe9dd679e568dc2a0e5e6959f77b53f8bc1f126d46b0d17631347ba57470b808","impliedFormat":99},{"version":"b3805662389944b27203c90f238a4fa7b77a2dccad09860af701bb72ce502b0d","impliedFormat":99},"a8a3a2175e08d443028d02b9825934205084137e7530ab3b49e1dbefcca6e345",{"version":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"65e0fbf4a37e173183dfafdaf689694ad8357d7d4f5c37cfb2ff762ab4728043","affectsGlobalScope":true,"impliedFormat":99},"cd359db90e7bbc5d94ecd06e8fb7dc8e6ce65c4aab9343093c9f1f415c00d6c2",{"version":"bf13c17dde026c7af985b8f080be2bd79bc7e1596d26c469aed5d434eb8019e4","signature":"839178689f64d93914fee9a5c36b559f0e63e89680095e63af99be23abcd7495"},{"version":"02c58b1867864a4b325e01258bd0f7734dc05cf838b614a5de26bbb1b40544cd","signature":"8a98fd03f054b0a4745fbf1f5f881532f506e33fa7b732b522fdfeb5c3b0fcc6"},{"version":"edabac7e033e4a8325644d7573b0fed142d0b001797676d55a72a91d6bc33455","signature":"4b4d8d4db643a3fc2a117e0ecbc6d05fc0f24fd1886e5e6f7d8393b307bc0ee3"},{"version":"98f9674a221fc2430e35bca85132991c914acd3fde3137b49e041cb679b87376","signature":"d343fdd408124d88e363262682939e088cb2e7b3f13d1f1ae02e96c9447340ee"},"14344cf9bac2f1a62ec32f52858a3f11f63c70832207e824ce1f7083492affb8",{"version":"8fe4e8476bfa57a54405dc98f2d9b1f9a34e37db14c5c8b6cd884ce7de1b9899","signature":"ca5cd3a82001b038d2721e22bf6b6de1d6f490c508cebe8d193b5d26cfcd013f"},"ebe6f76595fbda9ca25d8018bd932cab144c2b1ec62ab8ec064da0ad729eac96",{"version":"d7fa13671239a07b5b48e2f049388056a7494a5f970382ace3e28d7490c2f835","signature":"0c41a88426d9df114f22ec1eedc0f879f3ced62245ea2f2baaf845182009ed40"},"c7c85f4780e51de4c887e500339355164f3399bc45a552e311db5218ac950656",{"version":"097079e7f85a7a0d6fa662785ccf303c1d8dcef7be5ef514bf72c43777e43da5","signature":"729024ffbf4f4d00d1b5f3569f6d1175e063a5577ed6aa5c2869d1b6f3920c75"},"889c152ce28ec07eae1e2462c65c3d27c795b7fdbd2aa1f01cf8b352a00e5a0e",{"version":"10701be83c58bb39b260393ade0d370f047502ce5e4e54980cdc6d70eb90a3ab","signature":"3302710e8090ecbdb2800ab661f72dd102d08063de54f3d8f9731aee57187920"},"6bb8d9049c8717a1aa508b02a46bbad3a5a682442f7aa2bbec8ae65409c9cab9",{"version":"ccf84090d2da3142917fa1044fb3b67453c43d88683cd4d9535ab0f0babe14e1","signature":"6b4cb38887dcb87ab0248c93eb99e998f36985065089de812ae0d38d5787d569"},"86764ffc20612dd3da5ebedbdc0d0821b4c8e4045c2068f1971977064af18c83",{"version":"6bb96b19d870bf018504e9210e2868b622ee27cd869f8349d9226ebc4e7ae35f","signature":"b94c0578f08d7ece2313c3dd928e255d91926cd90d77648b3bc36e6fe197c540"},{"version":"921c19866c7fc67d25dd06f1a16744642c97c18513407338bd97ae473dfe3b6d","signature":"9504627e8c7995e0f9df78152c5d28aa22c8a0d27b36b86a61f4acd01a076d40"},{"version":"75069a2a1e380502ff9a1074b8ee61f5e84f31973e5f81b444e6993e5633c72b","affectsGlobalScope":true},"8aff91f00938aa90ce829f4d577903d6826fa19e8edc583f7bb64ef1a6b4ae3b","a8ef8a6b8827c526b0bcbdd50b066e884ae5ae2d4c07711c83b8afe23c37a100","77c806385516ba3800bfd82f43a507c6e1d777e2e6cc00360168c9327e145faa",{"version":"78d3dca2b403a5ca2e284e73b10c4ea447c7bfd1bb8fd3c96af757f6f6f9f6ac","signature":"7dcbdc70e4c203320b5f1cc503ef6ed9cac4ea68662116559604037aa3562ab1"},{"version":"8a034f89cfc563a46e219e81adc057974b0881085c8277e101975c77d4a9fb6a","signature":"9252888d54a3b8bb43fa307358d58b5043180177aa0561a606a5c5ed4c2ef9b0"},"4d0acbfbdcfac4d84cd03d34354746381bb97b0a4e070005b2d63b35a50dfbf4",{"version":"8977010be0a0c6c31742f0fa02886e606e3f19c82113c968ffc18990bbb03e02","signature":"80219fe9af69210043fd079ac7b2f4fd9f1958547e1c02e4c441adf44da67fd3"},{"version":"74fe889b1d2bba4b2893d518ba94e2b20dabe6d19d0c2f9554d9a5d3755710f4","impliedFormat":99},{"version":"2ae64cd7b6e760496069ee3b496c64700c956a0620740e1ef52b163824859db7","impliedFormat":99},{"version":"1f8f3d4242f145be3b0b17f8aa1c7d29416b059eae0328919442b983acc981e0","signature":"d255376e61e3970c9c68dee9ab168f361673614a64492c53b8f7d89e02024060"},"b5c0a6e05cab1e1c8c9c9e8ba76608e9ed7fe0ff069d008c5dd414267c752c85",{"version":"ed37c072d889004b8516aa85240861be0664a3d97e99148b73ad0b9036309eef","signature":"ebaa2ff03c82d3c014467ba065806012befc64cca8577cd5f3cb879f701d0b95"},"aa433a025387d244052e46f11daeaacb21b53f645b336d64d6d920b0f330c5b5",{"version":"12e7e026b9e75405529decb1654a9ca8cd6ffa843791565e86a08e2a10a4afd4","signature":"3f519ce6ec908da3f546f7d5ecfa25f07479f53c0f448081f25ba158c36dbaac"},{"version":"511e4914674527b708e97319025a64725f1e2a3d3cbdd0945d537e758a527ab6","signature":"5015ea22df89241ace58a178b3b4aa6b25b8de98e9b27968cb0907ec06157d37"},"0b98ae9c19957b68eb6c1ddada4c52b03b74c4729b51c6dc1e3300869fe66d2a",{"version":"e19d28846d8f110771ff165a1e5149c2f5950030a806db30ee7f4129ad5b33e9","signature":"7d63f635b7ba3d3d30cc392cebe42abcbc79c7109ef27d256c8a8ba192f5cfa0"},"2c6a82385d5e3e5d7fb82b6f14c50c8964b6a78c0ea3c11d272157b7be580c60",{"version":"878b94bd27bef51c09851df1f414c42bf6d5ae99a9c69d289d4c51b2b222ea0f","signature":"f3d1cc5b7af2851b3d86e0e84ee2719d49b164246f1252e3f26f9bdc64f3e316"},"e4a8c00018b11ec228d4920c5a0145ad82c16b5819a3698e81e9d72e061fa50b",{"version":"f32516a36a59d04022c9c534e005e046ce7c5e4c0f8232e587bfdd7cbc370aee","signature":"546ee4938afa01ea8fbea0953351f5076222669a9904b0502814084c0c08e6e3"},{"version":"707e25f91b740b3bd5ee52281ef4542078c6bd9fbef42fc837869a08968b76b6","signature":"2dc382b7d0fcf79109a0f64bfccab73e8e367c84149e7f0086c35f96611b0505"},"dafb14b69c8f0b0509c6b26813b1dd823466bf11f9a00488d7d6be080b2738c6",{"version":"958bdc64fd0fb9d7b2d64456d1aab9e33276a8e3e59a57083f8615182915586f","signature":"da414136697174b6144c9e3c18e76a671dff2cbb6d6e95cf43bfbd4b9a5e5034"},{"version":"41d32efff29db0965d7f65dd6fc9eb9bcfcde4f963aa4cdd9aefeec0844f0525","signature":"8edea6a2793f0d9287326be257077a2fc427ba81d3cb1c92ee0c23bd149168e3"},{"version":"436fea98a62b8f772b12aa71dceddf5edeb47cfcddead7acba171203a95b40d5","signature":"2860a3da5d6828e0c38db5b2e6220245c03cbaf06db14d439123e944d81348d6"},"1cf690d9be450e173185a111175a4f6d4e0bacefeee568dcccfde8b8aa212891",{"version":"a8b67108542ea81e79202de0c6522888b2cc953e7ffd8328655888b231d08cb4","signature":"437b11ddcaea2c3238bd0948e231ae45f2cba42db1be6e9a20abc858e523b325"},"87e6d1efd2221b4f7f037db5d7a5993ac0f53ff27b8abbff43a015aaa647fe43",{"version":"aa4e78a6d8b6ac112cc5e7e73cc06448a5b9254f2c9a565185b7e324f9a4b6c8","signature":"21c71b354a4afd131900a103305961b10ecb9c6524cdbda554eaf3151e080190"},{"version":"06ca6cfa61e353be012c898823b3cb6310dc042dcbdeec2fae23bfa1576df179","signature":"b24bd7fab0ecffb26c814cc64e8392db59aee8c55e04bc3ac8968708431e3929"},{"version":"79a7d72a15174a26e3669e516ce3e6c2ef5eacd4cc295510e4d4fb30bbc42f8d","signature":"bddefcda3acef57eb597fccfb707b887edb5c0ebb18988878d39f264d7868e73"},"986165ecc3a59d4b6a272a92f7ca4fd7a0762c63a674abd2c1efa0bea64da604","3e7b241ec38126d95f9e37c49a631c00cff006a888276e2d02920c6443c8b593",{"version":"d08d474654640266d6ac03f51ee04d72438b78ea377b9dc4678c480ce0477e1a","impliedFormat":99},{"version":"929f21090183949e93fd99327d292bff76f781895d5252eb43319b2c3e014528","affectsGlobalScope":true,"impliedFormat":99},{"version":"f9f3097a031827350b6befd870e9da3ec0953b7269497c1a7c5dc840223d2fb3","impliedFormat":99},{"version":"d56278ed347a6685abc6da6b49277da36db3ddce86bd298c03b48a5f9c6d145c","affectsGlobalScope":true,"impliedFormat":99},"b73f10c107ec43e50acf38b06626eaa6ebeaa2093432f814338f9ddf1b4112fa","b6b0e59158a1c8ad34747722a19398d7bf26701e9ee2a130d80a52a815a8bb92","c97f742ef6e8c0bc4e5e4ad8d90b4489cdd3bd1c007510ee4a2e4c09266a11d2","6a17f676d06d3e695520b275dd483b4fe62d34b84926c0bf6425c08490ee2c41","decd9ee1fb3872db6f2e6f6fb2c0eaa3c1e5064d2e99c23383003f09a75a4368",{"version":"cf7a48e718d005788d439c66574a7f3c1646360943c52320b3a4927319791f69","signature":"8d908a646c8556c0eefd43adc22fe17a989944a04ae0214a3daf0c14f0e6f0dd"},"dde253c181a3100c7794c40c30aa6144bf797abcc2348bb214586e3123fa0b86",{"version":"f03ff9f10c30dcd3da5cf252c0b03795cea5659d7906033d2c45f6342e0fbcdf","signature":"7f20e0cde782e59078f6ff3a013df044cc68946b16174c883bf89685cd355316"},"0d2b9fab22e46386e3f0b78034f49462c9c5d8c314164226f6b51ce2d35568a6",{"version":"2e3d10c5f1aea7b09d121847021bd9c8559221813b567b54e32ed1ddbf016e12","signature":"0a05c6de0c77d892d7dbd205e2345555abf68daa9adee7c7ae3517cecfbf1936"},"aa8582655e2018bb5b955e8a99819a0843893da3e64f9b5aac158fea0a0a6edd",{"version":"d15ce157e1995cf20ec1e7f335b33f590828fbaed11d45df70db0eb8ac4857b4","signature":"36df0d561b47e871ed0f84c78c367683180d07070425925b5e4cea8852daba7e"},{"version":"d6c0b824e25ca3bdd752c8baa81a8c5c2da034ffaa54ad60fb5cb2bea6e2bcec","impliedFormat":99},{"version":"0aa184a87c5c1ea29cee5862f2a5515caaa3187bf60996407bdbca245da58b1f","signature":"ae42d378d6808703c68ef635f03f6168d9c941184cb1055226f5427ed0d36565"},{"version":"aa1d3f54bce78ed96a5d4dcc5f1c5425233b39a111b36a9cf823f8c8029514b2","signature":"8b22677a969f8e80010af70f7d88b37be2c1b2c293d1a5b13052d0eeddfb1612"},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ccdaa19852d25ecd84eec365c3bfa16e7859cadecf6e9ca6d0dbbbee439743f","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc2110f7decca6bfb9392e30421cfa1436479e4a6756e8fec6cbc22625d4f881","affectsGlobalScope":true,"impliedFormat":1},{"version":"096116f8fedc1765d5bd6ef360c257b4a9048e5415054b3bf3c41b07f8951b0b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5e01375c9e124a83b52ee4b3244ed1a4d214a6cfb54ac73e164a823a4a7860a","affectsGlobalScope":true,"impliedFormat":1},{"version":"f90ae2bbce1505e67f2f6502392e318f5714bae82d2d969185c4a6cecc8af2fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b58e207b93a8f1c88bbf2a95ddc686ac83962b13830fe8ad3f404ffc7051fb4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1fefabcb2b06736a66d2904074d56268753654805e829989a46a0161cd8412c5","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"c18a99f01eb788d849ad032b31cafd49de0b19e083fe775370834c5675d7df8e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5247874c2a23b9a62d178ae84f2db6a1d54e6c9a2e7e057e178cc5eea13757fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"156a859e21ef3244d13afeeba4e49760a6afa035c149dda52f0c45ea8903b338","impliedFormat":1},{"version":"10ec5e82144dfac6f04fa5d1d6c11763b3e4dbbac6d99101427219ab3e2ae887","impliedFormat":1},{"version":"615754924717c0b1e293e083b83503c0a872717ad5aa60ed7f1a699eb1b4ea5c","impliedFormat":1},{"version":"074de5b2fdead0165a2757e3aaef20f27a6347b1c36adea27d51456795b37682","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"4137ebf04166f3a325f056aa56101adc75e9dceb30404a1844eb8604d89770e2","impliedFormat":1},{"version":"ccab02f3920fc75c01174c47fcf67882a11daf16baf9e81701d0a94636e94556","impliedFormat":1},{"version":"3e11fce78ad8c0e1d1db4ba5f0652285509be3acdd519529bc8fcef85f7dafd9","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"9c32412007b5662fd34a8eb04292fb5314ec370d7016d1c2fb8aa193c807fe22","impliedFormat":1},{"version":"7fd1b31fd35876b0aa650811c25ec2c97a3c6387e5473eb18004bed86cdd76b6","impliedFormat":1},{"version":"4d327f7d72ad0918275cea3eee49a6a8dc8114ae1d5b7f3f5d0774de75f7439a","impliedFormat":1},{"version":"6ebe8ebb8659aaa9d1acbf3710d7dae3e923e97610238b9511c25dc39023a166","impliedFormat":1},{"version":"e85d7f8068f6a26710bff0cc8c0fc5e47f71089c3780fbede05857331d2ddec9","impliedFormat":1},{"version":"7befaf0e76b5671be1d47b77fcc65f2b0aad91cc26529df1904f4a7c46d216e9","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"5b03a034c72146b61573aab280f295b015b9168470f2df05f6080a2122f9b4df","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"8aee8b6d4f9f62cf3776cda1305fb18763e2aade7e13cea5bbe699112df85214","impliedFormat":1},{"version":"98498b101803bb3dde9f76a56e65c14b75db1cc8bec5f4db72be541570f74fc5","impliedFormat":1},{"version":"1cc2a09e1a61a5222d4174ab358a9f9de5e906afe79dbf7363d871a7edda3955","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"b64d4d1c5f877f9c666e98e833f0205edb9384acc46e98a1fef344f64d6aba44","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"12950411eeab8563b349cb7959543d92d8d02c289ed893d78499a19becb5a8cc","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"c9381908473a1c92cb8c516b184e75f4d226dad95c3a85a5af35f670064d9a2f","impliedFormat":1},{"version":"c3f5289820990ab66b70c7fb5b63cb674001009ff84b13de40619619a9c8175f","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3275d55fac10b799c9546804126239baf020d220136163f763b55a74e50e750","affectsGlobalScope":true,"impliedFormat":1},{"version":"fa68a0a3b7cb32c00e39ee3cd31f8f15b80cac97dce51b6ee7fc14a1e8deb30b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c36e755bced82df7fb6ce8169265d0a7bb046ab4e2cb6d0da0cb72b22033e89","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"7a93de4ff8a63bafe62ba86b89af1df0ccb5e40bb85b0c67d6bbcfdcf96bf3d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"90e85f9bc549dfe2b5749b45fe734144e96cd5d04b38eae244028794e142a77e","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0a5deeb610b2a50a6350bd23df6490036a1773a8a71d70f2f9549ab009e67ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"d2ae155afe8a01cc0ae612d99117cf8ef16692ba7c4366590156fdec1bcf2d8c","impliedFormat":1},{"version":"3f5e5d9be35913db9fea42a63f3df0b7e3c8703b97670a2125587b4dbbd56d7c","impliedFormat":1},{"version":"8caeb65fdc3bfe0d13f86f67324fcb2d858ed1c55f1f0cce892eb1acfb9f3239","impliedFormat":1},{"version":"57c23df0b5f7a8e26363a3849b0bc7763f6b241207157c8e40089d1df4116f35","affectsGlobalScope":true,"impliedFormat":1},{"version":"3b8bc0c17b54081b0878673989216229e575d67a10874e84566a21025a2461ee","impliedFormat":1},{"version":"5b0db5a58b73498792a29bfebc333438e61906fef75da898b410e24e52229e6f","impliedFormat":1},{"version":"dbe055b2b29a7bab2c1ca8f259436306adb43f469dca7e639a02cd3695d3f621","impliedFormat":1},{"version":"1678b04557dca52feab73cc67610918a7f5e25bfdba3e7fa081acd625d93106d","impliedFormat":1},{"version":"e3905f6902f0b69e5eefc230daa69fdd4ab707a973ec2d086d65af1b3ea47ef0","impliedFormat":1},{"version":"2ea729503db9793f2691162fec3dd1118cab62e96d025f8eeb376d43ec293395","impliedFormat":1},{"version":"9ec87fea42b92894b0f209931a880789d43c3397d09dd99c631ae40a2f7071d1","impliedFormat":1},{"version":"c68e88cdfadfb6c8ba5fc38e58a3a166b0beae77b1f05b7d921150a32a5ffb8d","impliedFormat":1},{"version":"2bc7aa4fba46df0bd495425a7c8201437a7d465f83854fac859df2d67f664df3","impliedFormat":1},{"version":"41d17e1ad9a002feb11c8cdd2777e5bbc0cdb1e3f595d237e4dded0b6949983b","impliedFormat":1},{"version":"07e4e61e946a9c15045539ecd5f5d2d02e7aab6fa82567826857e09cf0f37c2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c4714ccc29149efb8777a1da0b04b8d2258f5d13ddbf4cd3c3d361fb531ac86","impliedFormat":1},{"version":"3ff275f84f89f8a7c0543da838f9da9614201abc4ce74c533029825adfb4433d","impliedFormat":1},{"version":"0eb5d0cbf09de5d34542b977fd6a933bb2e0817bffe8e1a541b2f1ad1b9af1ff","impliedFormat":1},{"version":"f9713757bcdfa4d58b48c0fb249e752c94a3eee8bf4532b906094246ac49ef88","impliedFormat":1},{"version":"2c2bdaa1d8ead9f68628d6d9d250e46ee8e81aa4898b4769a36956ae15e060fe","impliedFormat":1},{"version":"c32c840c62d8bd7aeb3147aa6754cd2d922b990a6b6634530cb2ebdce5adc8e9","impliedFormat":1},{"version":"e1c1a0b4d1ead0de9eca52203aeb1f771f21e6238d6fcd15aa56ac2a02f1b7bf","impliedFormat":1},{"version":"82b91e4e42e6c41bc7fc1b6c2dc5eba6a2ba98375eb1f210e6ff6bba2d54177e","impliedFormat":1},{"version":"6fe28249ac0c7bc19a79aa9264baf00efbd080e868dbe1d3052033ad1c64f206","affectsGlobalScope":true,"impliedFormat":1},{"version":"cbed824fec91efefc7bbdcb8b43d1a531fdbebd0e2ef19481501ff365a93cb70","impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"d0716593b3f2b0451bcf0c24cfa86dec2235c325c89f201934248b7c742715fc","impliedFormat":1},{"version":"ec501101c2a96133a6c695f934c8f6642149cc728571b29cbb7b770984c1088e","impliedFormat":1},{"version":"b214ebcf76c51b115453f69729ee8aa7b7f8eccdae2a922b568a45c2d7ff52f7","impliedFormat":1},{"version":"429c9cdfa7d126255779efd7e6d9057ced2d69c81859bbab32073bad52e9ba76","impliedFormat":1},{"version":"2991bca2cc0f0628a278df2a2ccdb8d6cbcb700f3761abbed62bba137d5b1790","impliedFormat":1},{"version":"ce8653341224f8b45ff46d2a06f2cacb96f841f768a886c9d8dd8ec0878b11bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"230763250f20449fa7b3c9273e1967adb0023dc890d4be1553faca658ee65971","impliedFormat":1},{"version":"c3e9078b60cb329d1221f5878e88cecfa3e74460550e605a58fcfb41a66029ff","impliedFormat":1},{"version":"a74edb3bab7394a9dbde529d60632be590def2f5f01024dbd85441587fbfbbe0","impliedFormat":1},{"version":"0ea59f7d3e51440baa64f429253759b106cfcbaf51e474cae606e02265b37cf8","impliedFormat":1},{"version":"bc18a1991ba681f03e13285fa1d7b99b03b67ee671b7bc936254467177543890","impliedFormat":1},{"version":"00049ccc87f3f37726db03c01ca68fe74fd9c0109b68c29eb9923ebec2c76b13","impliedFormat":1},{"version":"fa94bbf532b7af8f394b95fa310980d6e20bd2d4c871c6a6cb9f70f03750a44b","impliedFormat":1},{"version":"68d3f35108e2608b1f2f28b36d19d7055f31c4465cc5692cbd06c716a9fe7973","impliedFormat":1},{"version":"a6d543044570fbeed13a7f9925a868081cd2b14ef59cdd9da6ae76d41cab03d3","affectsGlobalScope":true,"impliedFormat":1},{"version":"7fa2214bb0d64701bc6f9ce8cde2fd2ff8c571e0b23065fa04a8a5a6beb91511","impliedFormat":1},{"version":"f1c93e046fb3d9b7f8249629f4b63dc068dd839b824dd0aa39a5e68476dc9420","impliedFormat":1},{"version":"eab2f3179607acb3d44b2db2a76dd7d621c5039b145dc160a1ee733963f9d2f5","impliedFormat":1},{"version":"841983e39bd4cbb463be385e92fda11057cab368bf27100a801c492f1d86cbaa","impliedFormat":1},{"version":"6f5383b3df1cdf4ff1aa7fb0850f77042b5786b5e65ec9a9b6be56ebfe4d9036","impliedFormat":1},{"version":"62fc21ed9ccbd83bd1166de277a4b5daaa8d15b5fa614c75610d20f3b73fba87","impliedFormat":1},{"version":"e4156ddb25aa0e3b5303d372f26957b36778f0f6bbd4326359269873295e3058","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc1b433a84cae05ddc5672d4823170af78606ad21ecef60dbc4570190cbf1357","impliedFormat":1},{"version":"9d3821bc75c59577e52643324cec92fc2145642e8d17cf7ee07a3181f21d985d","impliedFormat":1},{"version":"7f78cfb2b343838612c192cb251746e3a7c62ac7675726a47e130d9b213f6580","impliedFormat":1},{"version":"201db9cf1687fab1adf5282fcba861f382b32303dc4f67c89d59655e78a25461","impliedFormat":1},{"version":"c77fb31bc17fd241d3922a9f88c59e3361cdf76d1328ba9412fc6bf7310b638d","impliedFormat":1},{"version":"0a20eaf2e4b1e3c1e1f87f7bccb0c936375b23b022baeea750519b7c9bc6ce83","impliedFormat":1},{"version":"b484ec11ba00e3a2235562a41898d55372ccabe607986c6fa4f4aba72093749f","impliedFormat":1},{"version":"a16b91b27bd6b706c687c88cbc8a7d4ee98e5ed6043026d6b84bda923c0aed67","impliedFormat":1},{"version":"694b812e0ed11285e8822cf8131e3ce7083a500b3b1d185fff9ed1089677bd0a","impliedFormat":1},{"version":"99ab6d0d660ce4d21efb52288a39fd35bb3f556980ec5463b1ae8f304a3bbc85","impliedFormat":1},{"version":"6eeded8c7e352be6e0efb83f4935ec752513c4d22043b52522b90849a49a3a11","impliedFormat":1},{"version":"6c1ad90050ffbb151cacc68e2d06ea1a26a945659391e32651f5d42b86fd7f2c","impliedFormat":1},{"version":"55cdbeebe76a1fa18bbd7e7bf73350a2173926bd3085bb050cf5a5397025ee4e","impliedFormat":1},{"version":"29f72ec1289ae3aeda78bf14b38086d3d803262ac13904b400422941a26a3636","affectsGlobalScope":true,"impliedFormat":1}],"root":[49,52,[88,90],93,96,110,111,113,115,122,[130,133],135,137,139,141,143,145,146,151,152,154,157,159,161,162,164,166,168,169,[171,173],175,[177,179],191,193,195,197,199,200],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitOnError":true,"outDir":"./","rootDir":"..","skipLibCheck":true,"sourceMap":true,"strict":true,"target":5,"useDefineForClassFields":false},"referencedMap":[[123,1],[125,2],[127,1],[53,1],[63,1],[64,3],[67,4],[65,4],[69,4],[72,5],[71,4],[70,4],[68,4],[66,6],[54,1],[55,7],[109,8],[183,9],[107,10],[108,11],[182,11],[184,12],[185,13],[98,14],[97,15],[118,16],[117,17],[116,18],[100,19],[101,20],[120,21],[119,15],[99,22],[106,23],[105,24],[104,1],[102,25],[103,26],[198,22],[87,27],[75,28],[76,29],[74,30],[77,31],[78,32],[79,33],[80,34],[81,35],[82,36],[83,37],[84,38],[85,39],[86,40],[324,1],[263,41],[264,41],[265,42],[203,43],[266,44],[267,45],[268,46],[201,1],[269,47],[270,48],[271,49],[272,50],[273,51],[274,52],[275,52],[276,53],[277,54],[278,55],[279,56],[204,1],[202,1],[280,57],[281,58],[282,59],[323,60],[283,61],[284,62],[285,61],[286,63],[287,64],[289,65],[290,66],[291,66],[292,66],[293,67],[294,68],[295,69],[296,70],[297,71],[298,72],[299,72],[300,73],[301,1],[302,1],[303,74],[304,75],[305,74],[306,76],[307,77],[308,78],[309,79],[310,80],[311,81],[312,82],[313,83],[314,84],[315,85],[316,86],[317,87],[318,88],[319,89],[320,90],[205,61],[206,1],[207,91],[208,92],[209,1],[210,93],[211,1],[254,94],[255,95],[256,96],[257,96],[258,97],[259,1],[260,44],[261,98],[262,95],[321,99],[322,100],[57,1],[288,1],[59,101],[56,102],[155,102],[60,1],[58,103],[73,104],[156,105],[61,106],[128,107],[124,1],[51,108],[50,1],[47,1],[48,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[19,1],[20,1],[4,1],[21,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[36,1],[33,1],[34,1],[35,1],[37,1],[7,1],[38,1],[43,1],[44,1],[39,1],[40,1],[41,1],[42,1],[1,1],[45,1],[46,1],[230,109],[242,110],[227,111],[243,112],[252,113],[218,114],[219,115],[217,116],[251,117],[246,118],[250,119],[221,120],[239,121],[220,122],[249,123],[215,124],[216,118],[222,125],[223,1],[229,126],[226,125],[213,127],[253,128],[244,129],[233,130],[232,125],[234,131],[237,132],[231,133],[235,134],[247,117],[224,135],[225,136],[238,137],[214,112],[241,138],[240,125],[228,136],[236,139],[245,1],[212,1],[248,140],[62,15],[112,141],[91,22],[92,141],[95,142],[94,141],[126,143],[138,144],[114,141],[121,145],[129,146],[134,141],[136,147],[140,141],[142,147],[144,147],[150,148],[153,144],[158,147],[160,147],[163,1],[165,141],[167,147],[170,147],[174,147],[176,149],[190,150],[192,151],[194,151],[196,141],[149,152],[189,153],[188,154],[187,155],[148,156],[180,157],[181,158],[147,15],[186,159],[49,1],[90,160],[89,161],[93,162],[96,163],[110,164],[111,165],[113,166],[115,167],[122,168],[130,169],[131,161],[132,161],[133,161],[135,170],[137,171],[139,172],[141,173],[143,174],[145,175],[146,161],[151,176],[152,161],[154,177],[157,178],[159,179],[161,180],[162,161],[164,181],[166,182],[168,183],[169,184],[171,185],[172,172],[173,161],[175,186],[177,187],[178,188],[179,161],[191,189],[193,190],[195,191],[197,192],[88,193],[52,194],[199,195],[200,196]],"version":"5.9.3"}
|
|
1
|
+
{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/typescript/lib/lib.esnext.float16.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../@types/global/index.d.ts","../../../node_modules/tslib/tslib.d.ts","../../../node_modules/tslib/modules/index.d.ts","../src/types.ts","../../../node_modules/@lit/reactive-element/development/css-tag.d.ts","../../../node_modules/@lit/reactive-element/development/reactive-controller.d.ts","../../../node_modules/@lit/reactive-element/development/reactive-element.d.ts","../../../node_modules/lit-html/development/directive.d.ts","../../../node_modules/@types/trusted-types/lib/index.d.ts","../../../node_modules/lit-html/development/lit-html.d.ts","../../../node_modules/lit-element/development/lit-element.d.ts","../../../node_modules/lit-html/development/is-server.d.ts","../../../node_modules/lit/development/index.d.ts","../../i18n/dist/src/ox-i18n.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/base.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/custom-element.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/property.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/state.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/event-options.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query-all.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query-async.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query-assigned-nodes.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query-assigned-elements.d.ts","../../../node_modules/lit/development/decorators.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/lodash-es/clonedeep.d.ts","../src/ox-property-editor.ts","../src/ox-properties-dynamic-view.ts","../src/index.ts","../../input/dist/src/ox-form-field.d.ts","../../input/dist/src/ox-input-3axis.d.ts","../src/ox-property-editor-3axis.ts","../../input/dist/src/ox-input-angle.d.ts","../../input/dist/src/ox-input-3dish.d.ts","../src/ox-property-editor-3dish.ts","../../../node_modules/@material/web/elevation/internal/elevation.d.ts","../../../node_modules/@material/web/elevation/elevation.d.ts","../../../node_modules/@material/web/internal/controller/attachable-controller.d.ts","../../../node_modules/@material/web/focus/internal/focus-ring.d.ts","../../../node_modules/@material/web/focus/md-focus-ring.d.ts","../../../node_modules/@material/web/ripple/internal/ripple.d.ts","../../../node_modules/@material/web/ripple/ripple.d.ts","../../../node_modules/@material/web/labs/behaviors/mixin.d.ts","../../../node_modules/@material/web/labs/behaviors/element-internals.d.ts","../../../node_modules/@material/web/internal/controller/form-submitter.d.ts","../../../node_modules/@material/web/button/internal/button.d.ts","../../../node_modules/@material/web/button/internal/elevated-button.d.ts","../../../node_modules/@material/web/button/elevated-button.d.ts","../src/ox-property-editor-action.ts","../src/ox-property-editor-angle.ts","../../../node_modules/@material/web/icon/internal/icon.d.ts","../../../node_modules/@material/web/icon/icon.d.ts","../../input/dist/src/ox-input-color.d.ts","../../input/dist/src/ox-input-color-stops.d.ts","../../popup/dist/src/ox-popup.d.ts","../../popup/dist/src/ox-popup-list.d.ts","../../input/dist/src/ox-checkbox.d.ts","../../input/dist/src/ox-select.d.ts","../../input/dist/src/ox-input-color-gradient.d.ts","../../data-grist/dist/src/data-card/data-card-field.d.ts","../../data-grist/dist/src/data-card/data-card-gutter.d.ts","../../input/dist/src/ox-input-file.d.ts","../../data-grist/dist/src/data-grid/data-grid-field.d.ts","../../data-grist/dist/src/record-view/record-view-body.d.ts","../../data-grist/dist/src/record-view/record-view.d.ts","../../data-grist/dist/src/data-card/data-card-gutter-menu.d.ts","../../data-grist/dist/src/data-card/record-card.d.ts","../../data-grist/dist/src/data-list/data-list-field.d.ts","../../data-grist/dist/src/data-list/data-list-gutter.d.ts","../../data-grist/dist/src/data-list/record-partial.d.ts","../../data-grist/dist/src/data-report/data-report-field.d.ts","../../data-grist/dist/src/editors/ox-grist-editor.d.ts","../../data-grist/dist/src/editors/registry.d.ts","../../input/dist/src/ox-input-image.d.ts","../../data-grist/dist/src/editors/ox-grist-editor-image.d.ts","../../data-grist/dist/src/editors/index.d.ts","../../data-grist/dist/src/filters/registry.d.ts","../../data-grist/dist/src/filters/filter-select.d.ts","../../data-grist/dist/src/filters/filter-input.d.ts","../../data-grist/dist/src/filters/filter-checkbox.d.ts","../../data-grist/dist/src/filters/filter-range-date.d.ts","../../data-grist/dist/src/filters/filter-range-number.d.ts","../../../node_modules/lit-html/development/directives/class-map.d.ts","../../../node_modules/lit/development/directives/class-map.d.ts","../../../node_modules/@material/web/chips/internal/chip.d.ts","../../../node_modules/@material/web/chips/internal/multi-action-chip.d.ts","../../../node_modules/@material/web/chips/internal/filter-chip.d.ts","../../../node_modules/@material/web/chips/filter-chip.d.ts","../../../node_modules/@material/web/chips/internal/chip-set.d.ts","../../../node_modules/@material/web/chips/chip-set.d.ts","../../input/dist/src/ox-input-select-buttons.d.ts","../../data-grist/dist/src/filters/filter-select-buttons.d.ts","../../input/dist/src/ox-input-search.d.ts","../../p13n/dist/src/types.d.ts","../../p13n/dist/src/p13n-mixin.d.ts","../../p13n/dist/src/ox-user-preferences-context.d.ts","../../p13n/dist/src/ox-user-preferences-provider.d.ts","../../p13n/dist/src/ox-user-preferences-consumer.d.ts","../../p13n/dist/src/index.d.ts","../../data-grist/dist/src/filters/filters-form.d.ts","../../data-grist/dist/src/filters/index.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer.d.ts","../../data-grist/dist/src/types.d.ts","../../data-grist/dist/src/configure/zero-config.d.ts","../../data-grist/dist/src/empty-note.d.ts","../../data-grist/dist/src/data-grid/data-grid-header.d.ts","../../data-grist/dist/src/data-grid/data-grid-accum-field.d.ts","../../data-grist/dist/src/data-grid/data-grid-body.d.ts","../../data-grist/dist/src/data-grid/data-grid-footer.d.ts","../../data-grist/dist/src/data-manipulator.d.ts","../../data-grist/dist/src/data-grid/data-grid.d.ts","../../data-grist/dist/src/data-list/data-list.d.ts","../../data-grist/dist/src/data-card/data-card.d.ts","../../data-grist/dist/src/data-consumer.d.ts","../../data-grist/dist/src/data-grist.d.ts","../../data-grist/dist/src/data-report/data-report-header.d.ts","../../data-grist/dist/src/data-report/data-report-body.d.ts","../../data-grist/dist/src/data-report/data-report-component.d.ts","../../data-grist/dist/src/data-report.d.ts","../../data-grist/dist/src/renderers/registry.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-boolean.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-color.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-date.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-link.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-password.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-progress.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-secret.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-text.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-select.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-image.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-file.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-json5.d.ts","../../data-grist/dist/src/renderers/index.d.ts","../../data-grist/dist/src/handlers/registry.d.ts","../../data-grist/dist/src/handlers/index.d.ts","../../data-grist/dist/src/formatters/registry.d.ts","../../data-grist/dist/src/formatters/index.d.ts","../../data-grist/dist/src/gutters/registry.d.ts","../../data-grist/dist/src/gutters/index.d.ts","../../data-grist/dist/src/sorters/sorters-control.d.ts","../../data-grist/dist/src/record-view/ox-record-creator.d.ts","../../data-grist/dist/src/record-view/index.d.ts","../../../node_modules/@material/web/button/internal/outlined-button.d.ts","../../../node_modules/@material/web/button/outlined-button.d.ts","../../data-grist/dist/src/personalizer/ox-grist-personalizer.d.ts","../../data-grist/dist/src/personalizer/index.d.ts","../../data-grist/dist/src/utils/list-param.d.ts","../../data-grist/dist/src/index.d.ts","../../attachment/dist/src/ox-attachment-list.d.ts","../../attachment/dist/src/ox-attachment-selector.d.ts","../../input/dist/src/ox-input-background-pattern.d.ts","../../input/dist/src/ox-input-fill-style.d.ts","../src/ox-property-editor-backdrop-faces.ts","../src/ox-property-editor-checkbox.ts","../src/ox-property-editor-color.ts","../../../node_modules/@material/web/fab/internal/shared.d.ts","../../../node_modules/@material/web/fab/internal/fab.d.ts","../../../node_modules/@material/web/fab/fab.d.ts","../../input/dist/src/ox-input-crontab.d.ts","../src/ox-property-editor-crontab.ts","../../../node_modules/@codemirror/state/dist/index.d.ts","../../../node_modules/style-mod/src/style-mod.d.ts","../../../node_modules/@codemirror/view/dist/index.d.ts","../../input/dist/src/ox-input-code.d.ts","../../../node_modules/@endo/immutable-arraybuffer/shim.d.ts","../../../node_modules/ses/types.d.ts","../../input/dist/src/ox-input-data.d.ts","../src/ox-property-editor-data.ts","../src/ox-property-editor-date.ts","../src/ox-property-editor-datetime.ts","../src/ox-property-editor-description.ts","../../input/dist/src/ox-input-duration.d.ts","../src/ox-property-editor-duration.ts","../src/ox-property-editor-file.ts","../src/ox-property-editor-fill-style.ts","../src/ox-property-editor-gradient-colorstops.ts","../../input/dist/src/ox-input-hashtags.d.ts","../src/ox-property-editor-hashtags.ts","../src/ox-property-editor-image.ts","../../input/dist/src/ox-input-key-values.d.ts","../src/ox-property-editor-key-values.ts","../src/ox-property-editor-legend.ts","../../input/dist/src/ox-input-mass-fraction.d.ts","../src/ox-property-editor-mass-fraction.ts","../src/ox-property-editor-month.ts","../../input/dist/src/ox-input-multiple-colors.d.ts","../src/ox-property-editor-multiple-colors.ts","../../../node_modules/lit-html/development/directives/if-defined.d.ts","../../../node_modules/lit/development/directives/if-defined.d.ts","../src/ox-property-editor-number.ts","../../input/dist/src/ox-input-options.d.ts","../src/ox-property-editor-options.ts","../../input/dist/src/ox-input-partition-keys.d.ts","../src/ox-property-editor-partition-keys.ts","../src/ox-property-editor-password.ts","../../input/dist/src/ox-input-range.d.ts","../src/ox-property-editor-range.ts","../../input/dist/src/ox-input-scene-component-id.d.ts","../src/ox-property-editor-scene-component-id.ts","../../input/dist/src/ox-input-secret.d.ts","../src/ox-property-editor-secret.ts","../src/ox-property-editor-select.ts","../../input/dist/src/ox-input-signature.d.ts","../src/ox-property-editor-signature.ts","../src/ox-property-editor-solid-colorstops.ts","../src/ox-property-editor-string.ts","../../input/dist/src/ox-input-table-column-config.d.ts","../src/ox-property-editor-table-column-config.ts","../../input/dist/src/ox-input-table.d.ts","../src/ox-property-editor-table.ts","../src/ox-property-editor-textarea.ts","../src/ox-property-editor-time.ts","../../popup/dist/src/ox-popup-menu.d.ts","../../popup/dist/src/ox-popup-menuitem.d.ts","../../../node_modules/@material/web/button/internal/filled-button.d.ts","../../../node_modules/@material/web/button/filled-button.d.ts","../../popup/dist/src/ox-prompt.d.ts","../../popup/dist/src/ox-floating-overlay.d.ts","../../popup/dist/src/open-popup.d.ts","../../popup/dist/src/index.d.ts","../../input/dist/src/ox-input-unit-number.d.ts","../src/ox-property-editor-unit-number.ts","../../input/dist/src/ox-input-value-map.d.ts","../src/ox-property-editor-value-map.ts","../../input/dist/src/ox-input-value-ranges.d.ts","../src/ox-property-editor-value-ranges.ts","../../input/dist/src/ox-input-work-shift.d.ts","../src/ox-property-editor-work-shift.ts","../../../node_modules/@material/web/typography/md-typescale-styles.d.ts","../stories/ox-properties-dynamic-view.stories.ts","../stories/ox-properties-editor-textarea.stories.ts","../../../node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/@types/node/web-globals/blob.d.ts","../../../node_modules/@types/node/web-globals/console.d.ts","../../../node_modules/@types/node/web-globals/crypto.d.ts","../../../node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/@types/node/web-globals/encoding.d.ts","../../../node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/undici-types/utility.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client-stats.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/round-robin-pool.d.ts","../../../node_modules/undici-types/h2c-client.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-call-history.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/snapshot-agent.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/undici-types/retry-handler.d.ts","../../../node_modules/undici-types/retry-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/cache-interceptor.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/util.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/eventsource.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/index.d.ts","../../../node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/@types/node/web-globals/importmeta.d.ts","../../../node_modules/@types/node/web-globals/messaging.d.ts","../../../node_modules/@types/node/web-globals/navigator.d.ts","../../../node_modules/@types/node/web-globals/performance.d.ts","../../../node_modules/@types/node/web-globals/storage.d.ts","../../../node_modules/@types/node/web-globals/streams.d.ts","../../../node_modules/@types/node/web-globals/timers.d.ts","../../../node_modules/@types/node/web-globals/url.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/inspector.generated.d.ts","../../../node_modules/@types/node/inspector/promises.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/path/posix.d.ts","../../../node_modules/@types/node/path/win32.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/quic.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/sea.d.ts","../../../node_modules/@types/node/sqlite.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/test/reporters.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/util/types.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/mocha/index.d.ts"],"fileIdsList":[[295,358,366,370,373,375,376,377,390],[222,223,295,358,366,370,373,375,376,377,390],[63,295,358,366,370,373,375,376,377,390],[55,63,295,358,366,370,373,375,376,377,390],[55,63,71,295,358,366,370,373,375,376,377,390],[65,295,358,366,370,373,375,376,377,390],[53,54,295,358,366,370,373,375,376,377,390],[61,108,295,358,366,370,373,375,376,377,390],[61,276,295,358,366,370,373,375,376,377,390],[58,61,101,103,104,105,106,295,358,366,370,373,375,376,377,390],[58,98,107,295,358,366,370,373,375,376,377,390],[58,107,295,358,366,370,373,375,376,377,390],[61,204,295,358,366,370,373,375,376,377,390],[61,150,295,358,366,370,373,375,376,377,390],[61,148,295,358,366,370,373,375,376,377,390],[58,61,146,295,358,366,370,373,375,376,377,390],[61,101,103,104,145,295,358,366,370,373,375,376,377,390],[58,61,98,147,295,358,366,370,373,375,376,377,390],[58,146,295,358,366,370,373,375,376,377,390],[61,97,295,358,366,370,373,375,376,377,390],[58,61,295,358,366,370,373,375,376,377,390],[61,217,218,295,358,366,370,373,375,376,377,390],[217,295,358,366,370,373,375,376,377,390],[58,61,98,101,103,104,295,358,366,370,373,375,376,377,390],[61,99,295,358,366,370,373,375,376,377,390],[61,100,295,358,366,370,373,375,376,377,390],[61,112,295,358,366,370,373,375,376,377,390],[61,295,358,366,370,373,375,376,377,390],[61,105,295,358,366,370,373,375,376,377,390],[61,104,295,358,366,370,373,375,376,377,390],[58,61,99,295,358,366,370,373,375,376,377,390],[61,102,295,358,366,370,373,375,376,377,390],[86,295,358,366,370,373,375,376,377,390],[74,76,77,78,79,80,81,82,83,84,85,86,295,358,366,370,373,375,376,377,390],[74,75,77,78,79,80,81,82,83,84,85,86,295,358,366,370,373,375,376,377,390],[75,76,77,78,79,80,81,82,83,84,85,86,295,358,366,370,373,375,376,377,390],[74,75,76,78,79,80,81,82,83,84,85,86,295,358,366,370,373,375,376,377,390],[74,75,76,77,79,80,81,82,83,84,85,86,295,358,366,370,373,375,376,377,390],[74,75,76,77,78,80,81,82,83,84,85,86,295,358,366,370,373,375,376,377,390],[74,75,76,77,78,79,81,82,83,84,85,86,295,358,366,370,373,375,376,377,390],[74,75,76,77,78,79,80,82,83,84,85,86,295,358,366,370,373,375,376,377,390],[74,75,76,77,78,79,80,81,83,84,85,86,295,358,366,370,373,375,376,377,390],[74,75,76,77,78,79,80,81,82,84,85,86,295,358,366,370,373,375,376,377,390],[74,75,76,77,78,79,80,81,82,83,85,86,295,358,366,370,373,375,376,377,390],[74,75,76,77,78,79,80,81,82,83,84,86,295,358,366,370,373,375,376,377,390],[74,75,76,77,78,79,80,81,82,83,84,85,295,358,366,370,373,375,376,377,390],[295,355,356,358,366,370,373,375,376,377,390],[295,357,358,366,370,373,375,376,377,390],[358,366,370,373,375,376,377,390],[295,358,366,370,373,375,376,377,390,398],[295,358,359,364,366,369,370,373,375,376,377,379,390,395,407],[295,358,359,360,366,369,370,373,375,376,377,390],[295,358,361,366,370,373,375,376,377,390,408],[295,358,362,363,366,370,373,375,376,377,381,390],[295,358,363,366,370,373,375,376,377,390,395,404],[295,358,364,366,369,370,373,375,376,377,379,390],[295,357,358,365,366,370,373,375,376,377,390],[295,358,366,367,370,373,375,376,377,390],[295,358,366,368,369,370,373,375,376,377,390],[295,357,358,366,369,370,373,375,376,377,390],[295,358,366,369,370,371,373,375,376,377,390,395,407],[295,358,366,369,370,371,373,375,376,377,390,395,398],[295,345,358,366,369,370,372,373,375,376,377,379,390,395,407],[295,358,366,369,370,372,373,375,376,377,379,390,395,404,407],[295,358,366,370,372,373,374,375,376,377,390,395,404,407],[293,294,295,296,297,298,299,300,301,302,303,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414],[295,358,366,369,370,373,375,376,377,390],[295,358,366,370,373,375,377,390],[295,358,366,370,373,375,376,377,378,390,407],[295,358,366,369,370,373,375,376,377,379,390,395],[295,358,366,370,373,375,376,377,381,390],[295,358,366,370,373,375,376,377,382,390],[295,358,366,369,370,373,375,376,377,385,390],[295,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414],[295,358,366,370,373,375,376,377,387,390],[295,358,366,370,373,375,376,377,388,390],[295,358,363,366,370,373,375,376,377,379,390,398],[295,358,366,369,370,373,375,376,377,390,391],[295,358,366,370,373,375,376,377,390,392,408,411],[295,358,366,369,370,373,375,376,377,390,395,397,398],[295,358,366,370,373,375,376,377,390,396,398],[295,358,366,370,373,375,376,377,390,398,408],[295,358,366,370,373,375,376,377,390,399],[295,355,358,366,370,373,375,376,377,390,395,401,407],[295,358,366,370,373,375,376,377,390,395,400],[295,358,366,369,370,373,375,376,377,390,402,403],[295,358,366,370,373,375,376,377,390,402,403],[295,358,363,366,370,373,375,376,377,379,390,395,404],[295,358,366,370,373,375,376,377,390,405],[295,358,366,370,373,375,376,377,379,390,406],[295,358,366,370,372,373,375,376,377,388,390,407],[295,358,366,370,373,375,376,377,390,408,409],[295,358,363,366,370,373,375,376,377,390,409],[295,358,366,370,373,375,376,377,390,395,410],[295,358,366,370,373,375,376,377,378,390,411],[295,358,366,370,373,375,376,377,390,412],[295,358,361,366,370,373,375,376,377,390],[295,358,363,366,370,373,375,376,377,390],[295,358,366,370,373,375,376,377,390,408],[295,345,358,366,370,373,375,376,377,390],[295,358,366,370,373,375,376,377,390,407],[295,358,366,370,373,375,376,377,390,413],[295,358,366,370,373,375,376,377,385,390],[295,358,366,370,373,375,376,377,390,403],[295,345,358,366,369,370,371,373,375,376,377,385,390,395,398,407,410,411,413],[295,358,366,370,373,375,376,377,390,395,414],[55,58,295,358,366,370,373,375,376,377,390],[58,295,358,366,370,373,375,376,377,390],[56,58,295,358,366,370,373,375,376,377,390],[56,57,295,358,366,370,373,375,376,377,390],[64,65,66,67,68,69,70,71,72,295,358,366,370,373,375,376,377,390],[144,295,358,366,370,373,375,376,377,390],[249,295,358,366,370,373,375,376,377,390],[55,58,59,60,295,358,366,370,373,375,376,377,390],[226,295,358,366,370,373,375,376,377,390],[50,295,358,366,370,373,375,376,377,390],[295,310,313,316,317,358,366,370,373,375,376,377,390,407],[295,313,358,366,370,373,375,376,377,390,395,407],[295,313,317,358,366,370,373,375,376,377,390,407],[295,358,366,370,373,375,376,377,390,395],[295,307,358,366,370,373,375,376,377,390],[295,311,358,366,370,373,375,376,377,390],[295,309,310,313,358,366,370,373,375,376,377,390,407],[295,358,366,370,373,375,376,377,379,390,404],[295,358,366,370,373,375,376,377,390,415],[295,307,358,366,370,373,375,376,377,390,415],[295,309,313,358,366,370,373,375,376,377,379,390,407],[295,304,305,306,308,312,358,366,369,370,373,375,376,377,390,395,407],[295,313,322,330,358,366,370,373,375,376,377,390],[295,305,311,358,366,370,373,375,376,377,390],[295,313,339,340,358,366,370,373,375,376,377,390],[295,305,308,313,358,366,370,373,375,376,377,390,398,407,415],[295,313,358,366,370,373,375,376,377,390],[295,309,313,358,366,370,373,375,376,377,390,407],[295,304,358,366,370,373,375,376,377,390],[295,307,308,309,311,312,313,314,315,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,340,341,342,343,344,358,366,370,373,375,376,377,390],[295,313,332,335,358,366,370,373,375,376,377,390],[295,313,322,323,324,358,366,370,373,375,376,377,390],[295,311,313,323,325,358,366,370,373,375,376,377,390],[295,312,358,366,370,373,375,376,377,390],[295,305,307,313,358,366,370,373,375,376,377,390],[295,313,317,323,325,358,366,370,373,375,376,377,390],[295,317,358,366,370,373,375,376,377,390],[295,311,313,316,358,366,370,373,375,376,377,390,407],[295,305,309,313,322,358,366,370,373,375,376,377,390],[295,313,332,358,366,370,373,375,376,377,390],[295,325,358,366,370,373,375,376,377,390],[295,307,313,339,358,366,370,373,375,376,377,390,398,413,415],[58,61,123,209,295,358,366,370,373,375,376,377,390],[58,61,113,210,295,358,366,370,373,375,376,377,390],[164,295,358,366,370,373,375,376,377,390],[61,164,295,358,366,370,373,375,376,377,390],[113,122,295,358,366,370,373,375,376,377,390],[58,61,113,128,166,171,295,358,366,370,373,375,376,377,390],[58,61,113,121,122,126,127,164,295,358,366,370,373,375,376,377,390],[58,61,86,124,164,168,295,358,366,370,373,375,376,377,390],[58,61,113,164,295,358,366,370,373,375,376,377,390],[61,113,116,164,295,358,366,370,373,375,376,377,390],[58,61,164,166,167,169,170,171,295,358,366,370,373,375,376,377,390],[58,61,160,164,172,173,174,175,295,358,366,370,373,375,376,377,390],[58,61,113,131,171,295,358,366,370,373,375,376,377,390],[58,61,113,126,129,130,164,295,358,366,370,373,375,376,377,390],[58,61,164,175,179,295,358,366,370,373,375,376,377,390],[58,61,132,164,295,358,366,370,373,375,376,377,390],[58,61,164,177,178,295,358,366,370,373,375,376,377,390],[133,134,136,295,358,366,370,373,375,376,377,390],[58,133,135,295,358,366,370,373,375,376,377,390],[58,61,124,164,295,358,366,370,373,375,376,377,390],[133,164,295,358,366,370,373,375,376,377,390],[58,61,113,295,358,366,370,373,375,376,377,390],[118,164,295,358,366,370,373,375,376,377,390],[152,164,295,358,366,370,373,375,376,377,390],[61,117,118,119,154,160,164,295,358,366,370,373,375,376,377,390],[138,139,140,141,142,143,153,161,295,358,366,370,373,375,376,377,390],[197,295,358,366,370,373,375,376,377,390],[199,295,358,366,370,373,375,376,377,390],[195,295,358,366,370,373,375,376,377,390],[137,162,164,165,176,180,194,196,198,200,201,203,207,208,295,358,366,370,373,375,376,377,390],[206,295,358,366,370,373,375,376,377,390],[58,61,205,295,358,366,370,373,375,376,377,390],[126,202,295,358,366,370,373,375,376,377,390],[58,61,113,126,164,176,295,358,366,370,373,375,376,377,390],[58,61,113,124,164,295,358,366,370,373,375,376,377,390],[58,61,113,123,124,125,164,295,358,366,370,373,375,376,377,390],[163,181,182,183,184,185,186,187,188,189,190,191,192,193,295,358,366,370,373,375,376,377,390],[58,61,163,295,358,366,370,373,375,376,377,390],[163,164,295,358,366,370,373,375,376,377,390],[58,121,122,124,128,129,130,131,132,137,162,163,295,358,366,370,373,375,376,377,390],[58,61,91,295,358,366,370,373,375,376,377,390],[58,61,91,94,295,358,366,370,373,375,376,377,390],[58,61,62,91,113,114,211,295,358,366,370,373,375,376,377,390],[61,91,224,295,358,366,370,373,375,376,377,390],[58,61,62,91,94,113,115,119,295,358,366,370,373,375,376,377,390],[58,61,91,113,114,295,358,366,370,373,375,376,377,390],[58,61,91,113,219,295,358,366,370,373,375,376,377,390],[58,61,91,225,227,295,358,366,370,373,375,376,377,390],[58,61,91,113,295,358,366,370,373,375,376,377,390],[58,61,62,91,113,114,115,120,212,295,358,366,370,373,375,376,377,390],[58,61,91,113,117,119,295,358,366,370,373,375,376,377,390],[58,61,91,149,151,295,358,366,370,373,375,376,377,390],[58,61,62,91,113,114,295,358,366,370,373,375,376,377,390],[58,61,91,113,281,295,358,366,370,373,375,376,377,390],[58,61,91,114,295,358,366,370,373,375,376,377,390],[58,61,91,113,117,118,295,358,366,370,373,375,376,377,390],[155,156,157,158,159,295,358,366,370,373,375,376,377,390],[155,295,358,366,370,373,375,376,377,390],[116,117,274,275,278,280,295,358,366,370,373,375,376,377,390],[61,279,295,358,366,370,373,375,376,377,390],[58,61,113,116,295,358,366,370,373,375,376,377,390],[58,61,116,295,358,366,370,373,375,376,377,390],[58,61,274,295,358,366,370,373,375,376,377,390],[58,61,113,205,277,295,358,366,370,373,375,376,377,390],[51,52,88,89,295,358,366,370,373,375,376,377,390],[51,52,61,73,88,295,358,366,370,373,375,376,377,390],[51,52,61,73,88,92,295,358,366,370,373,375,376,377,390],[51,52,61,73,88,95,295,358,366,370,373,375,376,377,390],[51,52,61,73,88,109,295,358,366,370,373,375,376,377,390],[51,52,61,73,88,94,295,358,366,370,373,375,376,377,390],[51,52,61,62,73,88,213,295,358,366,370,373,375,376,377,390],[51,52,61,73,88,118,295,358,366,370,373,375,376,377,390],[51,52,61,73,88,114,295,358,366,370,373,375,376,377,390],[51,52,61,73,88,220,295,358,366,370,373,375,376,377,390],[51,52,61,73,88,228,295,358,366,370,373,375,376,377,390],[51,52,61,73,88,233,295,358,366,370,373,375,376,377,390],[51,52,61,73,88,123,295,358,366,370,373,375,376,377,390],[51,52,61,73,88,213,295,358,366,370,373,375,376,377,390],[51,52,61,73,88,115,295,358,366,370,373,375,376,377,390],[51,52,61,73,88,238,295,358,366,370,373,375,376,377,390],[51,52,61,73,88,135,295,358,366,370,373,375,376,377,390],[51,52,61,73,88,241,295,358,366,370,373,375,376,377,390],[51,52,61,73,88,244,295,358,366,370,373,375,376,377,390],[51,52,61,73,88,247,295,358,366,370,373,375,376,377,390],[51,52,61,73,88,250,295,358,366,370,373,375,376,377,390],[51,52,61,73,88,252,295,358,366,370,373,375,376,377,390],[51,52,61,73,88,254,295,358,366,370,373,375,376,377,390],[51,52,61,73,88,257,295,358,366,370,373,375,376,377,390],[51,52,61,73,88,259,295,358,366,370,373,375,376,377,390],[51,52,61,73,88,261,295,358,366,370,373,375,376,377,390],[51,52,61,73,88,117,119,295,358,366,370,373,375,376,377,390],[51,52,61,73,88,264,295,358,366,370,373,375,376,377,390],[51,52,61,73,88,268,295,358,366,370,373,375,376,377,390],[51,52,61,73,88,270,295,358,366,370,373,375,376,377,390],[51,52,61,73,88,225,295,358,366,370,373,375,376,377,390],[51,52,61,73,88,282,295,358,366,370,373,375,376,377,390],[51,52,61,73,88,284,295,358,366,370,373,375,376,377,390],[51,52,61,73,88,286,295,358,366,370,373,375,376,377,390],[51,52,61,73,88,288,295,358,366,370,373,375,376,377,390],[51,52,61,62,73,87,295,358,366,370,373,375,376,377,390],[51,295,358,366,370,373,375,376,377,390],[51,52,61,88,89,93,96,111,215,216,221,230,231,232,235,239,240,242,243,248,251,253,255,256,258,262,263,265,267,272,283,289,290,295,358,366,370,373,375,376,377,390],[51,52,61,88,89,272,295,358,366,370,373,375,376,377,390]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},"b5c159239c33d1bcb3d7ca8d24cf9ba1b1579aab80e70fbb0029e374880f2470",{"version":"a6a5253138c5432c68a1510c70fe78a644fe2e632111ba778e1978010d6edfec","impliedFormat":1},{"version":"b8f34dd1757f68e03262b1ca3ddfa668a855b872f8bdd5224d6f993a7b37dc2c","impliedFormat":99},{"version":"b07f5be9a57a2858c78eaf04d97a7340963f1f31de055efe9fa81e086034ecb7","signature":"b3522fc474172a4dc96b7845e16101d70098f7c77c2c67d7fbc196401ba8b5eb"},{"version":"74012d464fbc5354ca3a7d5e71bee43b17da01a853c8ff10971bbe3680c76f40","impliedFormat":99},{"version":"5e30131b6a5587fe666926ad1d9807e733c0a597ed12d682669fcaa331aea576","impliedFormat":99},{"version":"a0f82d2f9450bd147a8c137798d9501bd49b7c9e118f75b07b76709ff39b6b55","affectsGlobalScope":true,"impliedFormat":99},{"version":"00cb63103f9670f8094c238a4a7e252c8b4c06ba371fea5c44add7e41b7247e4","impliedFormat":99},{"version":"15fe687c59d62741b4494d5e623d497d55eb38966ecf5bea7f36e48fc3fbe15e","impliedFormat":1},{"version":"e09db3291e6b440f7debed2227d8357e80c95987a0d0d67ac17521d8f7b11bdb","impliedFormat":99},{"version":"9a318e3a8900672b85cd3c8c3a5acf51b88049557a3ae897ccdcf2b85a8f61f9","impliedFormat":99},{"version":"1bcd560deed90a43c51b08aa18f7f55229f2e30974ab5ed1b7bb5721be379013","impliedFormat":99},{"version":"dc08fe04e50bc24d1baded4f33e942222bbdd5d77d6341a93cfe6e4e4586a3be","impliedFormat":99},"29dca1b5f0cac95b675f86c7846f9d587ed47cc46609dd00d152bcb37683b069",{"version":"cdeae34aca6700620ebf3f27cf7d439c3af97595dd6e2729fa4780483add5680","impliedFormat":99},{"version":"3ff87ea3471b51beaf4aa8fd8f4422862b11d343fdbb55bf383e0f8cc195a445","impliedFormat":99},{"version":"99bdf729529cdbf12e2bf76ea751b662011133dcf9e35abcb3def47bb02f7b0a","impliedFormat":99},{"version":"732fb71ecb695d6f36ddcbb72ebfe4ff6b6491d45101a00fa2b75a26b80d640f","impliedFormat":99},{"version":"039cb05125d7621f8143616c495b8e6b54249c4e64d2754b80ff93867f7f4b01","impliedFormat":99},{"version":"1b81f1fa82ad30af01ab1cae91ccaddc10c48f5916bbd6d282155e44a65d858d","impliedFormat":99},{"version":"a0fc7a02a75802678a67000607f20266cf1a49dc0e787967efe514e31b9ed0c3","impliedFormat":99},{"version":"5ebf098a1d81d400b8af82807cf19893700335cf91a7b9dbd83a5d737af34b11","impliedFormat":99},{"version":"101cf83ac3f9c5e1a7355a02e4fbe988877ef83c4ebec0ff0f02b2af022254a3","impliedFormat":99},{"version":"d017e2fcd44b46ca80cd2b592a6314e75f5caab5bda230f0f4a45e964049a43a","impliedFormat":99},{"version":"a8992b852521a66f63e0cedc6e1f054b28f972232b6fa5ca59771db6a1c8bbea","impliedFormat":99},{"version":"380b919bfa0516118edaf25b99e45f855e7bc3fd75ce4163a1cfe4a666388804","impliedFormat":1},{"version":"40de86ced5175a6ffe84a52abe6ac59ac0efbc604a5975a8c6476c3ddc682ff1","impliedFormat":1},{"version":"fcf79300e5257a23ed3bacaa6861d7c645139c6f7ece134d15e6669447e5e6db","impliedFormat":1},{"version":"187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","impliedFormat":1},{"version":"aa2c18a1b5a086bbcaae10a4efba409cc95ba7287d8cf8f2591b53704fea3dea","impliedFormat":1},{"version":"5a0b15210129310cee9fa6af9200714bb4b12af4a04d890e15f34dbea1cf1852","impliedFormat":1},{"version":"0244119dbcbcf34faf3ffdae72dab1e9bc2bc9efc3c477b2240ffa94af3bca56","impliedFormat":1},{"version":"00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","impliedFormat":1},{"version":"a873c50d3e47c21aa09fbe1e2023d9a44efb07cc0cb8c72f418bf301b0771fd3","impliedFormat":1},{"version":"7c14ccd2eaa82619fffc1bfa877eb68a012e9fb723d07ee98db451fadb618906","impliedFormat":1},{"version":"49c36529ee09ea9ce19525af5bb84985ea8e782cb7ee8c493d9e36d027a3d019","impliedFormat":1},{"version":"df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","impliedFormat":1},{"version":"4f6a12044ee6f458db11964153830abbc499e73d065c51c329ec97407f4b13dd","impliedFormat":1},{"version":"7e7a817c8ec57035b2b74df8d5dbcc376a4a60ad870b27ec35463536158e1156","impliedFormat":99},{"version":"cd9e9a3729fcd946e0c2e83e02a42fdeb20f13958622ed291e727f5c28ed33fb","signature":"eef625cb6790746c6bb63366ac4660e58260ebfd28a592de6677e8a85e267c15"},{"version":"efa3d736db0569c359233251d6aa089d1b5d6fd19a51a965b8869939f37293e9","signature":"e27b7dda5e25159011e797ca96bff2d3476bb19cb942ad1a83d0a8e8172b87c3"},{"version":"1333308b633c48ce258023edda23233204fc2f57a8f98c309198e170506118bb","signature":"d0f0b9c123ac41343b6faec852928381067194bf8c60d70ae9e2ce896f3bd31b"},"cb85235628f67d0904e45733fd9071f6ec8332e9a6ae66d32730ba6c445a51ef","e46c6b9e011509b9d5cb86a0daf0ddec8abed2b575a575325f8e886784a8163b",{"version":"bacfcfe3fd5e69ce10939d1ddff9d66d90e8ed71432db2faf678bd353cdd25ed","signature":"52f8d4fc01e4ac6a7582505cd91358e2aa383910d64b4c01ffeef04e72256ddf"},"53b2a55014f054f5b36eb94b4ebd5790e3e455f668403718032efec1b589d103","aceae7fb3a67386f3feedcc318ff33a7199c4280f18a642be53cd53f615e1f82",{"version":"e3e3ba5bc25e3859d8ecdca6c4e83633803a1a554440e3eaf56511cd83a4a73d","signature":"12e2a51cf74bd50ba640abfb21093cebeeed0a9bf6887562024dd195a322a61e"},{"version":"6184309fe39e2fe444f4ba94e7cd1abef48fcb48e258457c3b77c65828184241","impliedFormat":99},{"version":"98c511f60c3079d731a35353a47bfa89dd79eeacad48a45d07170d22ef4bfd02","affectsGlobalScope":true,"impliedFormat":99},{"version":"905800cc110167503d0cf58bb0dd6fa4aaac1e9cedc9bd9c48e5d1f8b5b8d4c8","impliedFormat":99},{"version":"d17be577b99e59611df19ca2cf0356df554f55bb06617c21321fc4ec06b820d0","impliedFormat":99},{"version":"5f30145fbc8ca508ae4e0d90a4fe9eaff490783f380a92f6aa262accdf7887b7","affectsGlobalScope":true,"impliedFormat":99},{"version":"cefe49d29d43726072e88671a2c40cdeeb8d49ca8fa6c2d4b06013dc7b9d6206","impliedFormat":99},{"version":"f882b77c5939860d599b4b7bc39f741ebcd56123e18b284500f4b8923acd2e72","affectsGlobalScope":true,"impliedFormat":99},{"version":"0230bc76ed3a464531a43d2434d315b9cc2096aaca28bdaa65b8f9dce9f3bc81","impliedFormat":99},{"version":"559d2d1cd7f37dc2ac59e7adce198ad16a5eb0c7273d67b8e4ff72821b7c853f","impliedFormat":99},{"version":"afa8760622183e35e86f516574217eb1853b08cf2168be0bfe991643ece1a8fe","impliedFormat":99},{"version":"40e539ae4fb534c8032594c8e2e7c420be13942b43b20a9afca53d1fd42eb8b3","impliedFormat":99},{"version":"0cb349f3a6866eb4ec6424b3844fa51498b32402f922d5a571d069d7cf44c68f","impliedFormat":99},{"version":"517dd6f73e4d20b38841f7be1edb2fb6f4152775ac3a9c04e319ff0b3509c8ba","affectsGlobalScope":true,"impliedFormat":99},{"version":"8183712231872bbc6ced8cff9dee08deefe5e2eeb7cfa8af35ade8079e06ce3d","signature":"f783dd601bebd477b9a198f9264f4f0aa1d34e1c4e124f9ef48a3153dd7ea004"},{"version":"f53f79e8c67dbf105324416d2d2e5d770f72c67a7317be2750c54337948eea6f","signature":"1de801b5870240983bf8dd318c21e028af92166a1767d63dc8122ef68b589503"},{"version":"5565deadc1d553f9f1ef370351432c258d2a6f1a5ca47e574e5430db824468c7","impliedFormat":99},{"version":"4ae1ed87c59518f4e0918a21409ec3020e97037a386b57953c6b9fed9cad6949","affectsGlobalScope":true,"impliedFormat":99},"e7db50dc539498b089c30cac94b538962d340c63c277a13c7233ddf3d4641fab","c7c85f4780e51de4c887e500339355164f3399bc45a552e311db5218ac950656",{"version":"75069a2a1e380502ff9a1074b8ee61f5e84f31973e5f81b444e6993e5633c72b","affectsGlobalScope":true},"8aff91f00938aa90ce829f4d577903d6826fa19e8edc583f7bb64ef1a6b4ae3b","2e8d620000b61541f0a8ac23d90fcc9ffacf72045920273f95aa9d17ba54b6fa","a8ef8a6b8827c526b0bcbdd50b066e884ae5ae2d4c07711c83b8afe23c37a100","55c660f8245908c19fa769001fbf094efad0f3c67bded7e066b4320986f849de","c5983f3043b088d467b970a80be1160308a73db09a014219342d0d71651de001","4958be23f4af4775159ac70ebaad509dc5a32e92ebe5a8ef71b8c830313f68ca","ebe6f76595fbda9ca25d8018bd932cab144c2b1ec62ab8ec064da0ad729eac96","b9545dbda87ee111d4cc60b546d51b54a0d2ea077e9f6ce708fca09d51bd057b","ce9587610e65de259eb2421457b8793e2291a84b6d0e3c50170691d8f2657c09","efea818d1d1ee1b45c9d508281693bd6890ef147762ae32b38dc4badb31cf8d8","7df0848e1a42b4e997f23f3d432ef1920a6c3b0587d32aedb6ae851f3b1aee2b","69546ff9ed013b886118b086056e683656b95aac15c77e541785fe2679a8b54f","db5c72a5d860e35fd0c98feb8d25ef9023ef20d873bb640279a52232be78d43e","eea379cd939c41bba4166171d98539dded117f3d7dba82d58ed5225955ad24ce","c286184427311be2421096b4a3dc0bb32e693ae25d9f015da3ab60cfed6fff55","4e4d2597118abf33550e8a22569ab602d2f7867b6d6834c720a78cb46d5bd726","e5c8ca76468fecea8f2890ffb47c40e4667a76daadcd907d4626ad571bc577fa","cf5e4a2d5423f58aa3a08b378bb0fc3f5ef5beadcccd99ec11d5dcf8d8010ad4","6bb8d9049c8717a1aa508b02a46bbad3a5a682442f7aa2bbec8ae65409c9cab9","5b2dafe66896138a12fc33743126ed316f93971f5233fccaf602784a3c8ac22d","a1ac23ef001a63c92f12f4205f0ae2d977149c76fb63f375e91baf9556cf0d7f","4285b3976062212af73781ab61cd2d35014d6c8922ccbc082272ea14b56c4119","3a013f7fbf37d729acc77549e65bddfee493c8eb0a1bda4938cdd4a930284ac9","49e700af7573f0145ae3e5d80c85d244d7f72c532c15d51428f722a21ff46bd2","ea65e3ce32dcbb61edb379f86b303732103a887fcfe61fb0434cd5398fc8c272","e62ce39bfd35c9b635c17cd38ec65e4560d28c5f6a9419400a542c436a3257d1","1f8156cfa59fe2f9029598911458a03d2e8cd67954c17b5be72470b902ddede6",{"version":"9e77270468dc77ee3f0182f377a6022b37cce590cab79205c497cfb964ee2d20","impliedFormat":99},{"version":"8bb8931e629d9adfac6fe0c067de1a3c2f82b47262f83fa76eb0772ef13808e8","impliedFormat":99},{"version":"75c9b7226184ba8d96f2f8818e8a1c1c8f1f8325b17645029ddda07bec3ade83","impliedFormat":99},{"version":"1e8f86f007abd453e72e49dbc52aae6946167a1bdc2a989c1f12d3cf0244d2f8","impliedFormat":99},{"version":"1b45982abdcb2d07d5d1fc84dc6966227b7c82d4a12bd8ec50a28a01c8842d9f","impliedFormat":99},{"version":"220a08c0460aff4f65b8129a53c63c97599d96430150e7fb2ca8da5ccbc16bfc","affectsGlobalScope":true,"impliedFormat":99},{"version":"f296e6ff892a925da76ed1e7b2114803db2877f1fdd665f33e0b26de7e1a6523","impliedFormat":99},{"version":"2b7426977de7220c78217f27552dca65b529654f85f7c26b6689684c9f002cef","affectsGlobalScope":true,"impliedFormat":99},"4171fcef202a19a14cfbf1d9269a7007c5ab79c58a07c88f77419dcb576e3362","75a28692c8dbce56c0b07de8604d9761a5aa1e555cea4dcff3cef077b5f8efbd","7eba8a6646923a39bb4ababe5faad2f5a9dba44b1d9324dc07200350341d89ee","f267810dcd09cb85ea08c95901e568becf0b9d22a6d213701ef804d40b386f60","4b624b0123ffb53ac7617babb35706283dc8e9c08029591b6e20199a8292f756","680b90445420b57653cd9afa1a143605cebe72cfdd0404fd5865cf7468d9fbaf","08c284a870f969e3755ec10154f7116391ef7370d157b612598f9a990adf6b37","90e0f68bc1ea26121712b8697446d05374c920d57178f64cf1864171de75129c","38310ee8ef968c009441d8589375a1a9c302594afb260aa663f70906f581175e","26bad57957e9f9eb1cba37346baf8917437799f8867e7b3e1c74afec81d97e46","5eebd8d6472ff8d9311d6601eb974474e9a5c70abb29d7f92023a21e4c151fbf","e5d3dadc5be9652b10ac1e2784e3f4fcdc32bc61fa0f5707ec863a28012ee728","8f8600a6c8adc260e45ba1e461cf4a4902c54555e66f8d99fad1121c791dae63","11e3901adc967efa6d847dda8cd9227026ef306b91d569d366d6f08e2decde26","b4e0c5592f4108bc1c855177aaa1b61d09d02f8e0f59089388aba7206c47d4d7","b716363b91ef2010c599a34d8d9757eab83ed5ab3d798616ba61884a0816f732","f7b1eea3f4773ad7c5ddf23f3baf80f9bb4b3a8d188e839bc901833c5849f15d","4d348e8128fa38c82e714c3237f652cb7d4ae4f1a488848a3279ec8757c1a388","c2a17ebbed3ed2b156debeb41b51f45cd76a8ea930dee56ec984a2467c0ede54","f714e700470b18b5cf8ee5e69b90994abb6613f956d95bc35ce1ed07e57ff8f7","33ef38b44de1f8012d7ca8331733e9347287579b1922d64af126546d85af23ab","0b7070aa7e1af7efc6c302cc833b7f8c96e40afaa0d1722d2356d5051a2cb86c","b241f57d288bb85f48768b19ca0a4c00f8a4bfd745c53317078c5701fbeb0cb8","13d4e6fe29b7b1091de2284a93229d609b6054c52cdf043aed190acb19033721","3e0930dc59deed77198b8f3ee52b46534cc30fc17c34d085089c9c818c12716e","8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","a5ba81b3ee037c88484f0475ef97da766e52abafbc0a87c267fcf3c42f6fb883","ee72a6fcb7937cfb067c412ee0ce469d1d327d2c6db7c7e9542687d9ca78684d","12051cef0483c091431470de729c82211cdc9093d0ff92e8cb3a502b0b1f7767","b248a2c86a9608ef3f4c5480fda53e28daaa858fdfbfbe9ed31e0e0a0aa83b69","e3cb6d4cfee2e0504f1bf8e897181462f026e9a29ac6fcd784bf2cd0b6ba9439","bbb05ef0cca9dde33f69e1a9e5dbbbb1d0e676d3a2d0545188b074477343b120","ea1ba57d293afc21604250f1ee9d035c50f9548439e4a940a96029994a690855","be092d0d60f9d2bac1bc9d854e3ed099d46b6c6c1a35c2f11627036ed9988d86","c7cc8ceb5b443e3c6f120cad5677e884be1520c24dd397a29e267e2e871c7733","f5345362e8db7ca509febbc627cc971adaf41d2055dce2160003114016039893","ad93d98c875005b00fcc8f37a9fc64c8b1a61eb631cec1a27b0007ba8f7ff3cb","36d9dd224edc317ad504e67dcb8036ab7d9c8ebaa7f08a3e0893da86893ad4db","46c2e9644f95c53cd3bb1e46a44b5c0a004db9003e72577d6f100d165d346bee","58c17083dc5670cdd4fa086639b06e9c4c0bd7966e47db2af2c33a6b709d3cec","bc0d436a8a92e365b6c0fba8712d925d47f30b150ab018f25cc7ed722304e87a","f910e5fde3c2ee17d0c75fee30baf91be97a1f8961a97cc4fab78113f5235755","db9c5405bf5625a5add898aca1f3da363ba3e4e34861a35c076fbb7eda56181e","b4583ac6c50ac509c24ecb26f0c49175ea99aa561799c6059684d868a1fa56d1","34a7396c117c7751d6eb8d0469639f3381f36bf5bc7b77237ddff68954190ff9","e10371bd77f5af2847adeb8cb585bcd0208bb156fdb7ea42d474190a7e9f4399","34a7396c117c7751d6eb8d0469639f3381f36bf5bc7b77237ddff68954190ff9","0daca193f44847ca6a1f4f4ccc695200e5739bfe8026244aba21c136917780f9","34a7396c117c7751d6eb8d0469639f3381f36bf5bc7b77237ddff68954190ff9","af2c6f6177181cd7fd5ed77162ddfb127ccad05dee4979dcaa314b620bf00db7","9db311570e95f7f07391ede131d8c591a6646478a93a867066439ff4a04b8497","b2afd16c37f8021115977d7e1676891e742d3773c28389206bf3b92fcd792b09",{"version":"f9f3097a031827350b6befd870e9da3ec0953b7269497c1a7c5dc840223d2fb3","impliedFormat":99},{"version":"d56278ed347a6685abc6da6b49277da36db3ddce86bd298c03b48a5f9c6d145c","affectsGlobalScope":true,"impliedFormat":99},"b546c64e0e45bd8ce4806cc8e541c99c161ea07eedd9259dd3bd33bda8713a36","32c367dd0a1a9ce901b5e5b27a3e0fa05551ed1c9da473be1979edf95411e15e","807c2f3ec9aad7754411e505ffe872f5cbf1d3502917f0d2ff2a2f35aff51d8d","0a719863d4ad5ec6d4f2321f95ad7f2df209ca1253925227f2a744d9e484cdc2","39d5a49f0bb5b82378cf233543ac3025bda38472b5701e040a46b49e806becb4","017de2802db1b926df422f81c61054cd1b7a9e29223acf49a18f28ad4f75fd5a","8ba867b69099e9f6be658044731610c15c9f36c2bbe5f2e4077ddc9ee667c21b","9c3c124ca89571a3e4b32f7d959086926d0ef517a7b862a6991168b31c1e4d60",{"version":"aa5b0b8724c8d269572dad8fac949023f45953105d8eea41ba33386a7d85d5df","signature":"3244e8af9a562ef777d0627d71b50a2ac601b8b59bb527f1525a7ebb63c51197"},{"version":"f88142aed2f0ef46eaefd213e4766337fd8fd351adfd5dee72b8ca4d956e0670","signature":"d2180072449a08d847092e04aca711d5eacb6ae8dae4ea180ec3737f2f5cc58e"},{"version":"71f26e5a91514065956b4ec31b65c93c8027c88be28d505e4c95d43bb06d101b","signature":"4e7551dcb839207608c438680ba306211b3483c46ebab4ce3b99b32587132edb"},{"version":"50d6de22a2638ee065f170cf1c4e7db26b2cd9eeb1a1ce023f4cd93d43fc453e","impliedFormat":99},{"version":"41e4b825afe9f38c821a8d7bd9667e2c923c847e31036cfd6c98006b0ca1653e","impliedFormat":99},{"version":"fb3796f25b77cf1496279d8250b8ca76741ce750a75bd8cca753eccf02358e07","affectsGlobalScope":true,"impliedFormat":99},"fa7607f48ba2c02eb8af042878d7e376157900562340f72874650d2102b5b72d",{"version":"f4feb3cc53015edab6506e3e4583e5edf7a748dda6dc264a67e7532c55f1f509","signature":"1168227ad5d84017ebda70c93f7779c587c892eeee786009f3be396612978e8f"},{"version":"152accb0c34090709491877e607a5ec957a70040e5320a1516348311c112933a","impliedFormat":99},{"version":"fe9dd679e568dc2a0e5e6959f77b53f8bc1f126d46b0d17631347ba57470b808","impliedFormat":99},{"version":"300627fdf9e8f926a051ffe14c285ab2a2589e2d5d040e0b03f9079cf7cb7f78","impliedFormat":99},"a8a3a2175e08d443028d02b9825934205084137e7530ab3b49e1dbefcca6e345",{"version":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"65e0fbf4a37e173183dfafdaf689694ad8357d7d4f5c37cfb2ff762ab4728043","affectsGlobalScope":true,"impliedFormat":99},"cd359db90e7bbc5d94ecd06e8fb7dc8e6ce65c4aab9343093c9f1f415c00d6c2",{"version":"bf13c17dde026c7af985b8f080be2bd79bc7e1596d26c469aed5d434eb8019e4","signature":"839178689f64d93914fee9a5c36b559f0e63e89680095e63af99be23abcd7495"},{"version":"02c58b1867864a4b325e01258bd0f7734dc05cf838b614a5de26bbb1b40544cd","signature":"8a98fd03f054b0a4745fbf1f5f881532f506e33fa7b732b522fdfeb5c3b0fcc6"},{"version":"edabac7e033e4a8325644d7573b0fed142d0b001797676d55a72a91d6bc33455","signature":"4b4d8d4db643a3fc2a117e0ecbc6d05fc0f24fd1886e5e6f7d8393b307bc0ee3"},{"version":"98f9674a221fc2430e35bca85132991c914acd3fde3137b49e041cb679b87376","signature":"d343fdd408124d88e363262682939e088cb2e7b3f13d1f1ae02e96c9447340ee"},"14344cf9bac2f1a62ec32f52858a3f11f63c70832207e824ce1f7083492affb8",{"version":"8fe4e8476bfa57a54405dc98f2d9b1f9a34e37db14c5c8b6cd884ce7de1b9899","signature":"ca5cd3a82001b038d2721e22bf6b6de1d6f490c508cebe8d193b5d26cfcd013f"},{"version":"d7fa13671239a07b5b48e2f049388056a7494a5f970382ace3e28d7490c2f835","signature":"0c41a88426d9df114f22ec1eedc0f879f3ced62245ea2f2baaf845182009ed40"},{"version":"f1f5fa60e904cc5f8973349bb54f2499194359aafde9f5ea822c62e27bfae6b6","signature":"f7f86b825c1bfbdf51b9dff403375af60aa22412355f7855534604442a8773ad"},{"version":"097079e7f85a7a0d6fa662785ccf303c1d8dcef7be5ef514bf72c43777e43da5","signature":"729024ffbf4f4d00d1b5f3569f6d1175e063a5577ed6aa5c2869d1b6f3920c75"},"889c152ce28ec07eae1e2462c65c3d27c795b7fdbd2aa1f01cf8b352a00e5a0e",{"version":"10701be83c58bb39b260393ade0d370f047502ce5e4e54980cdc6d70eb90a3ab","signature":"3302710e8090ecbdb2800ab661f72dd102d08063de54f3d8f9731aee57187920"},{"version":"ccf84090d2da3142917fa1044fb3b67453c43d88683cd4d9535ab0f0babe14e1","signature":"6b4cb38887dcb87ab0248c93eb99e998f36985065089de812ae0d38d5787d569"},"86764ffc20612dd3da5ebedbdc0d0821b4c8e4045c2068f1971977064af18c83",{"version":"6bb96b19d870bf018504e9210e2868b622ee27cd869f8349d9226ebc4e7ae35f","signature":"b94c0578f08d7ece2313c3dd928e255d91926cd90d77648b3bc36e6fe197c540"},{"version":"921c19866c7fc67d25dd06f1a16744642c97c18513407338bd97ae473dfe3b6d","signature":"9504627e8c7995e0f9df78152c5d28aa22c8a0d27b36b86a61f4acd01a076d40"},"77c806385516ba3800bfd82f43a507c6e1d777e2e6cc00360168c9327e145faa",{"version":"78d3dca2b403a5ca2e284e73b10c4ea447c7bfd1bb8fd3c96af757f6f6f9f6ac","signature":"7dcbdc70e4c203320b5f1cc503ef6ed9cac4ea68662116559604037aa3562ab1"},{"version":"8a034f89cfc563a46e219e81adc057974b0881085c8277e101975c77d4a9fb6a","signature":"9252888d54a3b8bb43fa307358d58b5043180177aa0561a606a5c5ed4c2ef9b0"},"4d0acbfbdcfac4d84cd03d34354746381bb97b0a4e070005b2d63b35a50dfbf4",{"version":"8977010be0a0c6c31742f0fa02886e606e3f19c82113c968ffc18990bbb03e02","signature":"80219fe9af69210043fd079ac7b2f4fd9f1958547e1c02e4c441adf44da67fd3"},{"version":"74fe889b1d2bba4b2893d518ba94e2b20dabe6d19d0c2f9554d9a5d3755710f4","impliedFormat":99},{"version":"2ae64cd7b6e760496069ee3b496c64700c956a0620740e1ef52b163824859db7","impliedFormat":99},{"version":"1f8f3d4242f145be3b0b17f8aa1c7d29416b059eae0328919442b983acc981e0","signature":"d255376e61e3970c9c68dee9ab168f361673614a64492c53b8f7d89e02024060"},"b5c0a6e05cab1e1c8c9c9e8ba76608e9ed7fe0ff069d008c5dd414267c752c85",{"version":"ed37c072d889004b8516aa85240861be0664a3d97e99148b73ad0b9036309eef","signature":"ebaa2ff03c82d3c014467ba065806012befc64cca8577cd5f3cb879f701d0b95"},"aa433a025387d244052e46f11daeaacb21b53f645b336d64d6d920b0f330c5b5",{"version":"12e7e026b9e75405529decb1654a9ca8cd6ffa843791565e86a08e2a10a4afd4","signature":"3f519ce6ec908da3f546f7d5ecfa25f07479f53c0f448081f25ba158c36dbaac"},{"version":"511e4914674527b708e97319025a64725f1e2a3d3cbdd0945d537e758a527ab6","signature":"5015ea22df89241ace58a178b3b4aa6b25b8de98e9b27968cb0907ec06157d37"},"0b98ae9c19957b68eb6c1ddada4c52b03b74c4729b51c6dc1e3300869fe66d2a",{"version":"e19d28846d8f110771ff165a1e5149c2f5950030a806db30ee7f4129ad5b33e9","signature":"7d63f635b7ba3d3d30cc392cebe42abcbc79c7109ef27d256c8a8ba192f5cfa0"},"2c6a82385d5e3e5d7fb82b6f14c50c8964b6a78c0ea3c11d272157b7be580c60",{"version":"878b94bd27bef51c09851df1f414c42bf6d5ae99a9c69d289d4c51b2b222ea0f","signature":"f3d1cc5b7af2851b3d86e0e84ee2719d49b164246f1252e3f26f9bdc64f3e316"},"e4a8c00018b11ec228d4920c5a0145ad82c16b5819a3698e81e9d72e061fa50b",{"version":"f32516a36a59d04022c9c534e005e046ce7c5e4c0f8232e587bfdd7cbc370aee","signature":"546ee4938afa01ea8fbea0953351f5076222669a9904b0502814084c0c08e6e3"},{"version":"707e25f91b740b3bd5ee52281ef4542078c6bd9fbef42fc837869a08968b76b6","signature":"2dc382b7d0fcf79109a0f64bfccab73e8e367c84149e7f0086c35f96611b0505"},"dafb14b69c8f0b0509c6b26813b1dd823466bf11f9a00488d7d6be080b2738c6",{"version":"958bdc64fd0fb9d7b2d64456d1aab9e33276a8e3e59a57083f8615182915586f","signature":"da414136697174b6144c9e3c18e76a671dff2cbb6d6e95cf43bfbd4b9a5e5034"},{"version":"41d32efff29db0965d7f65dd6fc9eb9bcfcde4f963aa4cdd9aefeec0844f0525","signature":"8edea6a2793f0d9287326be257077a2fc427ba81d3cb1c92ee0c23bd149168e3"},{"version":"436fea98a62b8f772b12aa71dceddf5edeb47cfcddead7acba171203a95b40d5","signature":"2860a3da5d6828e0c38db5b2e6220245c03cbaf06db14d439123e944d81348d6"},"1cf690d9be450e173185a111175a4f6d4e0bacefeee568dcccfde8b8aa212891",{"version":"a8b67108542ea81e79202de0c6522888b2cc953e7ffd8328655888b231d08cb4","signature":"437b11ddcaea2c3238bd0948e231ae45f2cba42db1be6e9a20abc858e523b325"},"87e6d1efd2221b4f7f037db5d7a5993ac0f53ff27b8abbff43a015aaa647fe43",{"version":"aa4e78a6d8b6ac112cc5e7e73cc06448a5b9254f2c9a565185b7e324f9a4b6c8","signature":"21c71b354a4afd131900a103305961b10ecb9c6524cdbda554eaf3151e080190"},{"version":"06ca6cfa61e353be012c898823b3cb6310dc042dcbdeec2fae23bfa1576df179","signature":"b24bd7fab0ecffb26c814cc64e8392db59aee8c55e04bc3ac8968708431e3929"},{"version":"79a7d72a15174a26e3669e516ce3e6c2ef5eacd4cc295510e4d4fb30bbc42f8d","signature":"bddefcda3acef57eb597fccfb707b887edb5c0ebb18988878d39f264d7868e73"},"986165ecc3a59d4b6a272a92f7ca4fd7a0762c63a674abd2c1efa0bea64da604","3e7b241ec38126d95f9e37c49a631c00cff006a888276e2d02920c6443c8b593",{"version":"d08d474654640266d6ac03f51ee04d72438b78ea377b9dc4678c480ce0477e1a","impliedFormat":99},{"version":"929f21090183949e93fd99327d292bff76f781895d5252eb43319b2c3e014528","affectsGlobalScope":true,"impliedFormat":99},"b73f10c107ec43e50acf38b06626eaa6ebeaa2093432f814338f9ddf1b4112fa","b6b0e59158a1c8ad34747722a19398d7bf26701e9ee2a130d80a52a815a8bb92","c97f742ef6e8c0bc4e5e4ad8d90b4489cdd3bd1c007510ee4a2e4c09266a11d2","6a17f676d06d3e695520b275dd483b4fe62d34b84926c0bf6425c08490ee2c41","decd9ee1fb3872db6f2e6f6fb2c0eaa3c1e5064d2e99c23383003f09a75a4368",{"version":"cf7a48e718d005788d439c66574a7f3c1646360943c52320b3a4927319791f69","signature":"8d908a646c8556c0eefd43adc22fe17a989944a04ae0214a3daf0c14f0e6f0dd"},"dde253c181a3100c7794c40c30aa6144bf797abcc2348bb214586e3123fa0b86",{"version":"f03ff9f10c30dcd3da5cf252c0b03795cea5659d7906033d2c45f6342e0fbcdf","signature":"7f20e0cde782e59078f6ff3a013df044cc68946b16174c883bf89685cd355316"},"0d2b9fab22e46386e3f0b78034f49462c9c5d8c314164226f6b51ce2d35568a6",{"version":"2e3d10c5f1aea7b09d121847021bd9c8559221813b567b54e32ed1ddbf016e12","signature":"0a05c6de0c77d892d7dbd205e2345555abf68daa9adee7c7ae3517cecfbf1936"},"aa8582655e2018bb5b955e8a99819a0843893da3e64f9b5aac158fea0a0a6edd",{"version":"d15ce157e1995cf20ec1e7f335b33f590828fbaed11d45df70db0eb8ac4857b4","signature":"36df0d561b47e871ed0f84c78c367683180d07070425925b5e4cea8852daba7e"},{"version":"d6c0b824e25ca3bdd752c8baa81a8c5c2da034ffaa54ad60fb5cb2bea6e2bcec","impliedFormat":99},{"version":"0aa184a87c5c1ea29cee5862f2a5515caaa3187bf60996407bdbca245da58b1f","signature":"ae42d378d6808703c68ef635f03f6168d9c941184cb1055226f5427ed0d36565"},{"version":"aa1d3f54bce78ed96a5d4dcc5f1c5425233b39a111b36a9cf823f8c8029514b2","signature":"8b22677a969f8e80010af70f7d88b37be2c1b2c293d1a5b13052d0eeddfb1612"},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ccdaa19852d25ecd84eec365c3bfa16e7859cadecf6e9ca6d0dbbbee439743f","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc2110f7decca6bfb9392e30421cfa1436479e4a6756e8fec6cbc22625d4f881","affectsGlobalScope":true,"impliedFormat":1},{"version":"096116f8fedc1765d5bd6ef360c257b4a9048e5415054b3bf3c41b07f8951b0b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5e01375c9e124a83b52ee4b3244ed1a4d214a6cfb54ac73e164a823a4a7860a","affectsGlobalScope":true,"impliedFormat":1},{"version":"f90ae2bbce1505e67f2f6502392e318f5714bae82d2d969185c4a6cecc8af2fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b58e207b93a8f1c88bbf2a95ddc686ac83962b13830fe8ad3f404ffc7051fb4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1fefabcb2b06736a66d2904074d56268753654805e829989a46a0161cd8412c5","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"c18a99f01eb788d849ad032b31cafd49de0b19e083fe775370834c5675d7df8e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5247874c2a23b9a62d178ae84f2db6a1d54e6c9a2e7e057e178cc5eea13757fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"156a859e21ef3244d13afeeba4e49760a6afa035c149dda52f0c45ea8903b338","impliedFormat":1},{"version":"10ec5e82144dfac6f04fa5d1d6c11763b3e4dbbac6d99101427219ab3e2ae887","impliedFormat":1},{"version":"615754924717c0b1e293e083b83503c0a872717ad5aa60ed7f1a699eb1b4ea5c","impliedFormat":1},{"version":"074de5b2fdead0165a2757e3aaef20f27a6347b1c36adea27d51456795b37682","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"4137ebf04166f3a325f056aa56101adc75e9dceb30404a1844eb8604d89770e2","impliedFormat":1},{"version":"ccab02f3920fc75c01174c47fcf67882a11daf16baf9e81701d0a94636e94556","impliedFormat":1},{"version":"3e11fce78ad8c0e1d1db4ba5f0652285509be3acdd519529bc8fcef85f7dafd9","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"9c32412007b5662fd34a8eb04292fb5314ec370d7016d1c2fb8aa193c807fe22","impliedFormat":1},{"version":"7fd1b31fd35876b0aa650811c25ec2c97a3c6387e5473eb18004bed86cdd76b6","impliedFormat":1},{"version":"4d327f7d72ad0918275cea3eee49a6a8dc8114ae1d5b7f3f5d0774de75f7439a","impliedFormat":1},{"version":"6ebe8ebb8659aaa9d1acbf3710d7dae3e923e97610238b9511c25dc39023a166","impliedFormat":1},{"version":"e85d7f8068f6a26710bff0cc8c0fc5e47f71089c3780fbede05857331d2ddec9","impliedFormat":1},{"version":"7befaf0e76b5671be1d47b77fcc65f2b0aad91cc26529df1904f4a7c46d216e9","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"5b03a034c72146b61573aab280f295b015b9168470f2df05f6080a2122f9b4df","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"8aee8b6d4f9f62cf3776cda1305fb18763e2aade7e13cea5bbe699112df85214","impliedFormat":1},{"version":"98498b101803bb3dde9f76a56e65c14b75db1cc8bec5f4db72be541570f74fc5","impliedFormat":1},{"version":"1cc2a09e1a61a5222d4174ab358a9f9de5e906afe79dbf7363d871a7edda3955","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"b64d4d1c5f877f9c666e98e833f0205edb9384acc46e98a1fef344f64d6aba44","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"12950411eeab8563b349cb7959543d92d8d02c289ed893d78499a19becb5a8cc","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"c9381908473a1c92cb8c516b184e75f4d226dad95c3a85a5af35f670064d9a2f","impliedFormat":1},{"version":"c3f5289820990ab66b70c7fb5b63cb674001009ff84b13de40619619a9c8175f","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3275d55fac10b799c9546804126239baf020d220136163f763b55a74e50e750","affectsGlobalScope":true,"impliedFormat":1},{"version":"fa68a0a3b7cb32c00e39ee3cd31f8f15b80cac97dce51b6ee7fc14a1e8deb30b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c36e755bced82df7fb6ce8169265d0a7bb046ab4e2cb6d0da0cb72b22033e89","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"7a93de4ff8a63bafe62ba86b89af1df0ccb5e40bb85b0c67d6bbcfdcf96bf3d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"90e85f9bc549dfe2b5749b45fe734144e96cd5d04b38eae244028794e142a77e","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0a5deeb610b2a50a6350bd23df6490036a1773a8a71d70f2f9549ab009e67ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"d2ae155afe8a01cc0ae612d99117cf8ef16692ba7c4366590156fdec1bcf2d8c","impliedFormat":1},{"version":"3f5e5d9be35913db9fea42a63f3df0b7e3c8703b97670a2125587b4dbbd56d7c","impliedFormat":1},{"version":"8caeb65fdc3bfe0d13f86f67324fcb2d858ed1c55f1f0cce892eb1acfb9f3239","impliedFormat":1},{"version":"57c23df0b5f7a8e26363a3849b0bc7763f6b241207157c8e40089d1df4116f35","affectsGlobalScope":true,"impliedFormat":1},{"version":"3b8bc0c17b54081b0878673989216229e575d67a10874e84566a21025a2461ee","impliedFormat":1},{"version":"5b0db5a58b73498792a29bfebc333438e61906fef75da898b410e24e52229e6f","impliedFormat":1},{"version":"dbe055b2b29a7bab2c1ca8f259436306adb43f469dca7e639a02cd3695d3f621","impliedFormat":1},{"version":"1678b04557dca52feab73cc67610918a7f5e25bfdba3e7fa081acd625d93106d","impliedFormat":1},{"version":"e3905f6902f0b69e5eefc230daa69fdd4ab707a973ec2d086d65af1b3ea47ef0","impliedFormat":1},{"version":"2ea729503db9793f2691162fec3dd1118cab62e96d025f8eeb376d43ec293395","impliedFormat":1},{"version":"9ec87fea42b92894b0f209931a880789d43c3397d09dd99c631ae40a2f7071d1","impliedFormat":1},{"version":"c68e88cdfadfb6c8ba5fc38e58a3a166b0beae77b1f05b7d921150a32a5ffb8d","impliedFormat":1},{"version":"2bc7aa4fba46df0bd495425a7c8201437a7d465f83854fac859df2d67f664df3","impliedFormat":1},{"version":"41d17e1ad9a002feb11c8cdd2777e5bbc0cdb1e3f595d237e4dded0b6949983b","impliedFormat":1},{"version":"07e4e61e946a9c15045539ecd5f5d2d02e7aab6fa82567826857e09cf0f37c2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c4714ccc29149efb8777a1da0b04b8d2258f5d13ddbf4cd3c3d361fb531ac86","impliedFormat":1},{"version":"3ff275f84f89f8a7c0543da838f9da9614201abc4ce74c533029825adfb4433d","impliedFormat":1},{"version":"0eb5d0cbf09de5d34542b977fd6a933bb2e0817bffe8e1a541b2f1ad1b9af1ff","impliedFormat":1},{"version":"f9713757bcdfa4d58b48c0fb249e752c94a3eee8bf4532b906094246ac49ef88","impliedFormat":1},{"version":"2c2bdaa1d8ead9f68628d6d9d250e46ee8e81aa4898b4769a36956ae15e060fe","impliedFormat":1},{"version":"c32c840c62d8bd7aeb3147aa6754cd2d922b990a6b6634530cb2ebdce5adc8e9","impliedFormat":1},{"version":"e1c1a0b4d1ead0de9eca52203aeb1f771f21e6238d6fcd15aa56ac2a02f1b7bf","impliedFormat":1},{"version":"82b91e4e42e6c41bc7fc1b6c2dc5eba6a2ba98375eb1f210e6ff6bba2d54177e","impliedFormat":1},{"version":"6fe28249ac0c7bc19a79aa9264baf00efbd080e868dbe1d3052033ad1c64f206","affectsGlobalScope":true,"impliedFormat":1},{"version":"cbed824fec91efefc7bbdcb8b43d1a531fdbebd0e2ef19481501ff365a93cb70","impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"d0716593b3f2b0451bcf0c24cfa86dec2235c325c89f201934248b7c742715fc","impliedFormat":1},{"version":"ec501101c2a96133a6c695f934c8f6642149cc728571b29cbb7b770984c1088e","impliedFormat":1},{"version":"b214ebcf76c51b115453f69729ee8aa7b7f8eccdae2a922b568a45c2d7ff52f7","impliedFormat":1},{"version":"429c9cdfa7d126255779efd7e6d9057ced2d69c81859bbab32073bad52e9ba76","impliedFormat":1},{"version":"2991bca2cc0f0628a278df2a2ccdb8d6cbcb700f3761abbed62bba137d5b1790","impliedFormat":1},{"version":"ce8653341224f8b45ff46d2a06f2cacb96f841f768a886c9d8dd8ec0878b11bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"230763250f20449fa7b3c9273e1967adb0023dc890d4be1553faca658ee65971","impliedFormat":1},{"version":"c3e9078b60cb329d1221f5878e88cecfa3e74460550e605a58fcfb41a66029ff","impliedFormat":1},{"version":"a74edb3bab7394a9dbde529d60632be590def2f5f01024dbd85441587fbfbbe0","impliedFormat":1},{"version":"0ea59f7d3e51440baa64f429253759b106cfcbaf51e474cae606e02265b37cf8","impliedFormat":1},{"version":"bc18a1991ba681f03e13285fa1d7b99b03b67ee671b7bc936254467177543890","impliedFormat":1},{"version":"00049ccc87f3f37726db03c01ca68fe74fd9c0109b68c29eb9923ebec2c76b13","impliedFormat":1},{"version":"fa94bbf532b7af8f394b95fa310980d6e20bd2d4c871c6a6cb9f70f03750a44b","impliedFormat":1},{"version":"68d3f35108e2608b1f2f28b36d19d7055f31c4465cc5692cbd06c716a9fe7973","impliedFormat":1},{"version":"a6d543044570fbeed13a7f9925a868081cd2b14ef59cdd9da6ae76d41cab03d3","affectsGlobalScope":true,"impliedFormat":1},{"version":"7fa2214bb0d64701bc6f9ce8cde2fd2ff8c571e0b23065fa04a8a5a6beb91511","impliedFormat":1},{"version":"f1c93e046fb3d9b7f8249629f4b63dc068dd839b824dd0aa39a5e68476dc9420","impliedFormat":1},{"version":"eab2f3179607acb3d44b2db2a76dd7d621c5039b145dc160a1ee733963f9d2f5","impliedFormat":1},{"version":"841983e39bd4cbb463be385e92fda11057cab368bf27100a801c492f1d86cbaa","impliedFormat":1},{"version":"6f5383b3df1cdf4ff1aa7fb0850f77042b5786b5e65ec9a9b6be56ebfe4d9036","impliedFormat":1},{"version":"62fc21ed9ccbd83bd1166de277a4b5daaa8d15b5fa614c75610d20f3b73fba87","impliedFormat":1},{"version":"e4156ddb25aa0e3b5303d372f26957b36778f0f6bbd4326359269873295e3058","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc1b433a84cae05ddc5672d4823170af78606ad21ecef60dbc4570190cbf1357","impliedFormat":1},{"version":"9d3821bc75c59577e52643324cec92fc2145642e8d17cf7ee07a3181f21d985d","impliedFormat":1},{"version":"7f78cfb2b343838612c192cb251746e3a7c62ac7675726a47e130d9b213f6580","impliedFormat":1},{"version":"201db9cf1687fab1adf5282fcba861f382b32303dc4f67c89d59655e78a25461","impliedFormat":1},{"version":"c77fb31bc17fd241d3922a9f88c59e3361cdf76d1328ba9412fc6bf7310b638d","impliedFormat":1},{"version":"0a20eaf2e4b1e3c1e1f87f7bccb0c936375b23b022baeea750519b7c9bc6ce83","impliedFormat":1},{"version":"b484ec11ba00e3a2235562a41898d55372ccabe607986c6fa4f4aba72093749f","impliedFormat":1},{"version":"a16b91b27bd6b706c687c88cbc8a7d4ee98e5ed6043026d6b84bda923c0aed67","impliedFormat":1},{"version":"694b812e0ed11285e8822cf8131e3ce7083a500b3b1d185fff9ed1089677bd0a","impliedFormat":1},{"version":"99ab6d0d660ce4d21efb52288a39fd35bb3f556980ec5463b1ae8f304a3bbc85","impliedFormat":1},{"version":"6eeded8c7e352be6e0efb83f4935ec752513c4d22043b52522b90849a49a3a11","impliedFormat":1},{"version":"6c1ad90050ffbb151cacc68e2d06ea1a26a945659391e32651f5d42b86fd7f2c","impliedFormat":1},{"version":"55cdbeebe76a1fa18bbd7e7bf73350a2173926bd3085bb050cf5a5397025ee4e","impliedFormat":1},{"version":"29f72ec1289ae3aeda78bf14b38086d3d803262ac13904b400422941a26a3636","affectsGlobalScope":true,"impliedFormat":1}],"root":[49,52,[88,90],93,96,110,111,[214,216],221,[229,232],[234,237],239,240,242,243,245,246,248,251,253,255,256,258,260,262,263,[265,267],269,[271,273],283,285,287,289,291,292],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitOnError":true,"outDir":"./","rootDir":"..","skipLibCheck":true,"sourceMap":true,"strict":true,"target":5,"useDefineForClassFields":false},"referencedMap":[[222,1],[224,2],[226,1],[53,1],[63,1],[64,3],[67,4],[65,4],[69,4],[72,5],[71,4],[70,4],[68,4],[66,6],[54,1],[55,7],[109,8],[277,9],[107,10],[108,11],[276,11],[204,12],[205,13],[151,14],[149,15],[150,16],[146,17],[148,18],[147,19],[98,20],[97,21],[219,22],[218,23],[217,24],[100,25],[101,26],[113,27],[112,21],[99,28],[106,29],[105,30],[104,1],[102,31],[103,32],[290,28],[87,33],[75,34],[76,35],[74,36],[77,37],[78,38],[79,39],[80,40],[81,41],[82,42],[83,43],[84,44],[85,45],[86,46],[416,1],[355,47],[356,47],[357,48],[295,49],[358,50],[359,51],[360,52],[293,1],[361,53],[362,54],[363,55],[364,56],[365,57],[366,58],[367,58],[368,59],[369,60],[370,61],[371,62],[296,1],[294,1],[372,63],[373,64],[374,65],[415,66],[375,67],[376,68],[377,67],[378,69],[379,70],[381,71],[382,72],[383,72],[384,72],[385,73],[386,74],[387,75],[388,76],[389,77],[390,78],[391,78],[392,79],[393,1],[394,1],[395,80],[396,81],[397,80],[398,82],[399,83],[400,84],[401,85],[402,86],[403,87],[404,88],[405,89],[406,90],[407,91],[408,92],[409,93],[410,94],[411,95],[412,96],[297,67],[298,1],[299,97],[300,98],[301,1],[302,99],[303,1],[346,100],[347,101],[348,102],[349,102],[350,103],[351,1],[352,50],[353,104],[354,101],[413,105],[414,106],[57,1],[380,1],[59,107],[56,108],[144,109],[249,108],[60,1],[58,110],[73,111],[145,112],[250,113],[61,114],[227,115],[223,1],[51,116],[50,1],[47,1],[48,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[19,1],[20,1],[4,1],[21,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[36,1],[33,1],[34,1],[35,1],[37,1],[7,1],[38,1],[43,1],[44,1],[39,1],[40,1],[41,1],[42,1],[1,1],[45,1],[46,1],[322,117],[334,118],[319,119],[335,120],[344,121],[310,122],[311,123],[309,124],[343,125],[338,126],[342,127],[313,128],[331,129],[312,130],[341,131],[307,132],[308,126],[314,133],[315,1],[321,134],[318,133],[305,135],[345,136],[336,137],[325,138],[324,133],[326,139],[329,140],[323,141],[327,142],[339,125],[316,143],[317,144],[330,145],[306,120],[333,146],[332,133],[320,144],[328,147],[337,1],[304,1],[340,148],[210,149],[211,150],[165,151],[121,152],[127,153],[122,152],[174,154],[128,155],[175,151],[168,152],[169,156],[124,152],[170,157],[167,158],[172,159],[176,160],[129,152],[130,152],[173,161],[131,162],[171,152],[180,163],[178,164],[179,165],[132,152],[177,1],[137,166],[136,167],[133,168],[134,169],[166,170],[141,171],[140,151],[142,151],[143,151],[153,172],[139,171],[161,173],[162,174],[138,151],[198,175],[197,1],[200,176],[199,151],[196,177],[195,151],[209,178],[207,179],[206,180],[203,181],[202,182],[125,183],[126,184],[194,185],[182,151],[183,151],[184,151],[192,151],[191,151],[193,151],[185,151],[186,151],[187,186],[188,151],[190,151],[189,151],[163,168],[181,187],[201,152],[164,188],[208,151],[62,21],[118,189],[91,28],[92,189],[95,190],[94,189],[212,191],[225,192],[120,193],[115,194],[114,189],[220,195],[228,196],[233,189],[123,197],[213,198],[238,189],[135,197],[241,197],[244,199],[247,194],[252,197],[254,197],[257,1],[259,189],[154,197],[261,197],[152,200],[264,197],[268,197],[270,201],[282,202],[284,203],[286,203],[288,189],[119,204],[160,205],[159,21],[157,1],[158,21],[156,206],[155,1],[281,207],[280,208],[279,170],[117,209],[274,210],[275,211],[116,21],[278,212],[49,1],[90,213],[89,214],[93,215],[96,216],[110,217],[111,218],[214,219],[215,220],[216,221],[221,222],[229,223],[230,214],[231,214],[232,214],[234,224],[235,225],[236,226],[237,227],[239,228],[240,229],[242,230],[243,214],[245,231],[246,214],[248,232],[251,233],[253,234],[255,235],[256,214],[258,236],[260,237],[262,238],[263,239],[265,240],[266,227],[267,214],[269,241],[271,242],[272,243],[273,214],[283,244],[285,245],[287,246],[289,247],[88,248],[52,249],[291,250],[292,251]],"version":"5.9.3"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@operato/property-editor",
|
|
3
|
-
"version": "10.0.0-beta.
|
|
3
|
+
"version": "10.0.0-beta.48",
|
|
4
4
|
"description": "Webcomponent for property-editor following open-wc recommendations",
|
|
5
5
|
"author": "heartyoh",
|
|
6
6
|
"type": "module",
|
|
@@ -27,6 +27,8 @@
|
|
|
27
27
|
"./ox-property-editor-angle.js": "./dist/src/ox-property-editor-angle.js",
|
|
28
28
|
"./ox-property-editor-checkbox.js": "./dist/src/ox-property-editor-checkbox.js",
|
|
29
29
|
"./ox-property-editor-color.js": "./dist/src/ox-property-editor-color.js",
|
|
30
|
+
"./ox-property-editor-fill-style.js": "./dist/src/ox-property-editor-fill-style.js",
|
|
31
|
+
"./ox-property-editor-backdrop-faces.js": "./dist/src/ox-property-editor-backdrop-faces.js",
|
|
30
32
|
"./ox-property-editor-crontab.js": "./dist/src/ox-property-editor-crontab.js",
|
|
31
33
|
"./ox-property-editor-duration.js": "./dist/src/ox-property-editor-duration.js",
|
|
32
34
|
"./ox-property-editor-data.js": "./dist/src/ox-property-editor-data.js",
|
|
@@ -86,6 +88,12 @@
|
|
|
86
88
|
"ox-property-editor-color.js": [
|
|
87
89
|
"dist/src/ox-property-editor-color.d.ts"
|
|
88
90
|
],
|
|
91
|
+
"ox-property-editor-fill-style.js": [
|
|
92
|
+
"dist/src/ox-property-editor-fill-style.d.ts"
|
|
93
|
+
],
|
|
94
|
+
"ox-property-editor-backdrop-faces.js": [
|
|
95
|
+
"dist/src/ox-property-editor-backdrop-faces.d.ts"
|
|
96
|
+
],
|
|
89
97
|
"ox-property-editor-crontab.js": [
|
|
90
98
|
"dist/src/ox-property-editor-crontab.d.ts"
|
|
91
99
|
],
|
|
@@ -201,7 +209,7 @@
|
|
|
201
209
|
},
|
|
202
210
|
"dependencies": {
|
|
203
211
|
"@material/web": "^2.0.0",
|
|
204
|
-
"@operato/help": "^10.0.0-beta.
|
|
212
|
+
"@operato/help": "^10.0.0-beta.48",
|
|
205
213
|
"@operato/i18n": "^10.0.0-beta.2",
|
|
206
214
|
"@operato/input": "^10.0.0-beta.42",
|
|
207
215
|
"@operato/popup": "^10.0.0-beta.7",
|
|
@@ -243,5 +251,5 @@
|
|
|
243
251
|
"prettier --write"
|
|
244
252
|
]
|
|
245
253
|
},
|
|
246
|
-
"gitHead": "
|
|
254
|
+
"gitHead": "8021ac2769e4f93ad1540b57c75c20de7707325a"
|
|
247
255
|
}
|