@operato/input 1.0.0-alpha.25 → 1.0.0-alpha.29
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 +35 -0
- package/demo/index-partition-keys.html +71 -0
- package/demo/index.html +1 -0
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.js +1 -0
- package/dist/src/index.js.map +1 -1
- package/dist/src/ox-input-partition-keys.d.ts +36 -0
- package/dist/src/ox-input-partition-keys.js +202 -0
- package/dist/src/ox-input-partition-keys.js.map +1 -0
- package/dist/src/ox-input-value-map.d.ts +2 -2
- package/dist/src/ox-input-value-map.js +3 -2
- package/dist/src/ox-input-value-map.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +8 -7
- package/src/index.ts +1 -0
- package/src/ox-input-partition-keys.ts +240 -0
- package/src/ox-input-value-map.ts +4 -2
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,41 @@
|
|
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
|
+
## [1.0.0-alpha.29](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.28...v1.0.0-alpha.29) (2022-03-17)
|
7
|
+
|
8
|
+
|
9
|
+
### :bug: Bug Fix
|
10
|
+
|
11
|
+
* datalist in ox-input-partition-keys ([a25e3a6](https://github.com/hatiolab/operato/commit/a25e3a66cf5f7a25bca057be90ef336b29e915a7))
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
## [1.0.0-alpha.28](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.26...v1.0.0-alpha.28) (2022-03-17)
|
16
|
+
|
17
|
+
|
18
|
+
### :rocket: New Features
|
19
|
+
|
20
|
+
* add ox-grist-editor for partition-keys ([7672a27](https://github.com/hatiolab/operato/commit/7672a2729f78475602733a83779f6a7a96e128fd))
|
21
|
+
|
22
|
+
|
23
|
+
|
24
|
+
## [1.0.0-alpha.27](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.26...v1.0.0-alpha.27) (2022-03-17)
|
25
|
+
|
26
|
+
|
27
|
+
### :rocket: New Features
|
28
|
+
|
29
|
+
* add ox-grist-editor for partition-keys ([7672a27](https://github.com/hatiolab/operato/commit/7672a2729f78475602733a83779f6a7a96e128fd))
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
## [1.0.0-alpha.26](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.25...v1.0.0-alpha.26) (2022-03-17)
|
34
|
+
|
35
|
+
**Note:** Version bump only for package @operato/input
|
36
|
+
|
37
|
+
|
38
|
+
|
39
|
+
|
40
|
+
|
6
41
|
## [1.0.0-alpha.25](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.24...v1.0.0-alpha.25) (2022-03-17)
|
7
42
|
|
8
43
|
**Note:** Version bump only for package @operato/input
|
@@ -0,0 +1,71 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="en-GB">
|
3
|
+
<head>
|
4
|
+
<meta charset="utf-8" />
|
5
|
+
<style>
|
6
|
+
body {
|
7
|
+
background: #fafafa;
|
8
|
+
}
|
9
|
+
</style>
|
10
|
+
</head>
|
11
|
+
<body>
|
12
|
+
<form id="demo"></form>
|
13
|
+
|
14
|
+
<script type="module">
|
15
|
+
import { html, render } from 'lit'
|
16
|
+
import '../dist/src/ox-input-partition-keys.js'
|
17
|
+
|
18
|
+
const form = document.querySelector('#demo')
|
19
|
+
|
20
|
+
const value1 = {
|
21
|
+
A: 'A',
|
22
|
+
B: 'B',
|
23
|
+
C: 'C'
|
24
|
+
}
|
25
|
+
|
26
|
+
const value2 = {
|
27
|
+
A: true,
|
28
|
+
B: false,
|
29
|
+
C: true
|
30
|
+
}
|
31
|
+
|
32
|
+
const value3 = {
|
33
|
+
A: 'red',
|
34
|
+
B: 'yellow',
|
35
|
+
C: 'blue'
|
36
|
+
}
|
37
|
+
|
38
|
+
render(
|
39
|
+
html`
|
40
|
+
<ox-input-partition-keys
|
41
|
+
name="partition-keys1"
|
42
|
+
.value=${value1}
|
43
|
+
@change=${e => {
|
44
|
+
console.log(e.target.value)
|
45
|
+
console.log('form value', new FormData(form).get('partition-keys1'))
|
46
|
+
}}
|
47
|
+
></ox-input-partition-keys>
|
48
|
+
|
49
|
+
<ox-input-partition-keys
|
50
|
+
name="partition-keys2"
|
51
|
+
.value=${value2}
|
52
|
+
@change=${e => {
|
53
|
+
console.log(e.target.value)
|
54
|
+
console.log('form value', new FormData(form).get('partition-keys2'))
|
55
|
+
}}
|
56
|
+
></ox-input-partition-keys>
|
57
|
+
|
58
|
+
<ox-input-partition-keys
|
59
|
+
name="partition-keys3"
|
60
|
+
.value=${value3}
|
61
|
+
@change=${e => {
|
62
|
+
console.log(e.target.value)
|
63
|
+
console.log('form value', new FormData(form).get('partition-keys3'))
|
64
|
+
}}
|
65
|
+
></ox-input-partition-keys>
|
66
|
+
`,
|
67
|
+
form
|
68
|
+
)
|
69
|
+
</script>
|
70
|
+
</body>
|
71
|
+
</html>
|
package/demo/index.html
CHANGED
package/dist/src/index.d.ts
CHANGED
package/dist/src/index.js
CHANGED
package/dist/src/index.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,oBAAoB,CAAA;AAClC,cAAc,uBAAuB,CAAA;AACrC,cAAc,kBAAkB,CAAA;AAChC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,qBAAqB,CAAA;AACnC,cAAc,qBAAqB,CAAA;AACnC,cAAc,qBAAqB,CAAA;AACnC,cAAc,uBAAuB,CAAA;AACrC,cAAc,oBAAoB,CAAA;AAClC,cAAc,qBAAqB,CAAA;AACnC,cAAc,+BAA+B,CAAA;AAC7C,cAAc,2BAA2B,CAAA;AACzC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,oBAAoB,CAAA;AAClC,cAAc,qBAAqB,CAAA;AACnC,cAAc,4BAA4B,CAAA;AAC1C,cAAc,yBAAyB,CAAA;AACvC,cAAc,qBAAqB,CAAA;AACnC,cAAc,kCAAkC,CAAA;AAChD,cAAc,oBAAoB,CAAA","sourcesContent":["export * from './ox-form-field.js'\nexport * from './ox-buttons-radio.js'\nexport * from './ox-checkbox.js'\nexport * from './ox-select.js'\nexport * from './ox-input-angle.js'\nexport * from './ox-input-3dish.js'\nexport * from './ox-input-stack.js'\nexport * from './ox-input-barcode.js'\nexport * from './ox-input-code.js'\nexport * from './ox-input-color.js'\nexport * from './ox-input-multiple-colors.js'\nexport * from './ox-input-color-stops.js'\nexport * from './ox-input-color-gradient.js'\nexport * from './ox-input-file.js'\nexport * from './ox-input-image.js'\nexport * from './ox-input-value-ranges.js'\nexport * from './ox-input-value-map.js'\nexport * from './ox-input-table.js'\nexport * from './ox-input-scene-component-id.js'\nexport * from './ox-input-crontab'\n"]}
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,oBAAoB,CAAA;AAClC,cAAc,uBAAuB,CAAA;AACrC,cAAc,kBAAkB,CAAA;AAChC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,qBAAqB,CAAA;AACnC,cAAc,qBAAqB,CAAA;AACnC,cAAc,qBAAqB,CAAA;AACnC,cAAc,uBAAuB,CAAA;AACrC,cAAc,oBAAoB,CAAA;AAClC,cAAc,qBAAqB,CAAA;AACnC,cAAc,+BAA+B,CAAA;AAC7C,cAAc,2BAA2B,CAAA;AACzC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,oBAAoB,CAAA;AAClC,cAAc,qBAAqB,CAAA;AACnC,cAAc,4BAA4B,CAAA;AAC1C,cAAc,yBAAyB,CAAA;AACvC,cAAc,qBAAqB,CAAA;AACnC,cAAc,kCAAkC,CAAA;AAChD,cAAc,oBAAoB,CAAA;AAClC,cAAc,2BAA2B,CAAA","sourcesContent":["export * from './ox-form-field.js'\nexport * from './ox-buttons-radio.js'\nexport * from './ox-checkbox.js'\nexport * from './ox-select.js'\nexport * from './ox-input-angle.js'\nexport * from './ox-input-3dish.js'\nexport * from './ox-input-stack.js'\nexport * from './ox-input-barcode.js'\nexport * from './ox-input-code.js'\nexport * from './ox-input-color.js'\nexport * from './ox-input-multiple-colors.js'\nexport * from './ox-input-color-stops.js'\nexport * from './ox-input-color-gradient.js'\nexport * from './ox-input-file.js'\nexport * from './ox-input-image.js'\nexport * from './ox-input-value-ranges.js'\nexport * from './ox-input-value-map.js'\nexport * from './ox-input-table.js'\nexport * from './ox-input-scene-component-id.js'\nexport * from './ox-input-crontab'\nexport * from './ox-input-partition-keys'\n"]}
|
@@ -0,0 +1,36 @@
|
|
1
|
+
/**
|
2
|
+
* @license Copyright © HatioLab Inc. All rights reserved.
|
3
|
+
*/
|
4
|
+
import { OxFormField } from './ox-form-field';
|
5
|
+
declare type PartitionKeys = {
|
6
|
+
[key: string]: any;
|
7
|
+
};
|
8
|
+
declare type ArrayedPartitionKeys = {
|
9
|
+
key: string;
|
10
|
+
value: any;
|
11
|
+
};
|
12
|
+
/**
|
13
|
+
key-value map for partitions editor element
|
14
|
+
|
15
|
+
Example:
|
16
|
+
|
17
|
+
<ox-input-partition-keys
|
18
|
+
value=${map}
|
19
|
+
</ox-input-partition-keys>
|
20
|
+
*/
|
21
|
+
export declare class OxInputPartitionKeys extends OxFormField {
|
22
|
+
static styles: import("lit").CSSResult;
|
23
|
+
value: PartitionKeys;
|
24
|
+
private _changingNow;
|
25
|
+
firstUpdated(): void;
|
26
|
+
render(): import("lit-html").TemplateResult<1>;
|
27
|
+
_onChange(e: Event): void;
|
28
|
+
_build(includeNewRecord?: boolean): void;
|
29
|
+
_toArray(map: PartitionKeys): ArrayedPartitionKeys[];
|
30
|
+
_add(): void;
|
31
|
+
_delete(e: MouseEvent): void;
|
32
|
+
records: NodeListOf<HTMLElement>;
|
33
|
+
_up(e: MouseEvent): void;
|
34
|
+
_down(e: MouseEvent): void;
|
35
|
+
}
|
36
|
+
export {};
|
@@ -0,0 +1,202 @@
|
|
1
|
+
/**
|
2
|
+
* @license Copyright © HatioLab Inc. All rights reserved.
|
3
|
+
*/
|
4
|
+
import { __decorate } from "tslib";
|
5
|
+
import { css, html } from 'lit';
|
6
|
+
import { customElement, property, queryAll } from 'lit/decorators.js';
|
7
|
+
import { OxFormField } from './ox-form-field';
|
8
|
+
/**
|
9
|
+
key-value map for partitions editor element
|
10
|
+
|
11
|
+
Example:
|
12
|
+
|
13
|
+
<ox-input-partition-keys
|
14
|
+
value=${map}
|
15
|
+
</ox-input-partition-keys>
|
16
|
+
*/
|
17
|
+
let OxInputPartitionKeys = class OxInputPartitionKeys extends OxFormField {
|
18
|
+
constructor() {
|
19
|
+
super(...arguments);
|
20
|
+
this.value = {};
|
21
|
+
this._changingNow = false;
|
22
|
+
}
|
23
|
+
static { this.styles = css `
|
24
|
+
:host {
|
25
|
+
display: flex;
|
26
|
+
flex-direction: column;
|
27
|
+
align-content: center;
|
28
|
+
|
29
|
+
width: 100%;
|
30
|
+
overflow: hidden;
|
31
|
+
border: 1px solid #ccc;
|
32
|
+
}
|
33
|
+
|
34
|
+
div {
|
35
|
+
display: flex;
|
36
|
+
flex-flow: row nowrap;
|
37
|
+
align-items: center;
|
38
|
+
|
39
|
+
border-bottom: 1px solid #c0c0c0;
|
40
|
+
}
|
41
|
+
|
42
|
+
div:last-child {
|
43
|
+
border-bottom: none;
|
44
|
+
}
|
45
|
+
|
46
|
+
div > * {
|
47
|
+
min-width: 0px;
|
48
|
+
margin: 2px;
|
49
|
+
padding: 0;
|
50
|
+
}
|
51
|
+
|
52
|
+
button {
|
53
|
+
width: 20px;
|
54
|
+
text-align: center;
|
55
|
+
}
|
56
|
+
|
57
|
+
input {
|
58
|
+
flex: 1;
|
59
|
+
}
|
60
|
+
`; }
|
61
|
+
firstUpdated() {
|
62
|
+
this.renderRoot.addEventListener('change', this._onChange.bind(this));
|
63
|
+
}
|
64
|
+
render() {
|
65
|
+
return html `
|
66
|
+
${this._toArray(this.value).map(item => html `
|
67
|
+
<div data-record>
|
68
|
+
<input type="text" data-key placeholder="key" .value=${item.key} />
|
69
|
+
<input type="text" data-value placeholder="value" .value=${item.value} list="value-template" />
|
70
|
+
<button class="record-action" @click=${(e) => this._delete(e)} tabindex="-1">-</button>
|
71
|
+
<button class="record-action" @click=${(e) => this._up(e)} tabindex="-1">↑</button>
|
72
|
+
<button class="record-action" @click=${(e) => this._down(e)} tabindex="-1">↓</button>
|
73
|
+
</div>
|
74
|
+
`)}
|
75
|
+
|
76
|
+
<div data-record-new>
|
77
|
+
<input type="text" data-key placeholder="key" value="" />
|
78
|
+
<input type="text" data-value placeholder="value" value="" list="value-template" />
|
79
|
+
<button class="record-action" @click=${(e) => this._add()} tabindex="-1">+</button>
|
80
|
+
</div>
|
81
|
+
|
82
|
+
<datalist id="value-template">
|
83
|
+
<option value="%%YY">year</option>
|
84
|
+
<option value="%%MM">month</option>
|
85
|
+
<option value="%%DD">day</option>
|
86
|
+
</datalist>
|
87
|
+
`;
|
88
|
+
}
|
89
|
+
_onChange(e) {
|
90
|
+
if (this._changingNow) {
|
91
|
+
return;
|
92
|
+
}
|
93
|
+
this._changingNow = true;
|
94
|
+
const input = e.target;
|
95
|
+
var value = input.value;
|
96
|
+
const record = e.target.closest('[data-record],[data-record-new]');
|
97
|
+
if (record.hasAttribute('data-record')) {
|
98
|
+
this._build();
|
99
|
+
}
|
100
|
+
else if (record.hasAttribute('data-record-new') && input.hasAttribute('data-value')) {
|
101
|
+
this._add();
|
102
|
+
}
|
103
|
+
this._changingNow = false;
|
104
|
+
}
|
105
|
+
_build(includeNewRecord) {
|
106
|
+
if (includeNewRecord) {
|
107
|
+
var records = this.renderRoot.querySelectorAll('[data-record],[data-record-new]');
|
108
|
+
}
|
109
|
+
else {
|
110
|
+
var records = this.renderRoot.querySelectorAll('[data-record]');
|
111
|
+
}
|
112
|
+
var newmap = {};
|
113
|
+
for (var i = 0; i < records.length; i++) {
|
114
|
+
var record = records[i];
|
115
|
+
const key = record.querySelector('[data-key]').value;
|
116
|
+
const inputs = record.querySelectorAll('[data-value]:not([style*="display: none"])');
|
117
|
+
if (!inputs || inputs.length == 0) {
|
118
|
+
continue;
|
119
|
+
}
|
120
|
+
var input = inputs[inputs.length - 1];
|
121
|
+
var value = input.value;
|
122
|
+
if (key) {
|
123
|
+
newmap[key] = value || '';
|
124
|
+
}
|
125
|
+
}
|
126
|
+
this.value = newmap;
|
127
|
+
this.dispatchEvent(new CustomEvent('change', { bubbles: true, composed: true, detail: this.value }));
|
128
|
+
}
|
129
|
+
/* map아이템들을 template(dom-repeat)용 배열로 변환하는 함수 */
|
130
|
+
_toArray(map) {
|
131
|
+
var array = [];
|
132
|
+
for (var key in map) {
|
133
|
+
array.push({
|
134
|
+
key: key,
|
135
|
+
value: map[key]
|
136
|
+
});
|
137
|
+
}
|
138
|
+
return array;
|
139
|
+
}
|
140
|
+
_add() {
|
141
|
+
this._build(true);
|
142
|
+
const inputs = this.renderRoot.querySelectorAll('[data-record-new] input:not([style*="display: none"])');
|
143
|
+
for (var i = 0; i < inputs.length; i++) {
|
144
|
+
let input = inputs[i];
|
145
|
+
if (input.type == 'checkbox')
|
146
|
+
input.checked = false;
|
147
|
+
else
|
148
|
+
input.value = '';
|
149
|
+
}
|
150
|
+
inputs[0].focus();
|
151
|
+
}
|
152
|
+
_delete(e) {
|
153
|
+
const record = e.target.closest('[data-record]');
|
154
|
+
record.querySelector('[data-key]').value = '';
|
155
|
+
this._build();
|
156
|
+
}
|
157
|
+
_up(e) {
|
158
|
+
const record = e.target.closest('[data-record]');
|
159
|
+
const array = Array.from(this.records);
|
160
|
+
const index = array.indexOf(record) - 1;
|
161
|
+
if (index < 0) {
|
162
|
+
return;
|
163
|
+
}
|
164
|
+
const deleted = array.splice(index, 1);
|
165
|
+
array.splice(index + 1, 0, ...deleted);
|
166
|
+
this.value = array.reduce((sum, record) => {
|
167
|
+
const key = record.querySelector('[data-key]').value;
|
168
|
+
const value = record.querySelector('[data-value]').value;
|
169
|
+
sum[key] = value;
|
170
|
+
return sum;
|
171
|
+
}, {});
|
172
|
+
this.dispatchEvent(new CustomEvent('change', { bubbles: true, composed: true, detail: this.value }));
|
173
|
+
}
|
174
|
+
_down(e) {
|
175
|
+
const record = e.target.closest('[data-record]');
|
176
|
+
const array = Array.from(this.records);
|
177
|
+
const index = array.indexOf(record);
|
178
|
+
if (index > array.length) {
|
179
|
+
return;
|
180
|
+
}
|
181
|
+
array.splice(index, 1);
|
182
|
+
array.splice(index + 1, 0, record);
|
183
|
+
this.value = array.reduce((sum, record) => {
|
184
|
+
const key = record.querySelector('[data-key]').value;
|
185
|
+
const value = record.querySelector('[data-value]').value;
|
186
|
+
sum[key] = value;
|
187
|
+
return sum;
|
188
|
+
}, {});
|
189
|
+
this.dispatchEvent(new CustomEvent('change', { bubbles: true, composed: true, detail: this.value }));
|
190
|
+
}
|
191
|
+
};
|
192
|
+
__decorate([
|
193
|
+
property({ type: Object })
|
194
|
+
], OxInputPartitionKeys.prototype, "value", void 0);
|
195
|
+
__decorate([
|
196
|
+
queryAll('[data-record]')
|
197
|
+
], OxInputPartitionKeys.prototype, "records", void 0);
|
198
|
+
OxInputPartitionKeys = __decorate([
|
199
|
+
customElement('ox-input-partition-keys')
|
200
|
+
], OxInputPartitionKeys);
|
201
|
+
export { OxInputPartitionKeys };
|
202
|
+
//# sourceMappingURL=ox-input-partition-keys.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"ox-input-partition-keys.js","sourceRoot":"","sources":["../../src/ox-input-partition-keys.ts"],"names":[],"mappings":"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","sourcesContent":["/**\n * @license Copyright © HatioLab Inc. All rights reserved.\n */\n\nimport { css, html } from 'lit'\nimport { customElement, property, queryAll } from 'lit/decorators.js'\n\nimport { OxFormField } from './ox-form-field'\n\ntype PartitionKeys = { [key: string]: any }\ntype ArrayedPartitionKeys = { key: string; value: any }\n\n/**\n key-value map for partitions editor element\n \n Example:\n \n <ox-input-partition-keys \n value=${map}\n </ox-input-partition-keys>\n */\n@customElement('ox-input-partition-keys')\nexport class OxInputPartitionKeys extends OxFormField {\n static styles = css`\n :host {\n display: flex;\n flex-direction: column;\n align-content: center;\n\n width: 100%;\n overflow: hidden;\n border: 1px solid #ccc;\n }\n\n div {\n display: flex;\n flex-flow: row nowrap;\n align-items: center;\n\n border-bottom: 1px solid #c0c0c0;\n }\n\n div:last-child {\n border-bottom: none;\n }\n\n div > * {\n min-width: 0px;\n margin: 2px;\n padding: 0;\n }\n\n button {\n width: 20px;\n text-align: center;\n }\n\n input {\n flex: 1;\n }\n `\n\n @property({ type: Object }) value: PartitionKeys = {}\n\n private _changingNow: boolean = false\n\n firstUpdated() {\n this.renderRoot.addEventListener('change', this._onChange.bind(this))\n }\n\n render() {\n return html`\n ${this._toArray(this.value).map(\n item => html`\n <div data-record>\n <input type=\"text\" data-key placeholder=\"key\" .value=${item.key} />\n <input type=\"text\" data-value placeholder=\"value\" .value=${item.value} list=\"value-template\" />\n <button class=\"record-action\" @click=${(e: MouseEvent) => this._delete(e)} tabindex=\"-1\">-</button>\n <button class=\"record-action\" @click=${(e: MouseEvent) => this._up(e)} tabindex=\"-1\">↑</button>\n <button class=\"record-action\" @click=${(e: MouseEvent) => this._down(e)} tabindex=\"-1\">↓</button>\n </div>\n `\n )}\n\n <div data-record-new>\n <input type=\"text\" data-key placeholder=\"key\" value=\"\" />\n <input type=\"text\" data-value placeholder=\"value\" value=\"\" list=\"value-template\" />\n <button class=\"record-action\" @click=${(e: MouseEvent) => this._add()} tabindex=\"-1\">+</button>\n </div>\n\n <datalist id=\"value-template\">\n <option value=\"%%YY\">year</option>\n <option value=\"%%MM\">month</option>\n <option value=\"%%DD\">day</option>\n </datalist>\n `\n }\n\n _onChange(e: Event) {\n if (this._changingNow) {\n return\n }\n\n this._changingNow = true\n\n const input = e.target as HTMLInputElement\n var value = input.value\n\n const record = (e.target as Element).closest('[data-record],[data-record-new]') as HTMLElement\n\n if (record.hasAttribute('data-record')) {\n this._build()\n } else if (record.hasAttribute('data-record-new') && input.hasAttribute('data-value')) {\n this._add()\n }\n\n this._changingNow = false\n }\n\n _build(includeNewRecord?: boolean) {\n if (includeNewRecord) {\n var records = this.renderRoot.querySelectorAll('[data-record],[data-record-new]') as NodeListOf<HTMLElement>\n } else {\n var records = this.renderRoot.querySelectorAll('[data-record]') as NodeListOf<HTMLElement>\n }\n\n var newmap: PartitionKeys = {}\n\n for (var i = 0; i < records.length; i++) {\n var record = records[i]\n\n const key = (record.querySelector('[data-key]') as HTMLInputElement).value\n const inputs = record.querySelectorAll(\n '[data-value]:not([style*=\"display: none\"])'\n ) as NodeListOf<HTMLInputElement>\n\n if (!inputs || inputs.length == 0) {\n continue\n }\n\n var input = inputs[inputs.length - 1]\n\n var value = input.value\n\n if (key) {\n newmap[key] = value || ''\n }\n }\n\n this.value = newmap\n this.dispatchEvent(new CustomEvent('change', { bubbles: true, composed: true, detail: this.value }))\n }\n\n /* map아이템들을 template(dom-repeat)용 배열로 변환하는 함수 */\n _toArray(map: PartitionKeys) {\n var array: ArrayedPartitionKeys[] = []\n\n for (var key in map) {\n array.push({\n key: key,\n value: map[key]\n })\n }\n\n return array\n }\n\n _add() {\n this._build(true)\n\n const inputs = this.renderRoot.querySelectorAll(\n '[data-record-new] input:not([style*=\"display: none\"])'\n ) as NodeListOf<HTMLInputElement & { value: any }>\n\n for (var i = 0; i < inputs.length; i++) {\n let input = inputs[i]\n\n if (input.type == 'checkbox') input.checked = false\n else input.value = ''\n }\n\n inputs[0].focus()\n }\n\n _delete(e: MouseEvent) {\n const record = (e.target as Element).closest('[data-record]') as HTMLElement\n\n ;(record!.querySelector('[data-key]') as HTMLInputElement)!.value = ''\n\n this._build()\n }\n\n @queryAll('[data-record]') records!: NodeListOf<HTMLElement>\n\n _up(e: MouseEvent) {\n const record = (e.target as Element).closest('[data-record]') as HTMLElement\n const array = Array.from(this.records)\n const index = array.indexOf(record) - 1\n\n if (index < 0) {\n return\n }\n\n const deleted = array.splice(index, 1)\n array.splice(index + 1, 0, ...deleted)\n\n this.value = array.reduce((sum, record) => {\n const key = (record.querySelector('[data-key]') as HTMLInputElement).value\n const value = (record.querySelector('[data-value]') as HTMLInputElement).value\n\n sum[key] = value\n return sum\n }, {} as { [key: string]: string })\n\n this.dispatchEvent(new CustomEvent('change', { bubbles: true, composed: true, detail: this.value }))\n }\n\n _down(e: MouseEvent) {\n const record = (e.target as Element).closest('[data-record]') as HTMLElement\n const array = Array.from(this.records)\n const index = array.indexOf(record)\n\n if (index > array.length) {\n return\n }\n\n array.splice(index, 1)\n array.splice(index + 1, 0, record)\n\n this.value = array.reduce((sum, record) => {\n const key = (record.querySelector('[data-key]') as HTMLInputElement).value\n const value = (record.querySelector('[data-value]') as HTMLInputElement).value\n\n sum[key] = value\n return sum\n }, {} as { [key: string]: string })\n\n this.dispatchEvent(new CustomEvent('change', { bubbles: true, composed: true, detail: this.value }))\n }\n}\n"]}
|
@@ -2,7 +2,7 @@
|
|
2
2
|
* @license Copyright © HatioLab Inc. All rights reserved.
|
3
3
|
*/
|
4
4
|
import './ox-input-color';
|
5
|
-
import {
|
5
|
+
import { OxFormField } from './ox-form-field';
|
6
6
|
declare type ValueMap = {
|
7
7
|
default?: any;
|
8
8
|
[key: string]: any;
|
@@ -22,7 +22,7 @@ Example:
|
|
22
22
|
valuetype=${valuetype}>
|
23
23
|
</ox-input-value-map>
|
24
24
|
*/
|
25
|
-
export declare class OxInputValueMap extends
|
25
|
+
export declare class OxInputValueMap extends OxFormField {
|
26
26
|
static styles: import("lit").CSSResult;
|
27
27
|
value: ValueMap;
|
28
28
|
valuetype: 'string' | 'boolean' | 'color' | string;
|
@@ -3,8 +3,9 @@
|
|
3
3
|
*/
|
4
4
|
import { __decorate } from "tslib";
|
5
5
|
import './ox-input-color';
|
6
|
-
import {
|
6
|
+
import { css, html } from 'lit';
|
7
7
|
import { customElement, property } from 'lit/decorators.js';
|
8
|
+
import { OxFormField } from './ox-form-field';
|
8
9
|
/**
|
9
10
|
key-value map editor element
|
10
11
|
|
@@ -16,7 +17,7 @@ Example:
|
|
16
17
|
valuetype=${valuetype}>
|
17
18
|
</ox-input-value-map>
|
18
19
|
*/
|
19
|
-
let OxInputValueMap = class OxInputValueMap extends
|
20
|
+
let OxInputValueMap = class OxInputValueMap extends OxFormField {
|
20
21
|
constructor() {
|
21
22
|
super(...arguments);
|
22
23
|
this.value = {};
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"ox-input-value-map.js","sourceRoot":"","sources":["../../src/ox-input-value-map.ts"],"names":[],"mappings":"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","sourcesContent":["/**\n * @license Copyright © HatioLab Inc. All rights reserved.\n */\n\nimport './ox-input-color'\n\nimport { LitElement, css, html } from 'lit'\nimport { customElement, property } from 'lit/decorators.js'\n\ntype ValueMap = { default?: any; [key: string]: any }\ntype ArrayedValueMap = { key: string; value: any }\n\n/**\nkey-value map editor element\n\nExample:\n\n <ox-input-value-map \n value=${map}\n keytype=${keytype}\n valuetype=${valuetype}>\n </ox-input-value-map>\n*/\n@customElement('ox-input-value-map')\nexport class OxInputValueMap extends LitElement {\n static styles = css`\n :host {\n display: flex;\n flex-direction: column;\n align-content: center;\n\n width: 100%;\n overflow: hidden;\n border: 1px solid #ccc;\n }\n\n div {\n display: flex;\n flex-flow: row nowrap;\n align-items: center;\n\n border-bottom: 1px solid #c0c0c0;\n }\n\n div:last-child {\n border-bottom: none;\n }\n\n div > * {\n min-width: 0px;\n margin: 2px;\n padding: 0;\n }\n\n button {\n width: 20px;\n text-align: center;\n }\n\n input,\n ox-input-color {\n flex: 1;\n }\n\n ox-input-color {\n --ox-input-color-input-color: {\n margin: 1px;\n }\n --ox-input-color-input-span: {\n width: 10px;\n height: 10px;\n }\n }\n\n input[type='checkbox'] {\n width: initial;\n }\n `\n\n @property({ type: Object }) value: ValueMap = {}\n @property({ type: String }) valuetype: 'string' | 'boolean' | 'color' | string = 'string'\n @property({ type: String }) keytype: 'string' | 'boolean' | 'color' | string = 'string'\n\n private _changingNow: boolean = false\n\n firstUpdated() {\n this.renderRoot.addEventListener('change', this._onChange.bind(this))\n }\n\n render() {\n return html`\n ${this._toArray(this.value).map(\n item => html`\n <div data-record>\n <input type=\"text\" data-key placeholder=\"key\" .value=${item.key} />\n ${this.valuetype == 'boolean'\n ? html` <input type=\"checkbox\" data-value .checked=${item.value} data-value-type=${this.valuetype} /> `\n : this.valuetype == 'color'\n ? html` <ox-input-color data-value .value=${item.value} tabindex=\"-1\"> </ox-input-color> `\n : html`\n <input\n type=\"text\"\n data-value\n placeholder=\"value\"\n .value=${item.value}\n data-value-type=${this.valuetype}\n />\n `} <button class=\"record-action\" @click=${(e: MouseEvent) => this._delete(e)} tabindex=\"-1\">-</button>\n </div>\n `\n )}\n\n <div data-record-new>\n <input type=\"text\" data-key placeholder=\"key\" value=\"\" /> ${this.valuetype == 'boolean'\n ? html` <input type=\"checkbox\" data-value data-value-type=${this.valuetype} /> `\n : this.valuetype == 'color'\n ? html` <ox-input-color data-value value=\"\" tabindex=\"-1\" placeholder=\"value\"> </ox-input-color> `\n : html` <input type=\"text\" data-value placeholder=\"value\" value=\"\" data-value-type=${this.valuetype} /> `}\n <button class=\"record-action\" @click=${(e: MouseEvent) => this._add()} tabindex=\"-1\">+</button>\n </div>\n\n <div data-record>\n <input type=\"text\" data-key data-default=\"\" value=\"default\" disabled /> ${this.valuetype == 'boolean'\n ? html`\n <input\n type=\"checkbox\"\n data-value\n .checked=${this.value && this.value.default}\n data-value-type=${this.valuetype}\n />\n `\n : this.valuetype == 'color'\n ? html`\n <ox-input-color\n data-value\n .value=${(this.value && this.value.default) || ''}\n placeholder=\"value\"\n tabindex=\"-1\"\n >\n </ox-input-color>\n `\n : html`\n <input\n type=\"text\"\n data-value\n placeholder=\"value\"\n .value=${(this.value && this.value.default) || ''}\n data-value-type=${this.valuetype}\n />\n `} <button class=\"record-action\" @click=${() => this._sort()} tabindex=\"-1\">></button>\n </div>\n `\n }\n\n _defaultValue(type?: 'string' | 'boolean' | 'color' | string) {\n switch (type || this.valuetype) {\n case 'color':\n return '#000000'\n case 'boolean':\n case 'checkbox':\n return false\n default:\n return ''\n }\n }\n\n _onChange(e: Event) {\n if (this._changingNow) {\n return\n }\n\n this._changingNow = true\n\n const input = e.target as HTMLInputElement\n var value\n\n if (input.type == 'checkbox') {\n value = Boolean(input.checked)\n } else {\n value = input.value\n }\n\n const div = input.parentElement as HTMLDivElement\n\n if (div.hasAttribute('data-record')) {\n var dataList = div.querySelectorAll('[data-value]:not([hidden])') as NodeListOf<HTMLElement & { value: any }>\n\n for (var i = 0; i < dataList.length; i++) {\n if (dataList[i] !== input) {\n dataList[i].value = value || this._defaultValue()\n }\n }\n }\n\n if (div.hasAttribute('data-record')) {\n this._build()\n } else if (div.hasAttribute('data-record-new') && input.hasAttribute('data-value')) {\n this._add()\n }\n\n this._changingNow = false\n }\n\n _build(includeNewRecord?: boolean) {\n if (includeNewRecord) {\n var records = this.renderRoot.querySelectorAll('[data-record],[data-record-new]') as NodeListOf<HTMLElement>\n } else {\n var records = this.renderRoot.querySelectorAll('[data-record]') as NodeListOf<HTMLElement>\n }\n\n var newmap: ValueMap = {}\n\n for (var i = 0; i < records.length; i++) {\n var record = records[i]\n\n const key = (record.querySelector('[data-key]') as HTMLInputElement).value\n const inputs = record.querySelectorAll('[data-value]:not([style*=\"display: none\"])') as NodeListOf<\n HTMLInputElement & { value: any }\n >\n\n if (!inputs || inputs.length == 0) {\n continue\n }\n\n var input = inputs[inputs.length - 1]\n\n var value\n\n if (input.type == 'checkbox') {\n value = Boolean(input.checked)\n } else {\n value = input.value\n }\n\n if (key) {\n newmap[key] = value || this._defaultValue()\n }\n }\n\n this.value = newmap\n this.dispatchEvent(new CustomEvent('change', { bubbles: true, composed: true, detail: this.value }))\n }\n\n /* default를 제외한 map아이템들을 template(dom-repeat)용 배열로 변환하는 함수 */\n _toArray(map: ValueMap) {\n var array: ArrayedValueMap[] = []\n\n for (var key in map) {\n if (key == 'default') continue\n array.push({\n key: key,\n value: map[key]\n })\n }\n\n return array\n }\n\n _sort() {\n const sorter =\n this.keytype === 'number'\n ? function (a: ArrayedValueMap, b: ArrayedValueMap) {\n return parseFloat(b.key) < parseFloat(a.key) ? 1 : -1\n }\n : function (a: ArrayedValueMap, b: ArrayedValueMap) {\n return b.key < a.key ? 1 : -1\n }\n\n var map = this._toArray(this.value)\n .sort(sorter)\n .reduce(function (sum, i) {\n sum[i.key] = i.value\n return sum\n }, {} as ValueMap)\n\n map.default = this.value.default\n\n this.value = map\n this.dispatchEvent(new CustomEvent('change', { bubbles: true, composed: true, detail: this.value }))\n }\n\n _add() {\n this._build(true)\n\n const inputs = this.renderRoot.querySelectorAll(\n '[data-record-new] input:not([style*=\"display: none\"])'\n ) as NodeListOf<HTMLInputElement & { value: any }>\n\n for (var i = 0; i < inputs.length; i++) {\n let input = inputs[i]\n\n if (input.type == 'checkbox') input.checked = false\n else input.value = this._defaultValue(input.type)\n }\n\n inputs[0].focus()\n }\n\n _delete(e: MouseEvent) {\n const record = (e.target as HTMLElement).parentElement\n\n ;(record!.querySelector('[data-key]') as HTMLInputElement)!.value = ''\n\n this._build()\n }\n}\n"]}
|
1
|
+
{"version":3,"file":"ox-input-value-map.js","sourceRoot":"","sources":["../../src/ox-input-value-map.ts"],"names":[],"mappings":"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","sourcesContent":["/**\n * @license Copyright © HatioLab Inc. All rights reserved.\n */\n\nimport './ox-input-color'\n\nimport { css, html } from 'lit'\nimport { customElement, property } from 'lit/decorators.js'\n\nimport { OxFormField } from './ox-form-field'\n\ntype ValueMap = { default?: any; [key: string]: any }\ntype ArrayedValueMap = { key: string; value: any }\n\n/**\nkey-value map editor element\n\nExample:\n\n <ox-input-value-map \n value=${map}\n keytype=${keytype}\n valuetype=${valuetype}>\n </ox-input-value-map>\n*/\n@customElement('ox-input-value-map')\nexport class OxInputValueMap extends OxFormField {\n static styles = css`\n :host {\n display: flex;\n flex-direction: column;\n align-content: center;\n\n width: 100%;\n overflow: hidden;\n border: 1px solid #ccc;\n }\n\n div {\n display: flex;\n flex-flow: row nowrap;\n align-items: center;\n\n border-bottom: 1px solid #c0c0c0;\n }\n\n div:last-child {\n border-bottom: none;\n }\n\n div > * {\n min-width: 0px;\n margin: 2px;\n padding: 0;\n }\n\n button {\n width: 20px;\n text-align: center;\n }\n\n input,\n ox-input-color {\n flex: 1;\n }\n\n ox-input-color {\n --ox-input-color-input-color: {\n margin: 1px;\n }\n --ox-input-color-input-span: {\n width: 10px;\n height: 10px;\n }\n }\n\n input[type='checkbox'] {\n width: initial;\n }\n `\n\n @property({ type: Object }) value: ValueMap = {}\n @property({ type: String }) valuetype: 'string' | 'boolean' | 'color' | string = 'string'\n @property({ type: String }) keytype: 'string' | 'boolean' | 'color' | string = 'string'\n\n private _changingNow: boolean = false\n\n firstUpdated() {\n this.renderRoot.addEventListener('change', this._onChange.bind(this))\n }\n\n render() {\n return html`\n ${this._toArray(this.value).map(\n item => html`\n <div data-record>\n <input type=\"text\" data-key placeholder=\"key\" .value=${item.key} />\n ${this.valuetype == 'boolean'\n ? html` <input type=\"checkbox\" data-value .checked=${item.value} data-value-type=${this.valuetype} /> `\n : this.valuetype == 'color'\n ? html` <ox-input-color data-value .value=${item.value} tabindex=\"-1\"> </ox-input-color> `\n : html`\n <input\n type=\"text\"\n data-value\n placeholder=\"value\"\n .value=${item.value}\n data-value-type=${this.valuetype}\n />\n `} <button class=\"record-action\" @click=${(e: MouseEvent) => this._delete(e)} tabindex=\"-1\">-</button>\n </div>\n `\n )}\n\n <div data-record-new>\n <input type=\"text\" data-key placeholder=\"key\" value=\"\" /> ${this.valuetype == 'boolean'\n ? html` <input type=\"checkbox\" data-value data-value-type=${this.valuetype} /> `\n : this.valuetype == 'color'\n ? html` <ox-input-color data-value value=\"\" tabindex=\"-1\" placeholder=\"value\"> </ox-input-color> `\n : html` <input type=\"text\" data-value placeholder=\"value\" value=\"\" data-value-type=${this.valuetype} /> `}\n <button class=\"record-action\" @click=${(e: MouseEvent) => this._add()} tabindex=\"-1\">+</button>\n </div>\n\n <div data-record>\n <input type=\"text\" data-key data-default=\"\" value=\"default\" disabled /> ${this.valuetype == 'boolean'\n ? html`\n <input\n type=\"checkbox\"\n data-value\n .checked=${this.value && this.value.default}\n data-value-type=${this.valuetype}\n />\n `\n : this.valuetype == 'color'\n ? html`\n <ox-input-color\n data-value\n .value=${(this.value && this.value.default) || ''}\n placeholder=\"value\"\n tabindex=\"-1\"\n >\n </ox-input-color>\n `\n : html`\n <input\n type=\"text\"\n data-value\n placeholder=\"value\"\n .value=${(this.value && this.value.default) || ''}\n data-value-type=${this.valuetype}\n />\n `} <button class=\"record-action\" @click=${() => this._sort()} tabindex=\"-1\">></button>\n </div>\n `\n }\n\n _defaultValue(type?: 'string' | 'boolean' | 'color' | string) {\n switch (type || this.valuetype) {\n case 'color':\n return '#000000'\n case 'boolean':\n case 'checkbox':\n return false\n default:\n return ''\n }\n }\n\n _onChange(e: Event) {\n if (this._changingNow) {\n return\n }\n\n this._changingNow = true\n\n const input = e.target as HTMLInputElement\n var value\n\n if (input.type == 'checkbox') {\n value = Boolean(input.checked)\n } else {\n value = input.value\n }\n\n const div = input.parentElement as HTMLDivElement\n\n if (div.hasAttribute('data-record')) {\n var dataList = div.querySelectorAll('[data-value]:not([hidden])') as NodeListOf<HTMLElement & { value: any }>\n\n for (var i = 0; i < dataList.length; i++) {\n if (dataList[i] !== input) {\n dataList[i].value = value || this._defaultValue()\n }\n }\n }\n\n if (div.hasAttribute('data-record')) {\n this._build()\n } else if (div.hasAttribute('data-record-new') && input.hasAttribute('data-value')) {\n this._add()\n }\n\n this._changingNow = false\n }\n\n _build(includeNewRecord?: boolean) {\n if (includeNewRecord) {\n var records = this.renderRoot.querySelectorAll('[data-record],[data-record-new]') as NodeListOf<HTMLElement>\n } else {\n var records = this.renderRoot.querySelectorAll('[data-record]') as NodeListOf<HTMLElement>\n }\n\n var newmap: ValueMap = {}\n\n for (var i = 0; i < records.length; i++) {\n var record = records[i]\n\n const key = (record.querySelector('[data-key]') as HTMLInputElement).value\n const inputs = record.querySelectorAll('[data-value]:not([style*=\"display: none\"])') as NodeListOf<\n HTMLInputElement & { value: any }\n >\n\n if (!inputs || inputs.length == 0) {\n continue\n }\n\n var input = inputs[inputs.length - 1]\n\n var value\n\n if (input.type == 'checkbox') {\n value = Boolean(input.checked)\n } else {\n value = input.value\n }\n\n if (key) {\n newmap[key] = value || this._defaultValue()\n }\n }\n\n this.value = newmap\n this.dispatchEvent(new CustomEvent('change', { bubbles: true, composed: true, detail: this.value }))\n }\n\n /* default를 제외한 map아이템들을 template(dom-repeat)용 배열로 변환하는 함수 */\n _toArray(map: ValueMap) {\n var array: ArrayedValueMap[] = []\n\n for (var key in map) {\n if (key == 'default') continue\n array.push({\n key: key,\n value: map[key]\n })\n }\n\n return array\n }\n\n _sort() {\n const sorter =\n this.keytype === 'number'\n ? function (a: ArrayedValueMap, b: ArrayedValueMap) {\n return parseFloat(b.key) < parseFloat(a.key) ? 1 : -1\n }\n : function (a: ArrayedValueMap, b: ArrayedValueMap) {\n return b.key < a.key ? 1 : -1\n }\n\n var map = this._toArray(this.value)\n .sort(sorter)\n .reduce(function (sum, i) {\n sum[i.key] = i.value\n return sum\n }, {} as ValueMap)\n\n map.default = this.value.default\n\n this.value = map\n this.dispatchEvent(new CustomEvent('change', { bubbles: true, composed: true, detail: this.value }))\n }\n\n _add() {\n this._build(true)\n\n const inputs = this.renderRoot.querySelectorAll(\n '[data-record-new] input:not([style*=\"display: none\"])'\n ) as NodeListOf<HTMLInputElement & { value: any }>\n\n for (var i = 0; i < inputs.length; i++) {\n let input = inputs[i]\n\n if (input.type == 'checkbox') input.checked = false\n else input.value = this._defaultValue(input.type)\n }\n\n inputs[0].focus()\n }\n\n _delete(e: MouseEvent) {\n const record = (e.target as HTMLElement).parentElement\n\n ;(record!.querySelector('[data-key]') as HTMLInputElement)!.value = ''\n\n this._build()\n }\n}\n"]}
|
@@ -1 +1 @@
|
|
1
|
-
{"program":{"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.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.es2020.bigint.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.esnext.intl.d.ts","../@types/global/index.d.ts","../../../node_modules/tslib/tslib.d.ts","../../../node_modules/@lit/reactive-element/css-tag.d.ts","../../../node_modules/@lit/reactive-element/reactive-controller.d.ts","../../../node_modules/@lit/reactive-element/reactive-element.d.ts","../../../node_modules/@types/trusted-types/lib/index.d.ts","../../../node_modules/@types/trusted-types/index.d.ts","../../../node_modules/lit-html/directive.d.ts","../../../node_modules/lit-html/lit-html.d.ts","../../../node_modules/lit-element/lit-element.d.ts","../../../node_modules/lit/index.d.ts","../../../node_modules/@lit/reactive-element/decorators/base.d.ts","../../../node_modules/@lit/reactive-element/decorators/custom-element.d.ts","../../../node_modules/@lit/reactive-element/decorators/property.d.ts","../../../node_modules/@lit/reactive-element/decorators/state.d.ts","../../../node_modules/@lit/reactive-element/decorators/event-options.d.ts","../../../node_modules/@lit/reactive-element/decorators/query.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-all.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-async.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-assigned-nodes.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-assigned-elements.d.ts","../../../node_modules/lit/decorators.d.ts","../src/ox-form-field.ts","../src/ox-buttons-radio.ts","../src/ox-checkbox.ts","../../../node_modules/@material/mwc-icon/mwc-icon.d.ts","../../popup/dist/src/ox-popup.d.ts","../../popup/dist/src/ox-popup-list.d.ts","../../popup/dist/src/ox-popup-menu.d.ts","../../popup/dist/src/ox-popup-menuitem.d.ts","../../popup/dist/src/index.d.ts","../src/ox-select.ts","../src/ox-input-angle.ts","../../../node_modules/@lit/localize/internal/str-tag.d.ts","../../../node_modules/@lit/localize/internal/types.d.ts","../../../node_modules/@lit/localize/internal/locale-status-event.d.ts","../../../node_modules/@lit/localize/internal/localized-controller.d.ts","../../../node_modules/@lit/localize/internal/localized-decorator.d.ts","../../../node_modules/@lit/localize/init/runtime.d.ts","../../../node_modules/@lit/localize/init/transform.d.ts","../../../node_modules/@lit/localize/lit-localize.d.ts","../src/ox-input-3dish.ts","../src/ox-input-stack.ts","../../../node_modules/@zxing/library/esm/core/luminancesource.d.ts","../../../node_modules/@zxing/library/esm/core/common/bitarray.d.ts","../../../node_modules/@zxing/library/esm/customtypings.d.ts","../../../node_modules/@zxing/library/esm/core/common/bitmatrix.d.ts","../../../node_modules/@zxing/library/esm/core/binarizer.d.ts","../../../node_modules/@zxing/library/esm/core/binarybitmap.d.ts","../../../node_modules/@zxing/library/esm/core/decodehinttype.d.ts","../../../node_modules/@zxing/library/esm/core/resultpoint.d.ts","../../../node_modules/@zxing/library/esm/core/barcodeformat.d.ts","../../../node_modules/@zxing/library/esm/core/resultmetadatatype.d.ts","../../../node_modules/@zxing/library/esm/core/result.d.ts","../../../node_modules/@zxing/library/esm/core/reader.d.ts","../../../node_modules/ts-custom-error/dist/custom-error.d.ts","../../../node_modules/@zxing/library/esm/core/exception.d.ts","../../../node_modules/@zxing/library/esm/browser/decodecontinuouslycallback.d.ts","../../../node_modules/@zxing/library/esm/browser/htmlvisualmediaelement.d.ts","../../../node_modules/@zxing/library/esm/browser/videoinputdevice.d.ts","../../../node_modules/@zxing/library/esm/browser/browsercodereader.d.ts","../../../node_modules/@zxing/library/esm/browser/browserazteccodereader.d.ts","../../../node_modules/@zxing/library/esm/browser/browserbarcodereader.d.ts","../../../node_modules/@zxing/library/esm/browser/browserdatamatrixcodereader.d.ts","../../../node_modules/@zxing/library/esm/core/multiformatreader.d.ts","../../../node_modules/@zxing/library/esm/browser/browsermultiformatreader.d.ts","../../../node_modules/@zxing/library/esm/browser/browserpdf417reader.d.ts","../../../node_modules/@zxing/library/esm/browser/browserqrcodereader.d.ts","../../../node_modules/@zxing/library/esm/core/encodehinttype.d.ts","../../../node_modules/@zxing/library/esm/browser/browserqrcodesvgwriter.d.ts","../../../node_modules/@zxing/library/esm/browser/htmlcanvaselementluminancesource.d.ts","../../../node_modules/@zxing/library/esm/browser.d.ts","../../../node_modules/@zxing/library/esm/core/argumentexception.d.ts","../../../node_modules/@zxing/library/esm/core/arithmeticexception.d.ts","../../../node_modules/@zxing/library/esm/core/checksumexception.d.ts","../../../node_modules/@zxing/library/esm/core/formatexception.d.ts","../../../node_modules/@zxing/library/esm/core/illegalargumentexception.d.ts","../../../node_modules/@zxing/library/esm/core/illegalstateexception.d.ts","../../../node_modules/@zxing/library/esm/core/notfoundexception.d.ts","../../../node_modules/@zxing/library/esm/core/readerexception.d.ts","../../../node_modules/@zxing/library/esm/core/reedsolomonexception.d.ts","../../../node_modules/@zxing/library/esm/core/unsupportedoperationexception.d.ts","../../../node_modules/@zxing/library/esm/core/writerexception.d.ts","../../../node_modules/@zxing/library/esm/core/invertedluminancesource.d.ts","../../../node_modules/@zxing/library/esm/core/writer.d.ts","../../../node_modules/@zxing/library/esm/core/multiformatwriter.d.ts","../../../node_modules/@zxing/library/esm/core/planaryuvluminancesource.d.ts","../../../node_modules/@zxing/library/esm/core/resultpointcallback.d.ts","../../../node_modules/@zxing/library/esm/core/rgbluminancesource.d.ts","../../../node_modules/@zxing/library/esm/core/util/system.d.ts","../../../node_modules/@zxing/library/esm/core/common/characterseteci.d.ts","../../../node_modules/@zxing/library/esm/core/util/stringbuilder.d.ts","../../../node_modules/@zxing/library/esm/core/util/stringencoding.d.ts","../../../node_modules/@zxing/library/esm/core/util/charset.d.ts","../../../node_modules/@zxing/library/esm/core/util/arrays.d.ts","../../../node_modules/@zxing/library/esm/core/util/standardcharsets.d.ts","../../../node_modules/@zxing/library/esm/core/util/integer.d.ts","../../../node_modules/@zxing/library/esm/core/common/bitsource.d.ts","../../../node_modules/@zxing/library/esm/core/common/decoderresult.d.ts","../../../node_modules/@zxing/library/esm/core/common/perspectivetransform.d.ts","../../../node_modules/@zxing/library/esm/core/common/gridsampler.d.ts","../../../node_modules/@zxing/library/esm/core/common/defaultgridsampler.d.ts","../../../node_modules/@zxing/library/esm/core/common/detectorresult.d.ts","../../../node_modules/@zxing/library/esm/core/common/globalhistogrambinarizer.d.ts","../../../node_modules/@zxing/library/esm/core/common/gridsamplerinstance.d.ts","../../../node_modules/@zxing/library/esm/core/common/hybridbinarizer.d.ts","../../../node_modules/@zxing/library/esm/core/common/stringutils.d.ts","../../../node_modules/@zxing/library/esm/core/common/detector/mathutils.d.ts","../../../node_modules/@zxing/library/esm/core/common/detector/whiterectangledetector.d.ts","../../../node_modules/@zxing/library/esm/core/common/reedsolomon/abstractgenericgf.d.ts","../../../node_modules/@zxing/library/esm/core/common/reedsolomon/genericgfpoly.d.ts","../../../node_modules/@zxing/library/esm/core/common/reedsolomon/genericgf.d.ts","../../../node_modules/@zxing/library/esm/core/common/reedsolomon/reedsolomondecoder.d.ts","../../../node_modules/@zxing/library/esm/core/common/reedsolomon/reedsolomonencoder.d.ts","../../../node_modules/@zxing/library/esm/core/datamatrix/datamatrixreader.d.ts","../../../node_modules/@zxing/library/esm/core/datamatrix/decoder/decodedbitstreamparser.d.ts","../../../node_modules/@zxing/library/esm/core/multi/multiplebarcodereader.d.ts","../../../node_modules/@zxing/library/esm/core/pdf417/pdf417reader.d.ts","../../../node_modules/@zxing/library/esm/core/pdf417/pdf417resultmetadata.d.ts","../../../node_modules/@zxing/library/esm/core/pdf417/decoder/decodedbitstreamparser.d.ts","../../../node_modules/@zxing/library/esm/core/pdf417/decoder/ec/errorcorrection.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/decoder/decoder.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/qrcodereader.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/qrcodewriter.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/decoder/errorcorrectionlevel.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/decoder/formatinformation.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/decoder/ecb.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/decoder/ecblocks.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/decoder/version.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/decoder/mode.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/decoder/decodedbitstreamparser.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/decoder/datamask.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/encoder/bytematrix.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/encoder/qrcode.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/encoder/encoder.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/encoder/matrixutil.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/encoder/maskutil.d.ts","../../../node_modules/@zxing/library/esm/core/aztec/aztecreader.d.ts","../../../node_modules/@zxing/library/esm/core/aztec/aztecwriter.d.ts","../../../node_modules/@zxing/library/esm/core/aztec/aztecdetectorresult.d.ts","../../../node_modules/@zxing/library/esm/core/aztec/encoder/azteccode.d.ts","../../../node_modules/@zxing/library/esm/core/aztec/encoder/encoder.d.ts","../../../node_modules/@zxing/library/esm/core/aztec/encoder/highlevelencoder.d.ts","../../../node_modules/@zxing/library/esm/core/aztec/decoder/decoder.d.ts","../../../node_modules/@zxing/library/esm/core/aztec/detector/detector.d.ts","../../../node_modules/@zxing/library/esm/core/oned/onedreader.d.ts","../../../node_modules/@zxing/library/esm/core/oned/abstractupceanreader.d.ts","../../../node_modules/@zxing/library/esm/core/oned/upceanreader.d.ts","../../../node_modules/@zxing/library/esm/core/oned/ean13reader.d.ts","../../../node_modules/@zxing/library/esm/core/oned/code128reader.d.ts","../../../node_modules/@zxing/library/esm/core/oned/itfreader.d.ts","../../../node_modules/@zxing/library/esm/core/oned/code39reader.d.ts","../../../node_modules/@zxing/library/esm/core/oned/rss/abstractrssreader.d.ts","../../../node_modules/@zxing/library/esm/core/oned/rss/rss14reader.d.ts","../../../node_modules/@zxing/library/esm/core/oned/rss/datacharacter.d.ts","../../../node_modules/@zxing/library/esm/core/oned/rss/finderpattern.d.ts","../../../node_modules/@zxing/library/esm/core/oned/rss/expanded/expandedpair.d.ts","../../../node_modules/@zxing/library/esm/core/oned/rss/expanded/rssexpandedreader.d.ts","../../../node_modules/@zxing/library/esm/core/oned/rss/expanded/decoders/decodedobject.d.ts","../../../node_modules/@zxing/library/esm/core/oned/rss/expanded/decoders/decodedinformation.d.ts","../../../node_modules/@zxing/library/esm/core/oned/rss/expanded/decoders/generalappiddecoder.d.ts","../../../node_modules/@zxing/library/esm/core/oned/rss/expanded/decoders/abstractexpandeddecoder.d.ts","../../../node_modules/@zxing/library/esm/core/oned/rss/expanded/decoders/abstractexpandeddecodercomplement.d.ts","../../../node_modules/@zxing/library/esm/core/oned/multiformatonedreader.d.ts","../../../node_modules/@zxing/library/esm/index.d.ts","../src/ox-input-barcode.ts","../../../node_modules/@types/codemirror/index.d.ts","../../../node_modules/@types/codemirror/addon/display/fullscreen.d.ts","../../../node_modules/@types/codemirror/addon/display/autorefresh.d.ts","../../styles/dist/src/headroom-styles.d.ts","../../styles/dist/src/scrollbar-styles.d.ts","../../styles/dist/src/spinner-styles.d.ts","../../styles/dist/src/tooltip-styles.d.ts","../../styles/dist/src/common-button-styles.d.ts","../../styles/dist/src/common-grist-styles.d.ts","../../styles/dist/src/index.d.ts","../src/ox-input-code.ts","../../../node_modules/@thebespokepixel/es-tinycolor/types/index.d.ts","../src/ox-input-color.ts","../src/ox-input-multiple-colors.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/isequal.d.ts","../src/ox-input-color-stops.ts","../../../node_modules/@polymer/iron-a11y-keys-behavior/iron-a11y-keys-behavior.d.ts","../../../node_modules/@polymer/polymer/lib/utils/array-splice.d.ts","../../../node_modules/@polymer/polymer/interfaces.d.ts","../../../node_modules/@polymer/polymer/lib/utils/async.d.ts","../../../node_modules/@polymer/polymer/lib/utils/flattened-nodes-observer.d.ts","../../../node_modules/@polymer/polymer/lib/utils/debounce.d.ts","../../../node_modules/@polymer/polymer/lib/utils/flush.d.ts","../../../node_modules/@polymer/polymer/lib/legacy/polymer.dom.d.ts","../../../node_modules/@polymer/iron-behaviors/iron-button-state.d.ts","../../../node_modules/@polymer/iron-behaviors/iron-control-state.d.ts","../../../node_modules/@polymer/iron-form-element-behavior/iron-form-element-behavior.d.ts","../../../node_modules/@polymer/polymer/lib/utils/mixin.d.ts","../../../node_modules/@polymer/polymer/lib/utils/resolve-url.d.ts","../../../node_modules/@polymer/polymer/lib/elements/dom-module.d.ts","../../../node_modules/@polymer/polymer/lib/utils/style-gather.d.ts","../../../node_modules/@polymer/polymer/lib/utils/path.d.ts","../../../node_modules/@polymer/polymer/lib/utils/case-map.d.ts","../../../node_modules/@polymer/polymer/lib/mixins/properties-changed.d.ts","../../../node_modules/@polymer/polymer/lib/mixins/property-accessors.d.ts","../../../node_modules/@polymer/polymer/lib/mixins/template-stamp.d.ts","../../../node_modules/@polymer/polymer/lib/mixins/property-effects.d.ts","../../../node_modules/@polymer/polymer/lib/utils/telemetry.d.ts","../../../node_modules/@polymer/polymer/lib/mixins/properties-mixin.d.ts","../../../node_modules/@polymer/polymer/lib/mixins/element-mixin.d.ts","../../../node_modules/@polymer/polymer/lib/utils/gestures.d.ts","../../../node_modules/@polymer/polymer/lib/mixins/gesture-event-listeners.d.ts","../../../node_modules/@polymer/polymer/lib/mixins/dir-mixin.d.ts","../../../node_modules/@polymer/polymer/lib/utils/scope-subtree.d.ts","../../../node_modules/@polymer/polymer/lib/mixins/disable-upgrade-mixin.d.ts","../../../node_modules/@polymer/polymer/lib/legacy/legacy-element-mixin.d.ts","../../../node_modules/@polymer/polymer/lib/legacy/class.d.ts","../../../node_modules/@polymer/polymer/lib/legacy/polymer-fn.d.ts","../../../node_modules/@polymer/iron-meta/iron-meta.d.ts","../../../node_modules/@polymer/iron-validatable-behavior/iron-validatable-behavior.d.ts","../../../node_modules/@polymer/polymer/lib/utils/html-tag.d.ts","../../../node_modules/@polymer/paper-dropdown-menu/paper-dropdown-menu.d.ts","../../../node_modules/@polymer/iron-selector/iron-selection.d.ts","../../../node_modules/@polymer/iron-selector/iron-selectable.d.ts","../../../node_modules/@polymer/iron-selector/iron-multi-selectable.d.ts","../../../node_modules/@polymer/iron-menu-behavior/iron-menu-behavior.d.ts","../../../node_modules/@polymer/paper-listbox/paper-listbox.d.ts","../../../node_modules/@polymer/paper-item/paper-item-behavior.d.ts","../../../node_modules/@polymer/paper-item/paper-item.d.ts","../src/ox-input-color-gradient.ts","../../utils/dist/src/sleep.d.ts","../../utils/dist/src/file-drop-helper.d.ts","../../utils/dist/src/context-path.d.ts","../../utils/dist/src/os.d.ts","../../utils/dist/src/swipe-listener.d.ts","../../utils/dist/src/fullscreen.d.ts","../../utils/dist/src/parse-jwt.d.ts","../../utils/dist/src/password-pattern.d.ts","../../utils/dist/src/closest-element.d.ts","../../utils/dist/src/index.d.ts","../src/ox-input-file.ts","../src/ox-input-image.ts","../src/ox-input-value-ranges.ts","../src/ox-input-value-map.ts","../src/ox-input-table.ts","../src/ox-input-scene-component-id.ts","../../../node_modules/@material/base/foundation.d.ts","../../../node_modules/@material/base/types.d.ts","../../../node_modules/@material/base/component.d.ts","../../../node_modules/@material/base/index.d.ts","../../../node_modules/@material/mwc-base/utils.d.ts","../../../node_modules/@material/mwc-base/base-element.d.ts","../../../node_modules/@material/ripple/types.d.ts","../../../node_modules/@material/ripple/adapter.d.ts","../../../node_modules/@material/ripple/foundation.d.ts","../../../node_modules/@material/mwc-ripple/mwc-ripple-base.d.ts","../../../node_modules/@material/mwc-ripple/mwc-ripple.d.ts","../../../node_modules/@material/mwc-base/aria-property.d.ts","../../../node_modules/@material/mwc-ripple/ripple-handlers.d.ts","../../../node_modules/lit-html/directives/class-map.d.ts","../../../node_modules/lit/directives/class-map.d.ts","../../../node_modules/@material/mwc-button/mwc-button-base.d.ts","../../../node_modules/@material/mwc-button/mwc-button.d.ts","../../../node_modules/i18next/index.d.ts","../../i18n/dist/src/config.d.ts","../../i18n/dist/src/localize.d.ts","../../i18n/dist/src/ox-i18n.d.ts","../../i18n/dist/src/ox-i18n-selector.d.ts","../../i18n/dist/src/index.d.ts","../src/ox-input-crontab.ts","../src/index.ts","../src/ox-input-container.ts","../src/ox-input-data.ts","../src/ox-input-options.ts","../src/ox-input-range.ts","../src/ox-input-search.ts","../src/locale/locale-codes.ts","../src/locale/localization.ts","../src/locale/locale-picker.ts","../src/locales/en.ts","../src/locales/ko.ts","../src/locales/ms.ts","../src/locales/zh.ts","../src/ox-input-layout/ox-input-card-layout.ts","../src/ox-input-layout/ox-input-grid-layout.ts","../src/ox-input-layout/ox-input-layout.ts","../stories/index.stories.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/globals.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/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.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/readline.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.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/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/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/mocha/index.d.ts"],"fileInfos":[{"version":"3ac1b83264055b28c0165688fda6dfcc39001e9e7828f649299101c23ad0a0c3","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"72704b10d97777e15f1a581b73f88273037ef752d2e50b72287bd0a90af64fe6","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"5075b36ab861c8c0c45377cb8c96270d7c65f0eeaf105d53fac6850da61f1027","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"b5c159239c33d1bcb3d7ca8d24cf9ba1b1579aab80e70fbb0029e374880f2470","12f4cfe2fe60b810c3174537bc2ddb20c1067b7768643d12cb1266fd183afb75","6e2c5a9358c2be6791713f778c3af2d3357b8665d881e22f50b3aa861a2a9717","1e5743b25a63fd34ffbae89adcbf248ee17db6ed08d90079ffa93803c3e80d2a","13bb750b495c48fd60d7b5e09f65d4a7b010ab7e09a8943a6d54511e7d184f84","2fcd2d22b1f30555e785105597cd8f57ed50300e213c4f1bbca6ae149f782c38",{"version":"bb4248c7f953233ac52332088fac897d62b82be07244e551d87c5049600b6cf7","affectsGlobalScope":true},"70f04c91d3186b1b10157157887fab664968fc9b88377785a5ee42750c202c6d","f690af1a7043e58fce8c672df5e1d1e27bad7459b81143af991db7c5427a0785","eba7cf33380cc3a3cf614faf67300e14d0bdff9ea6c5cd6f4b040b1756a48ab1","f07a77a7fb1d49aa2b61cb68bf712a083487acd7130d20223a83de03af0c257d","97c58f6db61d45712d91d2260994817ae2b568bbb37cc280013079b6b5d2232d","ac388c7c7a262213a3700451bc921e382a93fb27c0252c34ccf03540b4ce044b","1da789e534bc558808021dd64abf33a91a68e422bbf28aeec236bd74df640401","fb0107c83e2e0e75b77dacd0c3c6c3ab6844e98dce2a8f858c6f0a57c12136a6","0a478dcb6e6bd8a5d871165659c79cee7b8c3b7a87289118d22e1a04d171e252","a25d1e52291791819032826af5c52987e16ffdb96e8bb69f7f1790f5ab080be6","d660961abada6b5030461f3322ef3a2e1d9fec74167574f8b590a7796cf90a72","707b4eae3d469b2f347d2083037151922f94c370a9456ebd5ac0a4fb7441c7e7","4bcb813ea56182beaaab1e8274524eb9f1449b0d8e79efc4a0399de09e43f816","c784eab1cf838d9d6527bce3d9f2d373145606666b68f7610291a7adf6e6bda9","f0380f581cb015778c0fe51e95b5b7f6dae237280654558469b2486c1572268a","4b5bc27818154a8a76974f7302c9a513c6bbb7bf1434058bdfe0de2289db9a6d","b56f1ca0eefb2bec05660ac3d9c61f853ddd749720a6360400c95ac8c8705979","994428e6399a9f041e750301737faf44246d47374ec5703ef64477d0565e9e08",{"version":"27b285e901600242883d62a5fff9f5d262c6fa128b6e6c6963f981f2630a957e","affectsGlobalScope":true},"b19e95136dd01ce850d7f05e05d594afecc4510fd1b44cdc049e4b7ce4d18e35","3105a6cf1565ddc046f897858c64065148cbcaa33034c232fc44fd469e0de67a","79be55362c82b8aa2f5dc063b51dbbc8f38f009d81c494aac4f671ff23fefb86","10cbee260a09cb62cc5516ea65aa7504f21ec98048a324e789d04d40d9057513","77b0b20b0aeafc78f8af2d66bf16a53b91312d6426f5413a574b978cc6edff34","2a404d8d2f06b572ee0d103996bbe621be1419dfe6a2f3c2ce49a0c2e3804bb7","ed3eaec34d14d1a2885ed3b0f38846472bff1ff1b3a48ed986f4526f8e694d8c","08bae564269612dc1909bdf7f747766c235b85641f6d156bccc9ee9876fb2435","459489899ec41b6dc4a6a8f80f55aae744cd76f6b6ad13a0acb19349c9bdf2f5",{"version":"6a7a3cf7102eaf8c5b67c2a92f8cc0ff6e1076a49b714a7f518d0d1b5ac85a40","affectsGlobalScope":true},"b49ff59927171643840b1349c9a0b39453e0613e69aa25d588c6c24ccb37fbe1","d7476e036a2936d4e5ec603a28c04645b2afa91e3c0ff98e326b884ed5a3fa73","775d6ac48d8fe78490aa60d2b356579822702bce7e70c88fc2452334c67504d4","9c75751d47aef509ebc0a58cb186c8e07c8ed2cd164a9902164cc5ae28bf0517","b48bf76c500cfcff3a39db7c8b649a7800eeacceb2a97e46a22abae3f1dc4de6","980efd024cebcdd799c58528fe3877c10ee7d7939ee394f6039b066a50bda237","3dfe4b1e3d9bd0902596cde89873e7cface012fe4e19a065fa57a1cc379e9a50","30b7784f26c990da2ab8e2b35c198b84dd1bcfc4ce1936d95baf8be825e44fc8","2aad701dc29df474848186eae9f7f6d68682cd30ccb14b50866e1cdc2deffded","6631d429758aec5beb47de0895a09b57b9a2bb0d3520d3f7e5674c33b886cb32","4b7b8571dbc6ac884882c910549ef6b507c9bf9e721ec4ae5bccb4cb565e7597","de2a52682e3a9ee3c61159a4a6fd74c9e0259692598f33d1d2174f5d8fb18276","ca968be2bebaec29feba08452a2293d0ad2f11b5e70833d99fc6a078844271ea","4363cfdc5eba70c1b06e88653e0a03705558f7f3880083aa639438ef01f367f1","c0b4317958ae42a4e276041687ab95a72668d790b8410939d9924d49776fea40","7664fc0355afe380fdb3c184848e79ef10958c6916305a50bceb06366f9e9019","22fa4f9d3a770310dfcc6c60310288326dfa31b39e32744d660e50a08ef7583f","7a2835f1d73db78aa311398798efbcf07b7029ac18252dfa321d50168f211452","8ded0efd0f64067da4812f14e9d7bb1ed44871c3b87d87564416d93073825f0d","79ba5dfa0abac7e3e7210eb2358f9e6117a46da02446cead1510f32c26eae02e","df5585be736dfb6b7a4f5ef08c5dd8c037858319da3313ed39609b7079980caa","83fd78d3184d150c32740a409c3b4acb1290199490a86f661b43b14ae9314b68","6bd387b615555ec847bcce6eade4de0c271b7b22b17d7e29b837011d4429e164","2effb5dfe6a54053aeb4c21bae08f457c9454b3473a1b65dd7c7a9ec064a1aa2","905d6e6887edf527d56dcda85ae92d065611fccf5c582f2d019123ddc0f2077f","75aa62429356fb3a8ff4c9ff0e9665c67b512351956857a3e1ade1d497e9c149","5ded77dd88437e5e3cb2e6e8c0bd636896e79ecbb4a9876678e3d0ab5e2ea54d","72a8e2f7864e44b864f9b991fcad0a4bc5fabb1aeaad3dc7ee520ccee4f2336e","a193a2944058607c6c094df6487399e4386059280940839af6cf62a634202810","cf3e138268e5bfaed81bf100500da5f257d6883a9e8a0febe431dcc9c128766e","1fe02733949b609bbf88523da8d24a5432b510b2ad0b47ae0c921d680f9f3785","74a0aecf46aa5c2aae9d42cfc0efda7f1e93677474e12471a5864230c6b187a1","96ef505aceedbf3ecfcf69829b4f57f27e3ce72ad6ebcaa05a1da88986b818b8","eec7434894f908a61867fa29b5fe563c14c313cbc35e517ada79f38b44234e37","52a9d9ae376b117459346f324e3c8ec04a0b1e702a000a2c80e9dbd9b43181a2","17b29959c0ac60d28af819d0d3d7106c9dfe5acefe5c820ea7145e5d27455702","49d95d1f1707e80483ae4a3313103a1d76a4d105f3b0e3cf410c474b7c5cc358","f369c01bc64fc7d8ce1751065c384df2f81a89deb224c24eabb4e8465ee6181d","c6bbc353e7bca0574458f0dcadfe84e56e48ec1d38475b4254c1d4619bfd47c1","4c90f3b801c6aec975c0497b9e9ff8ff1ad903fb74e6e8aaadb240dd85612bb8","d11f0b5dae80f2e5e02f34c4aa58650492ccb45651b6f83f10eaf10dfe565a65","49bc024e5a1fea90b26a1f41fd75982d9f68f40444b568a91ad1202691cd882d","4b2ea4e544b830a25240b3982d735fbd6f4da8ea7af4caee3906809cb0c892fb","e5029039ae5dd970ab70bd67cc03085f17420e89e365c684921e45cc2b7f9c0a","099d5cbe09f4ecd7529764502da2a91e819d48e1b8f53e3b9954dbf9fdcd2d67","521e4e920ab7109fea500cc2f9dd48457a30b46f574b35c52bc6bd2533cd902f","f24dc27c51a5dfcd6383f001099843ce5234dac65a8de5477b5bd43c68d789e7","d1b2ba9156610a5413143169dcdb67530665b4c97da01e849c4e39560a028d11","67d0899181e8542bb2408b0a4d4be47628290ba39e3510b00569891c6bef8105","1a51bc00ba287a98d010ba68dacf22e81e801c27d5f605dc53562d9db76e16db","5b71a4c0fa3233daf8025104788f9f6046859ddb0fb96beb59fc0ff9fb42c113","0438101968a30ea0799bf28609d56a45446268eb08a2606c737104b9a2e479c5","dfae624810dcaa58acf29dea53d0c4b0626e50822668b0f25b92769d0d4a0c11","159d5123c12f8ea94d929fca14851cd1cf625e2c5778119df4d167265b11addb","8cd5018ac1e7d47f19f3b56af074d2aadb80a3cc0cfd42f40419405c3131f405","a7e4a92ed0a90cbdc3f944fac43a367abc2713abaeca4a1b0ac84e35bedd702d","072caf3382317f29871e8c1f22e6620252ead6c3245e118c0953dabc5a3e79f0","0e6d04a687ffc80745939bef70f2964dd4699895aeae3cb8076a2ff18cde1c67","043d1f68840d7ad109fcea422c34e0096da930d820a2987a67bc8dec11387463","265b6fbbe296b6ace3e92eaee48813c809890f90eef7c389e44997e652c8a94f","09a6cf0a1646f4fe8956b5a9ed2334d5bce973d2f074abb61a39e09cd620399d","c3394d3bc25404895e11fba6517b477f992321aeadd20338cd541721af8e1684","329c0ab9af33a87e502c718b5301cb114a5547a1fc5d55597128adb9aec1e25e","69db0dfb6ec9dcba5a31b99bfc5da74b6d86fca50013cc15bb072c4c97acc4d6","188c2128b909024fd07ff82a308638b13eb02056454d6aec0094656f5b60b0ab","59e626908ec84b90ab62d7704f406739956afa6a124f37776a7fbf3d523d31af","3bf62235efe93ed4f9b18799351c890d7eee5d7ac118b33d5ec717070437fb86","aa02ea4ce88d834274306d2e8d72b6f2457777255c1de2a021a922540f3c201b","a2c581e82777c45b07521fb39e06e50681da78b927df93495313657b0a2abd49","a2ff4870a55c9dfa028c2f5e774f647594bd0a1036388c39562bd3a81eb08631","5f14ef223c9097662dd86d19dc13aa1772524f2689596df3d324b9a08099ad0c","303680856c75fdbc2d4616f29d6e5adfa9837c091119f85482cf0123d4688bd4","8ac1fb455c5f42a895c9d1b6a7ad53d6e72e8bd024a2376c7743914e6c3db1c5","e7fbfe161d7591aff2fac724dc3729d6f2c10a2368a1accc79619f56273c6d45","945c700e5c5283839f32fb02129ffa233843afdc7a31335225a622edaa4dcd29","374251a9579548076b559ae27d07e08c1fa150d7934fe9629cc649fee99751ef","a8b40e76e9b2870e9693abc3a52135e80c5c95b9bad4bb5c7e756cb68be0dee6","ef63d901eaee2e8c25fd006bd0ad13ff7821de4bc07de674ae5eee8748001451","247d025ea65b8d07f3f595af46f3e6d3c84bfe6c80f80ee77df1f22d814c132d","3fcb9d41be6137cf2c3684aef7d6ea8d934132644bf8044d0ebc24c680939e19","bd4db5efc9930a4eb2e9e6af8f55cba031045b7b6adc5818f279d38ef56d682c","e2b6c1237496328b2d3ebea48fbaa9c82c51bfdce47afc4f6003422f14cfafad","d454863b6e7022253e0d60c1051defee04d65d9de7f5c5a11e2b84e33909fe4b","bc71c29d055581143051f3a90604c52c368ee2ee97e3e66a168a24c753ed5a60","363a8db8015eaf382dd76f42989a3d6165edfc0e1fca60d77db0ac2b79241426","1202fbf37dbdfaf0faf85a0fafd4db2e0ff07b42a70806d0368ce8a36a8afec2","d1a49dba3e7721d1ce3de321c5dc40b5ba3b2d6316f7fc40d2f95df452334d96","2c143e4b22580d2879718195322d52c02461dc99f43846a99892692e4f81f078","096a1da32dbc90e00d67f1d1f0ae52db2e327102be4b60ee0faa8dccba81e684","7549a814a3e01a21cd235f43029ed0f4e3a2d5085224316376bb91a1779de313","57d40f1e6a5f377677409cd1875551883b7de268be69f942622244163ea89d01","2e761e410969234950ab430f9ca58b6ed417f1014c55fc73f638523fa5eec1d6","94c9d56b441f206fa84f13e8022bd0abae326f6d8db96b08e2c1aafe3f90544e","0b5fa0c440935532611416f9a923f9278601d600e10cc3feaa55da332f50f6ac","8a0b458916a1fe3aeb3cb7d118bf191ff1e9aec2d26177660e64241d677db1e0","bf12ca57a5d03135c31d3f88c269740c7d2658664f15d6495c219b1bb23a99da","9c40be3c5a7920b744d14112ff3168ab5e5609699b8c1d91ecb709ac168324a5","cb28f2fc4172aa0541ba7bf189603f96897a951a46c4be3d91acf9de9a1710e8","6994c5b35689135e820f563d5763e3336930ffa439d895a3ec27025702ccedfd","91dc8b7c4593713c8aeff12732e13f9d1eb94f5caee9a1496660f831f465835d","1bb2c6539020bcac5f3e2983a84a6e0076d68df0167d99a29bae9fc11e3ea691","e4b0ad22784b73f2e6bcf955628e6dbb114bae5b003d40b1ee19356e18daad7a","df45b75ada5c8beceb3e913364c7a3729011dc172b68adf5189d4fae5625ad7d","97b2a12f44fb5a8efd00ab46d37d6637167746c7c0d88c5b5728a34aa3b663a5","2c52dbe7f60e8b2887d17877c1b04677f1d945b18b4fb3e7befbd1489de51e83","f3bd3b4bd312efbff3978a3fd9952e2eadeacc7d01cbd1bc01e72786e502aa16","95b063b28e6ed861e34899447c68932aa51b840edaf7cda213ac61920766271c","4710c48d307d5ccdbea5c12e20c0ba27870411d86ad563918d4c0aeb0fce3b57","c5880f64e301e74076d017ee185c9a528e5a68ed93f305fbf6d7618b7d21c29f","b97b7560517f2f4a070415909c98ddcb1e1d8f3346db990d496856fcdfcde648","15e2f96f7a8e64937eb0624b04513a9fed7f7c71aa7875208ee9e31958588624","6f5867d484ac5f717347328137c1a35563380e2c1d8e1d38beb8767c90bb5705","218e1b7c38cd5b9af46b904a728f0cc15828d9290d9adc6a5fc220f6069df988","88b74310f700fd92c9d3f11626878f3664449dd7dc007115a41cf746a9757e1c","3407d5883afea5c8fac9c3a74fedec806913b960644117e9710a239d85185fe1","7a028e36ec10c5bb3ee2e21fc938f1a44aa1b7af9981eff947da64f421b99445","6c056acd7733f0c09d1c3109ea627677dbf0eb260ef79f2797d588d85a8af1aa","ebe4587bd35138be18fec2050ffe7eed63d642fa0b674bb07e92f919fabcdea8","5d1d8f471bfda5e91090380b191a1e4d44911cf0bb51f69ce61632ec1a6a7399","0b35ba65af6e6196d22ee4a184f42512b7af1b4489b4fc5dbe9dd6d36b8097d8","232aa18921769b316d6a022c776669ea28a0250a98223841e521d9c3d9920a22","394bc17919e4dbb56443f11a7cbf610b7b07384423f9725c14d990920367b06b","17830ef73e50e330c120038947bc61ef1725178b58b9564dd9dcac5b51a6ac0c","b054669f7056c4fdb7cdf764b1977917f40f820d7f33bbc1f6b616e46b531ad6","1409e4c2241622af1a067634caff699d7d03adb5e8fd401c3f11d07214c49ec2","eae212ef0acce305594fb9cba149892dd9945cb58c0f72d0051557804b8a1af5","ccc9538f2696fa6720ccb26c05b9545e1a6236139670a9c919047aa6459456ef","e3d762cc49c25e02cd10873d944e12339185883485eca1b40e9cc0d0e063be63","437597745a84ace9638ed90cbff9abf5229131dc1d69ebfc6b19e0009577eb22","b4a7210846055640fdccdf888dc7ba266cc82549fc95ab05cdfff7cc9dd65bf1","4ff816bca793da4d9874123906772ef225619980908e25fd5d40475e12651be0","1fd68353565ef4a5cc3241c0ef3a1ec4b33b17d60c76a78e0e7c05a73754e261","5765852c2905e4328a2ad6dd4f478d5554d3e760c510c3a600a6284d7e4df62c","cf93fb9208a01c80f0fad245c4360356e5de6c2384b7641acf0b9cc2f5c42448","336398b0efaf964124e636a9b29c4edd5870aee79ac64bf87be58a9d66b7c048","571bc65ec37ba124e762bb822e14a2b8502dc684e356be8feaccbd6b9cadd023","2bbbefc1235500bdb5091f240dc8cba861a95342272f7d11b7574a0d2ef4f85e","7cd455fc4c4818f19263d73b29c59f3fb5fd54b45a6ab83ca3eb3661281db56b","1c6b9b5501774a2ece6574be8e26092800e3f1f836f8c179b4f9fdd271a620f8","0929ec89582904044a56ca8220114b7256450a197da22eb5c9b630be69a41372","9ac28b8b27ffcebc23b3e4b1757a296067080482d3fbc48c128d0bb37010baf0","dac56ed47ddc0dc90774416f9394429d7ede9e3af41ddc80fd8d94f8f4411b2e","0e05f91083b26e1f27be17a2f1fe044589ca71fbad924dd9e63ac4b668f3a1e3","111b4ee5a1f5339ff2455a2d3fd3c690f08b3f1593d8f664258e64658b7a1ea0","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","6ac6f24aff52e62c3950461aa17eab26e3a156927858e6b654baef0058b4cd1e",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"da66c1b3e50ef9908e31ce7a281b137b2db41423c2b143c62524f97a536a53d9","3fb060fe722e08fe7c32cfb83f630c5211b1d08ef702577bde42837bc9994958","d0e548b52ce2a55820b470ad9c2d66e2855fb3e9dea936fc29b4d4a63bb8fa54","5b402d6c32c733bf8065b8abc34904fffcfe5b94b0e1b99e63a34f450d87faba","218d40ca9941513cd8a798d81ba7b4d348db943492f7f6db7687a79cd16b5533","46971bf04e56b8de7c9c74bba27b54f5f4a78873b6cbf0682592d0693c2acb25","54570339e5e91d8d8380dee2ab4014ffa88cdfd73ff0a20e4ec085d64d81cd78","311c45b5a2b6585a84306100bb514c919b01ee21de43efb1bb2aa6a98a2753db","fc94de52737bc8fb2b1290d6f22b5dfea3e50c8d547625781fa6a2ccd35c7242","c1b9873444fa0d27f70b65ef00c80d0e0a9e9bf277ef6b4522572e99c9c48ee9","15a95894e214753c1e2dc638670ac7c5a6d05d952b19ea3745767d239fe00789","5d82404561003f51fed07b961d061f702dfd379ef5f0f7927744a4fff21fbf64","c0a0a579f2a69a5600eec5da4d87f83a82cef0aa70cd4063e9040f95d879b96e","8ecbfacf281dbd929d3b5f09b4f96bf999a45a959e08501b07117256b1eeb659","968bc5962ea9834b383119f668c4cabd35ba7e4a2c5107fb2d38c8fa66f164be",{"version":"22a05089243a8f0fdfbfbc2d956dcf61872c5c973ecda5320a8f1e3a4dd90bfb","affectsGlobalScope":true},"9bb6e652f67b205e169436f76e1d8fd396bc9971dbec1a558eab3be406343e8c","6cb1ff661eb0cff9177c3b47e82abd0fe3122fc62f2bc0af432a8c4205ff3ec6","d4931bfce5c009c57f86bcd1039b3f0a5c5ef61d26a685f0abf77f20b18fc066","4bd4c71ed7c85138316133c98926c344916002fd572f52af1889961dad8d73c0","d0e3fc2ed7395634479edf269cc2b3e25d90b05ce08ddda1717282f9f3afecd0","8744338f1b9f91b6ca97ceb3bfb10babf4397ffe3c304b5ae4dc016f7c3fcde3","694291734f077ed109fdabbfee35995f7168b5d1af643bd6404eeabd7036aa01","7a0e19e0790605fc701443298d9ffd1dbf8fc2cd94ddfbe9a05c578a4228e5c0","4012af9177a7bb1715a569cc54565b906e5c087a97067abbcf9f75f7f9a476dc","9be3b21edf891a0ec1d8caa0da81816162f4fa5376a7652e0ec3154df6433a08","e544e87f21a6afb7a4e1196a991fd5d235d6df3b8c04ca6df0bc5f85f3aa4f5b","19910d826b4901606d47b306cd70ace2960eeb2ca2cb5e57acc81b42eedbfbcd","d48721b66317440af7e3257b38e144adf76953419a4a4db1fb60f743eb7c9b92","a71d8fe039f1b2c852618ef0b6971561ca4626fb8b30abbf6d238441d47aa6a4","baebdb5ba48a482240d2ecf8497a432aba8ca37d8930cc618c4d3b5d12ceefae","9ce316b892b5134f715b4f7afd71c06384cf9af9a69009cc9566b325a095e592","7ebd9f1b92a89f2c5998bf3e82e7af635ff5de2e3868d918f1f172e89511fae0","1d652f66027b28891fbde5c4947757333f9af4609dfa3e4be84c392c2ce0edc2",{"version":"c34297a26fdf8d47f98aeb755e0e6a6fbd935d0e347979f63d4cb9a5abf14140","affectsGlobalScope":true},"0a3f0bdec21726a138d8202f5428adfe962df1e7259a41d68c109d22f6e18672","fef62bed109b31722160fabb598f61308506f9b7f40e60b3746ae01e3a3dc18b",{"version":"c81679572dcb2188e18113641e0a8914c7cf06582d1c9429a9a5bf1f72a31aa6","affectsGlobalScope":true},"60daaa6b5dfacd7813a9cf22e1ca5860217f36e70dfcf2fc28c049a7305076e1","b203234dcc09962eadae1146518df97f0768783913616ece5fd1f7f13d6f1361","74a696e2d8acb105f173f536ede57df87f10f1811879c6537cd40718156e4809","bfa3213963e67340227e92bbfb9ae68bc9945e505818e9fd3fb1b207bc8ec89a",{"version":"67893347ea02fa7f9dac48c06155eb469725bd9bf44e2b108604c58d07d13780","affectsGlobalScope":true},"eed40411368d686759c235bd0ba8300c6f4c13d5d1ebaf05a475332c946c4d4f",{"version":"bf20e597b39dc2e7dddbe50af7e58adafc0e25add218d074cc72d3875ecc5a31","affectsGlobalScope":true},"04717c0205adfeb76d54344adbf1ff2e8e09ddf52ecc6e15b1ca16a07a767106","05cfea0488751015b0b85911b6cdcde7c6cebdd9b8cada1ec0b5c1736357a552","6d1f118cfbf15c813f578cf6b87da76d075698bf7db964cb7c3d75f0309652f7","74a8a08e5d642a108ae7b23e72bded7b9d784c665458affdfb1770c1b19bcdd1","a9e5489311de854cb96bfcf5eaf969c9b322c658e3575f30e03180e4d4ca3994","f8c86fcbfb0a1e69a0ed28d3249cc33c312fa23a39c17e15cbbcc539bdcdc303","7179b6924a816d72bf206803d8cdc27ccc14f02f2d4f4145d5183eb083f5bf17","39d2d450df6efbf38585fd316f18922c8ac3fdfd4c3fc412d0bee34e2bc86378","7470dedadf72566f57f46fa8a8950afe388a4e90935b4e4b3d33add9a611929d","90feb2c17c1fd53720e1dd8738c6660aa14402394bb30caed6f2a7cdd54fea40","dd1de0adb4b83a38b95e591363b76b3d988bca5cb7afb9f2eeb2d0fdf4bc1a0b","0717c7fa97bf0ad0c52915467abb3a1152483a1f45d44a1e6849849db146264a","7233cda8015a750046d8921c2b3aaf976474307018f9359fa4167d662e20f3b8","b1394f7ab5f751b560f579f8e1ee680752d9a0a64ad0746caaa9a98d57e322a2","4c7c705eaf7f23d2e640318a21cd24a77b00fe5cb6fa8c9f1d91602190666b50","0465ef749edb59477556c7ababc71d76d643c5c6be7c9be96e21907e3efe0a24","acbf442f42e4318b5fea0e1ce1ca9a290eb01e3e15945c1e2f0b67e3f3fdf541","a0667520a6521c12128fc28cbd5b2af58eef11c5b2a7441e0f0d47f50bf6c8e3","820c26194ad4089bc503b02bbedbd86a865e9c8a05c58ef88c8d19d9c019712a","eda22dbab152e3579ee541522ba2ddc8e24e32fd7535b913709848f16c517caa","6778cdeced9eb23210b26b801cd757b03c052b7738628475acad7c7a3e94c20f","0dcf4c2bf1bb547e2ae5b8dce4656a56fbd15e3401ff5236ea0b93b6c60f9249","9917d466f5b05c616c35c35a778464ae4ec15e00bfce90098743f448fc063d54","d375de88ab19f6c105a65fc89eca1ae782362c5c395283b0c85ef39c7b835dfe","025eb503355f4bbe3e3fecc0bd1a72ecaa9cda73db6e0ecc657779d4172695f2","7b3c1d688dcb8645b5a6c37bce5b047da92b4c298ed8709e03e987e0efb035b1","00096d29ccab72a72092cca31fb92d78b92880bddc53e5904149d21e76648c48",{"version":"87e9ab1e4466fb88c90b179130baaab80d91dd1644de2eb6512c79b24ec11216","affectsGlobalScope":true},"024fea9ee598cfe747f18340ad74e4ea428fc2a7988250ff9fcfce5673b7d422","95ff8a2ebfc0b8b9613faf8d9c948dcc6bf8d5c0052a2d4ae21cacf6cdd28cb9","147cb5b590b77c8c58e4ef0af1ff11ee90ee2b34262816df0665b6ff8fd50aad","6e0575b628aedce5db38c17569e5c909beead07f9052fe7944fb8bfccc3db92e","fd4b34fa1af0c7ac73f9f827d0993dba20523b2cc3ca1e16eaaa2165f46d3172",{"version":"1bc2e3b2cbb2e253f9edb99661c7f48b8e54d8d0b822d29ff6f8ad9a91b4fb79","affectsGlobalScope":true},"5d8a54affc9a33b29830ad949f6e247314cbb7f85287231b07b66611bacf795f","0f81a53d54fd2b4ae2bf60067d616de99884bda21cb5784d942089d52319fb97","7b542379501867f7d2418681fbea38f75c756c2dd67e00e14ab1e125ae604095","29dca1b5f0cac95b675f86c7846f9d587ed47cc46609dd00d152bcb37683b069","a616e1b4eed03c1feb2a6fba721e5cbcb9c23cbe29c1858949a361f80719c0e8","48ba49f8bfce8c08ad1e7e54f0b85da9db7317ca76835d1c2640567e3fbd50c6","87c9e26bfe2b4d19455ae393b5d41bda5e55d1d661957440366197af880439e7","1e53bfc4e9799bf34fae8724d3fb827c5a2af74e05f60e5347eb84907ce2fc43","66b7aa4316b2d1335ec70b9ad03cd32061a5acb768eb9ec951f95ab87174a01f","b095f9aa799b72c47fad5a04a96ee402b8e58bffb10256d2e918be66b9a33562","1047b2508272e9ef1722a86dafdfc13816cbbd5aaac416d1004ba788c2d1a45f","7dee73d4f7c100c6c7918f1679710618086082fe7bc893ef8b4c6fd4e2d284ca","a7e4200b892574ed4397942daf91f761270ace96ce354f39b44eab2f7ce3ef8a","b31310f83fbd3e640c8d78c53df76047c203f36b2a82252e38a45ffef4e12367","a34bdbc3be650aede70bd930d70f665cc189ccee24e197410c03844d3616a211","333e438d141bfad0807c7e4abac3951517bd0058007643c754c904f09819c1b4","4eb6d4e8d761829a7ede3925385decf38efc57c9e7f3ac25ba4f93f65727347d","d3953d5f505629d7740558a88ac1ad2b2a631f2f6b63a7fe47a903446f498d5b","4eb6d4e8d761829a7ede3925385decf38efc57c9e7f3ac25ba4f93f65727347d","4eb6d4e8d761829a7ede3925385decf38efc57c9e7f3ac25ba4f93f65727347d","3baf933c56375b02de8e2d959a001d2a8d64dacacfc4b4054ace4ccc186d482b","f85962b0c1328ca5d9e3137def5236bf71ca91e1c2953528816f7bf3b33c52f0","0834153c4e0b0e15562aa8317a39a846e034100fd05e9a542d47a958244bb38c","0946b931e443fe1d97ec8d4e4b3d04e0011f04d4f0d9ba19355c8572b056e5b9","0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"c2ab70bbc7a24c42a790890739dd8a0ba9d2e15038b40dff8163a97a5d148c00","affectsGlobalScope":true},"422dbb183fdced59425ca072c8bd09efaa77ce4e2ab928ec0d8a1ce062d2a45a",{"version":"712ba0d43b44d144dfd01593f61af6e2e21cfae83e834d297643e7973e55ed61","affectsGlobalScope":true},"1dab5ab6bcf11de47ab9db295df8c4f1d92ffa750e8f095e88c71ce4c3299628","f71f46ccd5a90566f0a37b25b23bc4684381ab2180bdf6733f4e6624474e1894",{"version":"54e65985a3ee3cec182e6a555e20974ea936fc8b8d1738c14e8ed8a42bd921d4","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","98a3ebfa494b46265634a73459050befba5da8fdc6ca0ef9b7269421780f4ff3","34e5de87d983bc6aefef8b17658556e3157003e8d9555d3cb098c6bef0b5fbc8","cc0b61316c4f37393f1f9595e93b673f4184e9d07f4c127165a490ec4a928668","f27371653aded82b2b160f7a7033fb4a5b1534b6f6081ef7be1468f0f15327d3","c762cd6754b13a461c54b59d0ae0ab7aeef3c292c6cf889873f786ee4d8e75c9","f4ea7d5df644785bd9fbf419930cbaec118f0d8b4160037d2339b8e23c059e79",{"version":"bfea28e6162ed21a0aeed181b623dcf250aa79abf49e24a6b7e012655af36d81","affectsGlobalScope":true},"7a5459efa09ea82088234e6533a203d528c594b01787fb90fba148885a36e8b6","ae97e20f2e10dbeec193d6a2f9cd9a367a1e293e7d6b33b68bacea166afd7792","10d4796a130577d57003a77b95d8723530bbec84718e364aa2129fa8ffba0378","ad41bb744149e92adb06eb953da195115620a3f2ad48e7d3ae04d10762dae197","bf73c576885408d4a176f44a9035d798827cc5020d58284cb18d7573430d9022","7ae078ca42a670445ae0c6a97c029cb83d143d62abd1730efb33f68f0b2c0e82",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"5d0a9ea09d990b5788f867f1c79d4878f86f7384cb7dab38eecbf22f9efd063d","12eea70b5e11e924bb0543aea5eadc16ced318aa26001b453b0d561c2fd0bd1e","08777cd9318d294646b121838574e1dd7acbb22c21a03df84e1f2c87b1ad47f2","08a90bcdc717df3d50a2ce178d966a8c353fd23e5c392fd3594a6e39d9bb6304",{"version":"4cd4cff679c9b3d9239fd7bf70293ca4594583767526916af8e5d5a47d0219c7","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","00fa7ce8bc8acc560dc341bbfdf37840a8c59e6a67c9bfa3fa5f36254df35db2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"3345c276cab0e76dda86c0fb79104ff915a4580ba0f3e440870e183b1baec476","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","e383ff72aabf294913f8c346f5da1445ae6ad525836d28efd52cbadc01a361a6","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7",{"version":"3a2da34079a2567161c1359316a32e712404b56566c45332ac9dcee015ecce9f","affectsGlobalScope":true},"28a2e7383fd898c386ffdcacedf0ec0845e5d1a86b5a43f25b86bc315f556b79","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"9cafe917bf667f1027b2bb62e2de454ecd2119c80873ad76fc41d941089753b8",{"version":"5f186a758a616c107c70e8918db4630d063bd782f22e6e0b17573b125765b40b","affectsGlobalScope":true}],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":false,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitOnError":true,"outDir":"./","rootDir":"..","sourceMap":true,"strict":true,"target":99,"useDefineForClassFields":false},"fileIdsList":[[74,379],[379],[50,379],[44,51,379],[50,73,379],[73,74,75,76,77,78,79,379],[44,379],[51,379],[44,51,59,379],[42,43,379],[295,296,379],[295,296,297,379],[50,296,298,299,379],[50,65,305,306,307,309,379],[50,310,379],[50,299,300,302,303,379],[50,304,379],[299,379],[296,301,379],[295,302,379],[235,242,379],[242,379],[235,242,272,273,379],[264,266,379],[272,379],[242,251,271,379],[267,379],[242,243,244,245,259,264,266,268,269,379],[243,244,379],[264,266,269,276,379],[264,266,269,274,379],[247,379],[237,264,379],[238,240,242,246,250,252,253,254,255,256,257,258,259,260,261,262,263,379],[237,265,379],[239,240,241,379],[246,252,253,379],[246,252,253,254,255,257,258,379],[237,246,247,248,249,252,253,254,255,257,379],[246,259,379],[238,246,379],[246,252,256,379],[246,251,252,379],[237,246,250,251,252,253,254,379],[237,246,379],[237,379],[236,238,379],[240,379],[237,238,240,379],[247,248,379],[206,207,379],[206,208,379],[232,379],[220,222,223,224,225,226,227,228,229,230,231,232,379],[220,221,223,224,225,226,227,228,229,230,231,232,379],[221,222,223,224,225,226,227,228,229,230,231,232,379],[220,221,222,224,225,226,227,228,229,230,231,232,379],[220,221,222,223,225,226,227,228,229,230,231,232,379],[220,221,222,223,224,226,227,228,229,230,231,232,379],[220,221,222,223,224,225,227,228,229,230,231,232,379],[220,221,222,223,224,225,226,228,229,230,231,232,379],[220,221,222,223,224,225,226,227,229,230,231,232,379],[220,221,222,223,224,225,226,227,228,230,231,232,379],[220,221,222,223,224,225,226,227,228,229,231,232,379],[220,221,222,223,224,225,226,227,228,229,230,232,379],[220,221,222,223,224,225,226,227,228,229,230,231,379],[336,379],[339,379],[340,345,379],[341,351,352,359,368,378,379],[341,342,351,359,379],[343,379],[344,345,352,360,379],[345,368,375,379],[346,348,351,359,379],[347,379],[348,349,379],[350,351,379],[351,379],[351,352,353,368,378,379],[351,352,353,368,379],[354,359,368,378,379],[351,352,354,355,359,368,375,378,379],[354,356,368,375,378,379],[336,337,338,339,340,341,342,343,344,345,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,380,381,382,383,384,385],[351,357,379],[358,378,379],[348,351,359,368,379],[360,379],[361,379],[339,362,379],[363,377,379,383],[364,379],[365,379],[351,366,379],[366,367,379,381],[351,368,369,370,379],[368,370,379],[368,369,379],[371,379],[372,379],[351,373,374,379],[373,374,379],[345,359,368,375,379],[376,379],[359,377,379],[340,354,365,378,379],[345,379],[368,379,380],[379,381],[379,382],[340,345,351,353,362,368,378,379,381,383],[368,379,384],[45,379],[97,98,99,100,101,102,103,105,106,107,109,110,379],[100,379],[89,100,379],[88,89,93,94,97,98,99,379],[88,89,93,100,104,379],[108,379],[93,96,379],[83,379],[96,379],[86,90,142,379],[88,89,93,94,379],[85,86,91,108,124,379],[138,179,379],[86,90,179,379],[85,86,379],[84,85,180,379],[84,379],[83,84,86,379],[84,86,87,379],[84,85,379],[86,139,140,379],[86,90,379],[83,84,86,87,379],[86,139,379],[140,379],[83,86,87,143,379],[149,150,379],[149,379],[151,379],[85,89,130,133,379],[138,379],[95,379],[88,89,93,379],[86,91,108,124,379],[84,85,89,93,185,379],[84,89,93,185,379],[84,91,187,379],[84,88,89,93,94,379],[185,379],[84,200,379],[84,201,379],[198,379],[84,131,199,379],[194,195,379],[84,89,93,192,194,195,196,379],[90,379],[84,89,93,192,379],[84,89,93,186,379],[85,138,158,379],[85,379],[88,89,93,94,156,379],[86,379],[89,138,164,168,379],[86,89,138,379],[166,379],[164,379],[168,379],[86,164,167,379],[84,108,164,168,169,173,379],[172,379],[84,164,168,172,379],[164,168,169,172,379],[88,89,93,94,161,379],[90,91,92,379],[83,123,379],[130,379],[85,130,379],[86,91,108,379],[83,84,86,87,88,89,90,91,92,93,94,96,104,108,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,150,151,152,153,154,155,157,158,159,160,162,163,164,165,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,188,189,190,191,193,197,201,202,203,379],[44,48,379],[48,379],[47,48,379],[46,47,379],[52,53,54,55,56,57,58,59,60,379],[308,379],[44,48,49,379],[312,379],[313,314,315,316,379],[50,312,379],[48,50,379],[41,62,63,64,71,72,81,82,205,216,218,219,234,278,289,290,291,292,293,294,318,379],[41,379],[41,50,61,80,325,326,379],[41,80,325,379],[41,50,61,62,379],[41,50,61,379],[41,50,61,62,72,80,379],[41,50,61,62,70,204,379],[40,41,50,61,62,206,207,208,215,379],[41,50,61,62,234,270,275,277,379],[41,50,61,62,218,233,379],[41,50,61,62,217,379],[41,50,61,65,70,379],[41,50,61,62,311,317,379],[41,50,61,62,216,379],[41,50,61,62,65,215,288,379],[41,50,61,62,218,379],[41,50,61,62,65,379],[41,50,61,62,65,218,270,277,379],[41,50,61,218,379],[41,50,61,62,65,70,379],[41,50,379],[66,67,68,69,379],[48,50,65,66,379],[48,50,66,379],[48,50,68,379],[209,210,211,212,213,214,379],[279,280,281,282,283,284,285,286,287,379]],"referencedMap":[[78,1],[79,2],[75,2],[76,3],[77,4],[73,1],[74,5],[80,6],[42,2],[51,7],[52,8],[55,4],[53,4],[57,4],[60,9],[59,2],[58,4],[56,4],[54,8],[43,2],[44,10],[297,11],[295,2],[298,12],[296,2],[306,2],[300,13],[299,2],[310,14],[311,15],[65,3],[304,16],[305,17],[307,18],[302,19],[303,20],[301,2],[235,2],[243,21],[244,22],[245,2],[274,23],[267,24],[273,25],[272,26],[271,2],[268,27],[270,28],[276,29],[277,30],[275,31],[237,2],[248,32],[265,33],[264,34],[266,35],[242,36],[261,37],[263,38],[258,39],[260,40],[252,41],[257,42],[253,43],[255,44],[254,45],[236,2],[238,46],[251,2],[240,46],[239,47],[241,48],[259,49],[269,2],[246,2],[250,2],[247,2],[262,2],[249,50],[256,46],[217,2],[208,51],[207,52],[206,2],[233,53],[221,54],[222,55],[220,56],[223,57],[224,58],[225,59],[226,60],[227,61],[228,62],[229,63],[230,64],[231,65],[232,66],[387,2],[336,67],[337,67],[339,68],[340,69],[341,70],[342,71],[343,72],[344,73],[345,74],[346,75],[347,76],[348,77],[349,77],[350,78],[351,79],[352,80],[353,81],[338,2],[385,2],[354,82],[355,83],[356,84],[386,85],[357,86],[358,87],[359,88],[360,89],[361,90],[362,91],[363,92],[364,93],[365,94],[366,95],[367,96],[368,97],[370,98],[369,99],[371,100],[372,101],[373,102],[374,103],[375,104],[376,105],[377,106],[378,107],[379,108],[380,109],[381,110],[382,111],[383,112],[384,113],[46,114],[45,2],[111,115],[101,116],[102,117],[100,118],[103,116],[105,119],[106,116],[107,116],[109,120],[97,121],[110,122],[98,2],[99,2],[112,123],[113,123],[179,124],[177,125],[178,126],[183,127],[184,128],[180,129],[181,130],[182,131],[91,2],[87,132],[88,133],[114,123],[84,2],[86,134],[137,2],[130,2],[138,2],[141,135],[147,2],[148,136],[142,136],[143,137],[140,138],[144,139],[145,140],[139,2],[149,2],[151,141],[150,142],[152,143],[153,143],[146,144],[154,125],[155,145],[89,2],[108,2],[96,146],[115,123],[116,123],[117,123],[123,122],[83,2],[156,147],[104,125],[125,148],[118,123],[186,149],[189,150],[191,150],[188,151],[190,150],[203,150],[185,152],[192,153],[194,2],[201,154],[202,155],[199,156],[198,2],[200,157],[196,158],[197,159],[195,160],[193,161],[187,162],[159,163],[160,164],[157,165],[158,2],[126,122],[171,166],[170,167],[161,168],[166,2],[167,169],[164,2],[165,170],[169,171],[168,172],[172,2],[174,173],[176,174],[175,175],[173,176],[162,177],[163,148],[94,147],[119,123],[120,123],[93,178],[92,2],[90,164],[127,160],[128,179],[121,123],[134,164],[133,180],[136,2],[135,180],[131,181],[132,180],[129,2],[124,182],[122,123],[85,2],[204,183],[312,2],[49,184],[47,185],[308,186],[48,187],[61,188],[309,189],[50,190],[95,2],[41,2],[8,2],[10,2],[9,2],[2,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[3,2],[4,2],[22,2],[19,2],[20,2],[21,2],[23,2],[24,2],[25,2],[5,2],[26,2],[27,2],[28,2],[29,2],[6,2],[30,2],[31,2],[32,2],[33,2],[7,2],[38,2],[34,2],[35,2],[36,2],[37,2],[1,2],[39,2],[313,191],[317,192],[314,193],[316,194],[315,194],[40,2],[319,195],[325,196],[327,197],[326,198],[328,196],[329,196],[330,196],[331,196],[63,199],[64,199],[62,200],[81,201],[72,199],[205,202],[216,203],[278,204],[234,205],[218,206],[320,207],[318,208],[321,209],[289,210],[290,210],[332,200],[333,200],[334,200],[219,211],[322,199],[323,199],[294,199],[324,212],[82,199],[293,213],[292,214],[291,211],[71,215],[335,216],[70,217],[67,218],[68,219],[69,220],[66,194],[213,2],[214,3],[209,3],[215,221],[210,3],[211,3],[212,3],[287,2],[281,2],[280,2],[284,2],[288,222],[282,2],[285,2],[286,2],[279,2],[283,2]],"exportedModulesMap":[[78,1],[79,2],[75,2],[76,3],[77,4],[73,1],[74,5],[80,6],[42,2],[51,7],[52,8],[55,4],[53,4],[57,4],[60,9],[59,2],[58,4],[56,4],[54,8],[43,2],[44,10],[297,11],[295,2],[298,12],[296,2],[306,2],[300,13],[299,2],[310,14],[311,15],[65,3],[304,16],[305,17],[307,18],[302,19],[303,20],[301,2],[235,2],[243,21],[244,22],[245,2],[274,23],[267,24],[273,25],[272,26],[271,2],[268,27],[270,28],[276,29],[277,30],[275,31],[237,2],[248,32],[265,33],[264,34],[266,35],[242,36],[261,37],[263,38],[258,39],[260,40],[252,41],[257,42],[253,43],[255,44],[254,45],[236,2],[238,46],[251,2],[240,46],[239,47],[241,48],[259,49],[269,2],[246,2],[250,2],[247,2],[262,2],[249,50],[256,46],[217,2],[208,51],[207,52],[206,2],[233,53],[221,54],[222,55],[220,56],[223,57],[224,58],[225,59],[226,60],[227,61],[228,62],[229,63],[230,64],[231,65],[232,66],[387,2],[336,67],[337,67],[339,68],[340,69],[341,70],[342,71],[343,72],[344,73],[345,74],[346,75],[347,76],[348,77],[349,77],[350,78],[351,79],[352,80],[353,81],[338,2],[385,2],[354,82],[355,83],[356,84],[386,85],[357,86],[358,87],[359,88],[360,89],[361,90],[362,91],[363,92],[364,93],[365,94],[366,95],[367,96],[368,97],[370,98],[369,99],[371,100],[372,101],[373,102],[374,103],[375,104],[376,105],[377,106],[378,107],[379,108],[380,109],[381,110],[382,111],[383,112],[384,113],[46,114],[45,2],[111,115],[101,116],[102,117],[100,118],[103,116],[105,119],[106,116],[107,116],[109,120],[97,121],[110,122],[98,2],[99,2],[112,123],[113,123],[179,124],[177,125],[178,126],[183,127],[184,128],[180,129],[181,130],[182,131],[91,2],[87,132],[88,133],[114,123],[84,2],[86,134],[137,2],[130,2],[138,2],[141,135],[147,2],[148,136],[142,136],[143,137],[140,138],[144,139],[145,140],[139,2],[149,2],[151,141],[150,142],[152,143],[153,143],[146,144],[154,125],[155,145],[89,2],[108,2],[96,146],[115,123],[116,123],[117,123],[123,122],[83,2],[156,147],[104,125],[125,148],[118,123],[186,149],[189,150],[191,150],[188,151],[190,150],[203,150],[185,152],[192,153],[194,2],[201,154],[202,155],[199,156],[198,2],[200,157],[196,158],[197,159],[195,160],[193,161],[187,162],[159,163],[160,164],[157,165],[158,2],[126,122],[171,166],[170,167],[161,168],[166,2],[167,169],[164,2],[165,170],[169,171],[168,172],[172,2],[174,173],[176,174],[175,175],[173,176],[162,177],[163,148],[94,147],[119,123],[120,123],[93,178],[92,2],[90,164],[127,160],[128,179],[121,123],[134,164],[133,180],[136,2],[135,180],[131,181],[132,180],[129,2],[124,182],[122,123],[85,2],[204,183],[312,2],[49,184],[47,185],[308,186],[48,187],[61,188],[309,189],[50,190],[95,2],[41,2],[8,2],[10,2],[9,2],[2,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[3,2],[4,2],[22,2],[19,2],[20,2],[21,2],[23,2],[24,2],[25,2],[5,2],[26,2],[27,2],[28,2],[29,2],[6,2],[30,2],[31,2],[32,2],[33,2],[7,2],[38,2],[34,2],[35,2],[36,2],[37,2],[1,2],[39,2],[313,191],[317,192],[314,193],[316,194],[315,194],[40,2],[319,195],[325,196],[327,197],[326,198],[328,196],[329,196],[330,196],[331,196],[63,199],[64,199],[62,200],[81,201],[72,199],[205,202],[216,203],[278,204],[234,205],[218,206],[320,207],[318,208],[321,209],[289,210],[290,210],[332,200],[333,200],[334,200],[219,211],[322,199],[323,199],[294,199],[324,212],[82,199],[293,213],[292,214],[291,211],[71,215],[335,216],[70,217],[67,218],[68,219],[69,220],[66,194],[213,2],[214,3],[209,3],[215,221],[210,3],[211,3],[212,3],[287,2],[281,2],[280,2],[284,2],[288,222],[282,2],[285,2],[286,2],[279,2],[283,2]],"semanticDiagnosticsPerFile":[78,79,75,76,77,73,74,80,42,51,52,55,53,57,60,59,58,56,54,43,44,297,295,298,296,306,300,299,310,311,65,304,305,307,302,303,301,235,243,244,245,274,267,273,272,271,268,270,276,277,275,237,248,265,264,266,242,261,263,258,260,252,257,253,255,254,236,238,251,240,239,241,259,269,246,250,247,262,249,256,217,208,207,206,233,221,222,220,223,224,225,226,227,228,229,230,231,232,387,336,337,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,338,385,354,355,356,386,357,358,359,360,361,362,363,364,365,366,367,368,370,369,371,372,373,374,375,376,377,378,379,380,381,382,383,384,46,45,111,101,102,100,103,105,106,107,109,97,110,98,99,112,113,179,177,178,183,184,180,181,182,91,87,88,114,84,86,137,130,138,141,147,148,142,143,140,144,145,139,149,151,150,152,153,146,154,155,89,108,96,115,116,117,123,83,156,104,125,118,186,189,191,188,190,203,185,192,194,201,202,199,198,200,196,197,195,193,187,159,160,157,158,126,171,170,161,166,167,164,165,169,168,172,174,176,175,173,162,163,94,119,120,93,92,90,127,128,121,134,133,136,135,131,132,129,124,122,85,204,312,49,47,308,48,61,309,50,95,41,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,30,31,32,33,7,38,34,35,36,37,1,39,313,317,314,316,315,40,319,325,327,326,328,329,330,331,63,64,62,81,72,205,216,278,234,218,320,318,321,289,290,332,333,334,219,322,323,294,324,82,293,292,291,71,335,70,67,68,69,66,213,214,209,215,210,211,212,287,281,280,284,288,282,285,286,279,283]},"version":"4.6.2"}
|
1
|
+
{"program":{"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.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.es2020.bigint.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.esnext.intl.d.ts","../@types/global/index.d.ts","../../../node_modules/tslib/tslib.d.ts","../../../node_modules/@lit/reactive-element/css-tag.d.ts","../../../node_modules/@lit/reactive-element/reactive-controller.d.ts","../../../node_modules/@lit/reactive-element/reactive-element.d.ts","../../../node_modules/@types/trusted-types/lib/index.d.ts","../../../node_modules/@types/trusted-types/index.d.ts","../../../node_modules/lit-html/directive.d.ts","../../../node_modules/lit-html/lit-html.d.ts","../../../node_modules/lit-element/lit-element.d.ts","../../../node_modules/lit/index.d.ts","../../../node_modules/@lit/reactive-element/decorators/base.d.ts","../../../node_modules/@lit/reactive-element/decorators/custom-element.d.ts","../../../node_modules/@lit/reactive-element/decorators/property.d.ts","../../../node_modules/@lit/reactive-element/decorators/state.d.ts","../../../node_modules/@lit/reactive-element/decorators/event-options.d.ts","../../../node_modules/@lit/reactive-element/decorators/query.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-all.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-async.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-assigned-nodes.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-assigned-elements.d.ts","../../../node_modules/lit/decorators.d.ts","../src/ox-form-field.ts","../src/ox-buttons-radio.ts","../src/ox-checkbox.ts","../../../node_modules/@material/mwc-icon/mwc-icon.d.ts","../../popup/dist/src/ox-popup.d.ts","../../popup/dist/src/ox-popup-list.d.ts","../../popup/dist/src/ox-popup-menu.d.ts","../../popup/dist/src/ox-popup-menuitem.d.ts","../../popup/dist/src/index.d.ts","../src/ox-select.ts","../src/ox-input-angle.ts","../../../node_modules/@lit/localize/internal/str-tag.d.ts","../../../node_modules/@lit/localize/internal/types.d.ts","../../../node_modules/@lit/localize/internal/locale-status-event.d.ts","../../../node_modules/@lit/localize/internal/localized-controller.d.ts","../../../node_modules/@lit/localize/internal/localized-decorator.d.ts","../../../node_modules/@lit/localize/init/runtime.d.ts","../../../node_modules/@lit/localize/init/transform.d.ts","../../../node_modules/@lit/localize/lit-localize.d.ts","../src/ox-input-3dish.ts","../src/ox-input-stack.ts","../../../node_modules/@zxing/library/esm/core/luminancesource.d.ts","../../../node_modules/@zxing/library/esm/core/common/bitarray.d.ts","../../../node_modules/@zxing/library/esm/customtypings.d.ts","../../../node_modules/@zxing/library/esm/core/common/bitmatrix.d.ts","../../../node_modules/@zxing/library/esm/core/binarizer.d.ts","../../../node_modules/@zxing/library/esm/core/binarybitmap.d.ts","../../../node_modules/@zxing/library/esm/core/decodehinttype.d.ts","../../../node_modules/@zxing/library/esm/core/resultpoint.d.ts","../../../node_modules/@zxing/library/esm/core/barcodeformat.d.ts","../../../node_modules/@zxing/library/esm/core/resultmetadatatype.d.ts","../../../node_modules/@zxing/library/esm/core/result.d.ts","../../../node_modules/@zxing/library/esm/core/reader.d.ts","../../../node_modules/ts-custom-error/dist/custom-error.d.ts","../../../node_modules/@zxing/library/esm/core/exception.d.ts","../../../node_modules/@zxing/library/esm/browser/decodecontinuouslycallback.d.ts","../../../node_modules/@zxing/library/esm/browser/htmlvisualmediaelement.d.ts","../../../node_modules/@zxing/library/esm/browser/videoinputdevice.d.ts","../../../node_modules/@zxing/library/esm/browser/browsercodereader.d.ts","../../../node_modules/@zxing/library/esm/browser/browserazteccodereader.d.ts","../../../node_modules/@zxing/library/esm/browser/browserbarcodereader.d.ts","../../../node_modules/@zxing/library/esm/browser/browserdatamatrixcodereader.d.ts","../../../node_modules/@zxing/library/esm/core/multiformatreader.d.ts","../../../node_modules/@zxing/library/esm/browser/browsermultiformatreader.d.ts","../../../node_modules/@zxing/library/esm/browser/browserpdf417reader.d.ts","../../../node_modules/@zxing/library/esm/browser/browserqrcodereader.d.ts","../../../node_modules/@zxing/library/esm/core/encodehinttype.d.ts","../../../node_modules/@zxing/library/esm/browser/browserqrcodesvgwriter.d.ts","../../../node_modules/@zxing/library/esm/browser/htmlcanvaselementluminancesource.d.ts","../../../node_modules/@zxing/library/esm/browser.d.ts","../../../node_modules/@zxing/library/esm/core/argumentexception.d.ts","../../../node_modules/@zxing/library/esm/core/arithmeticexception.d.ts","../../../node_modules/@zxing/library/esm/core/checksumexception.d.ts","../../../node_modules/@zxing/library/esm/core/formatexception.d.ts","../../../node_modules/@zxing/library/esm/core/illegalargumentexception.d.ts","../../../node_modules/@zxing/library/esm/core/illegalstateexception.d.ts","../../../node_modules/@zxing/library/esm/core/notfoundexception.d.ts","../../../node_modules/@zxing/library/esm/core/readerexception.d.ts","../../../node_modules/@zxing/library/esm/core/reedsolomonexception.d.ts","../../../node_modules/@zxing/library/esm/core/unsupportedoperationexception.d.ts","../../../node_modules/@zxing/library/esm/core/writerexception.d.ts","../../../node_modules/@zxing/library/esm/core/invertedluminancesource.d.ts","../../../node_modules/@zxing/library/esm/core/writer.d.ts","../../../node_modules/@zxing/library/esm/core/multiformatwriter.d.ts","../../../node_modules/@zxing/library/esm/core/planaryuvluminancesource.d.ts","../../../node_modules/@zxing/library/esm/core/resultpointcallback.d.ts","../../../node_modules/@zxing/library/esm/core/rgbluminancesource.d.ts","../../../node_modules/@zxing/library/esm/core/util/system.d.ts","../../../node_modules/@zxing/library/esm/core/common/characterseteci.d.ts","../../../node_modules/@zxing/library/esm/core/util/stringbuilder.d.ts","../../../node_modules/@zxing/library/esm/core/util/stringencoding.d.ts","../../../node_modules/@zxing/library/esm/core/util/charset.d.ts","../../../node_modules/@zxing/library/esm/core/util/arrays.d.ts","../../../node_modules/@zxing/library/esm/core/util/standardcharsets.d.ts","../../../node_modules/@zxing/library/esm/core/util/integer.d.ts","../../../node_modules/@zxing/library/esm/core/common/bitsource.d.ts","../../../node_modules/@zxing/library/esm/core/common/decoderresult.d.ts","../../../node_modules/@zxing/library/esm/core/common/perspectivetransform.d.ts","../../../node_modules/@zxing/library/esm/core/common/gridsampler.d.ts","../../../node_modules/@zxing/library/esm/core/common/defaultgridsampler.d.ts","../../../node_modules/@zxing/library/esm/core/common/detectorresult.d.ts","../../../node_modules/@zxing/library/esm/core/common/globalhistogrambinarizer.d.ts","../../../node_modules/@zxing/library/esm/core/common/gridsamplerinstance.d.ts","../../../node_modules/@zxing/library/esm/core/common/hybridbinarizer.d.ts","../../../node_modules/@zxing/library/esm/core/common/stringutils.d.ts","../../../node_modules/@zxing/library/esm/core/common/detector/mathutils.d.ts","../../../node_modules/@zxing/library/esm/core/common/detector/whiterectangledetector.d.ts","../../../node_modules/@zxing/library/esm/core/common/reedsolomon/abstractgenericgf.d.ts","../../../node_modules/@zxing/library/esm/core/common/reedsolomon/genericgfpoly.d.ts","../../../node_modules/@zxing/library/esm/core/common/reedsolomon/genericgf.d.ts","../../../node_modules/@zxing/library/esm/core/common/reedsolomon/reedsolomondecoder.d.ts","../../../node_modules/@zxing/library/esm/core/common/reedsolomon/reedsolomonencoder.d.ts","../../../node_modules/@zxing/library/esm/core/datamatrix/datamatrixreader.d.ts","../../../node_modules/@zxing/library/esm/core/datamatrix/decoder/decodedbitstreamparser.d.ts","../../../node_modules/@zxing/library/esm/core/multi/multiplebarcodereader.d.ts","../../../node_modules/@zxing/library/esm/core/pdf417/pdf417reader.d.ts","../../../node_modules/@zxing/library/esm/core/pdf417/pdf417resultmetadata.d.ts","../../../node_modules/@zxing/library/esm/core/pdf417/decoder/decodedbitstreamparser.d.ts","../../../node_modules/@zxing/library/esm/core/pdf417/decoder/ec/errorcorrection.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/decoder/decoder.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/qrcodereader.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/qrcodewriter.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/decoder/errorcorrectionlevel.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/decoder/formatinformation.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/decoder/ecb.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/decoder/ecblocks.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/decoder/version.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/decoder/mode.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/decoder/decodedbitstreamparser.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/decoder/datamask.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/encoder/bytematrix.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/encoder/qrcode.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/encoder/encoder.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/encoder/matrixutil.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/encoder/maskutil.d.ts","../../../node_modules/@zxing/library/esm/core/aztec/aztecreader.d.ts","../../../node_modules/@zxing/library/esm/core/aztec/aztecwriter.d.ts","../../../node_modules/@zxing/library/esm/core/aztec/aztecdetectorresult.d.ts","../../../node_modules/@zxing/library/esm/core/aztec/encoder/azteccode.d.ts","../../../node_modules/@zxing/library/esm/core/aztec/encoder/encoder.d.ts","../../../node_modules/@zxing/library/esm/core/aztec/encoder/highlevelencoder.d.ts","../../../node_modules/@zxing/library/esm/core/aztec/decoder/decoder.d.ts","../../../node_modules/@zxing/library/esm/core/aztec/detector/detector.d.ts","../../../node_modules/@zxing/library/esm/core/oned/onedreader.d.ts","../../../node_modules/@zxing/library/esm/core/oned/abstractupceanreader.d.ts","../../../node_modules/@zxing/library/esm/core/oned/upceanreader.d.ts","../../../node_modules/@zxing/library/esm/core/oned/ean13reader.d.ts","../../../node_modules/@zxing/library/esm/core/oned/code128reader.d.ts","../../../node_modules/@zxing/library/esm/core/oned/itfreader.d.ts","../../../node_modules/@zxing/library/esm/core/oned/code39reader.d.ts","../../../node_modules/@zxing/library/esm/core/oned/rss/abstractrssreader.d.ts","../../../node_modules/@zxing/library/esm/core/oned/rss/rss14reader.d.ts","../../../node_modules/@zxing/library/esm/core/oned/rss/datacharacter.d.ts","../../../node_modules/@zxing/library/esm/core/oned/rss/finderpattern.d.ts","../../../node_modules/@zxing/library/esm/core/oned/rss/expanded/expandedpair.d.ts","../../../node_modules/@zxing/library/esm/core/oned/rss/expanded/rssexpandedreader.d.ts","../../../node_modules/@zxing/library/esm/core/oned/rss/expanded/decoders/decodedobject.d.ts","../../../node_modules/@zxing/library/esm/core/oned/rss/expanded/decoders/decodedinformation.d.ts","../../../node_modules/@zxing/library/esm/core/oned/rss/expanded/decoders/generalappiddecoder.d.ts","../../../node_modules/@zxing/library/esm/core/oned/rss/expanded/decoders/abstractexpandeddecoder.d.ts","../../../node_modules/@zxing/library/esm/core/oned/rss/expanded/decoders/abstractexpandeddecodercomplement.d.ts","../../../node_modules/@zxing/library/esm/core/oned/multiformatonedreader.d.ts","../../../node_modules/@zxing/library/esm/index.d.ts","../src/ox-input-barcode.ts","../../../node_modules/@types/codemirror/index.d.ts","../../../node_modules/@types/codemirror/addon/display/fullscreen.d.ts","../../../node_modules/@types/codemirror/addon/display/autorefresh.d.ts","../../styles/dist/src/headroom-styles.d.ts","../../styles/dist/src/scrollbar-styles.d.ts","../../styles/dist/src/spinner-styles.d.ts","../../styles/dist/src/tooltip-styles.d.ts","../../styles/dist/src/common-button-styles.d.ts","../../styles/dist/src/common-grist-styles.d.ts","../../styles/dist/src/index.d.ts","../src/ox-input-code.ts","../../../node_modules/@thebespokepixel/es-tinycolor/types/index.d.ts","../src/ox-input-color.ts","../src/ox-input-multiple-colors.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/isequal.d.ts","../src/ox-input-color-stops.ts","../../../node_modules/@polymer/iron-a11y-keys-behavior/iron-a11y-keys-behavior.d.ts","../../../node_modules/@polymer/polymer/lib/utils/array-splice.d.ts","../../../node_modules/@polymer/polymer/interfaces.d.ts","../../../node_modules/@polymer/polymer/lib/utils/async.d.ts","../../../node_modules/@polymer/polymer/lib/utils/flattened-nodes-observer.d.ts","../../../node_modules/@polymer/polymer/lib/utils/debounce.d.ts","../../../node_modules/@polymer/polymer/lib/utils/flush.d.ts","../../../node_modules/@polymer/polymer/lib/legacy/polymer.dom.d.ts","../../../node_modules/@polymer/iron-behaviors/iron-button-state.d.ts","../../../node_modules/@polymer/iron-behaviors/iron-control-state.d.ts","../../../node_modules/@polymer/iron-form-element-behavior/iron-form-element-behavior.d.ts","../../../node_modules/@polymer/polymer/lib/utils/mixin.d.ts","../../../node_modules/@polymer/polymer/lib/utils/resolve-url.d.ts","../../../node_modules/@polymer/polymer/lib/elements/dom-module.d.ts","../../../node_modules/@polymer/polymer/lib/utils/style-gather.d.ts","../../../node_modules/@polymer/polymer/lib/utils/path.d.ts","../../../node_modules/@polymer/polymer/lib/utils/case-map.d.ts","../../../node_modules/@polymer/polymer/lib/mixins/properties-changed.d.ts","../../../node_modules/@polymer/polymer/lib/mixins/property-accessors.d.ts","../../../node_modules/@polymer/polymer/lib/mixins/template-stamp.d.ts","../../../node_modules/@polymer/polymer/lib/mixins/property-effects.d.ts","../../../node_modules/@polymer/polymer/lib/utils/telemetry.d.ts","../../../node_modules/@polymer/polymer/lib/mixins/properties-mixin.d.ts","../../../node_modules/@polymer/polymer/lib/mixins/element-mixin.d.ts","../../../node_modules/@polymer/polymer/lib/utils/gestures.d.ts","../../../node_modules/@polymer/polymer/lib/mixins/gesture-event-listeners.d.ts","../../../node_modules/@polymer/polymer/lib/mixins/dir-mixin.d.ts","../../../node_modules/@polymer/polymer/lib/utils/scope-subtree.d.ts","../../../node_modules/@polymer/polymer/lib/mixins/disable-upgrade-mixin.d.ts","../../../node_modules/@polymer/polymer/lib/legacy/legacy-element-mixin.d.ts","../../../node_modules/@polymer/polymer/lib/legacy/class.d.ts","../../../node_modules/@polymer/polymer/lib/legacy/polymer-fn.d.ts","../../../node_modules/@polymer/iron-meta/iron-meta.d.ts","../../../node_modules/@polymer/iron-validatable-behavior/iron-validatable-behavior.d.ts","../../../node_modules/@polymer/polymer/lib/utils/html-tag.d.ts","../../../node_modules/@polymer/paper-dropdown-menu/paper-dropdown-menu.d.ts","../../../node_modules/@polymer/iron-selector/iron-selection.d.ts","../../../node_modules/@polymer/iron-selector/iron-selectable.d.ts","../../../node_modules/@polymer/iron-selector/iron-multi-selectable.d.ts","../../../node_modules/@polymer/iron-menu-behavior/iron-menu-behavior.d.ts","../../../node_modules/@polymer/paper-listbox/paper-listbox.d.ts","../../../node_modules/@polymer/paper-item/paper-item-behavior.d.ts","../../../node_modules/@polymer/paper-item/paper-item.d.ts","../src/ox-input-color-gradient.ts","../../utils/dist/src/sleep.d.ts","../../utils/dist/src/file-drop-helper.d.ts","../../utils/dist/src/context-path.d.ts","../../utils/dist/src/os.d.ts","../../utils/dist/src/swipe-listener.d.ts","../../utils/dist/src/fullscreen.d.ts","../../utils/dist/src/parse-jwt.d.ts","../../utils/dist/src/password-pattern.d.ts","../../utils/dist/src/closest-element.d.ts","../../utils/dist/src/index.d.ts","../src/ox-input-file.ts","../src/ox-input-image.ts","../src/ox-input-value-ranges.ts","../src/ox-input-value-map.ts","../src/ox-input-table.ts","../src/ox-input-scene-component-id.ts","../../../node_modules/@material/base/foundation.d.ts","../../../node_modules/@material/base/types.d.ts","../../../node_modules/@material/base/component.d.ts","../../../node_modules/@material/base/index.d.ts","../../../node_modules/@material/mwc-base/utils.d.ts","../../../node_modules/@material/mwc-base/base-element.d.ts","../../../node_modules/@material/ripple/types.d.ts","../../../node_modules/@material/ripple/adapter.d.ts","../../../node_modules/@material/ripple/foundation.d.ts","../../../node_modules/@material/mwc-ripple/mwc-ripple-base.d.ts","../../../node_modules/@material/mwc-ripple/mwc-ripple.d.ts","../../../node_modules/@material/mwc-base/aria-property.d.ts","../../../node_modules/@material/mwc-ripple/ripple-handlers.d.ts","../../../node_modules/lit-html/directives/class-map.d.ts","../../../node_modules/lit/directives/class-map.d.ts","../../../node_modules/@material/mwc-button/mwc-button-base.d.ts","../../../node_modules/@material/mwc-button/mwc-button.d.ts","../../../node_modules/i18next/index.d.ts","../../i18n/dist/src/config.d.ts","../../i18n/dist/src/localize.d.ts","../../i18n/dist/src/ox-i18n.d.ts","../../i18n/dist/src/ox-i18n-selector.d.ts","../../i18n/dist/src/index.d.ts","../src/ox-input-crontab.ts","../src/ox-input-partition-keys.ts","../src/index.ts","../src/ox-input-container.ts","../src/ox-input-data.ts","../src/ox-input-options.ts","../src/ox-input-range.ts","../src/ox-input-search.ts","../src/locale/locale-codes.ts","../src/locale/localization.ts","../src/locale/locale-picker.ts","../src/locales/en.ts","../src/locales/ko.ts","../src/locales/ms.ts","../src/locales/zh.ts","../src/ox-input-layout/ox-input-card-layout.ts","../src/ox-input-layout/ox-input-grid-layout.ts","../src/ox-input-layout/ox-input-layout.ts","../stories/index.stories.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/globals.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/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.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/readline.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.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/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/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/mocha/index.d.ts"],"fileInfos":[{"version":"3ac1b83264055b28c0165688fda6dfcc39001e9e7828f649299101c23ad0a0c3","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"72704b10d97777e15f1a581b73f88273037ef752d2e50b72287bd0a90af64fe6","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"5075b36ab861c8c0c45377cb8c96270d7c65f0eeaf105d53fac6850da61f1027","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"b5c159239c33d1bcb3d7ca8d24cf9ba1b1579aab80e70fbb0029e374880f2470","12f4cfe2fe60b810c3174537bc2ddb20c1067b7768643d12cb1266fd183afb75","6e2c5a9358c2be6791713f778c3af2d3357b8665d881e22f50b3aa861a2a9717","1e5743b25a63fd34ffbae89adcbf248ee17db6ed08d90079ffa93803c3e80d2a","13bb750b495c48fd60d7b5e09f65d4a7b010ab7e09a8943a6d54511e7d184f84","2fcd2d22b1f30555e785105597cd8f57ed50300e213c4f1bbca6ae149f782c38",{"version":"bb4248c7f953233ac52332088fac897d62b82be07244e551d87c5049600b6cf7","affectsGlobalScope":true},"70f04c91d3186b1b10157157887fab664968fc9b88377785a5ee42750c202c6d","f690af1a7043e58fce8c672df5e1d1e27bad7459b81143af991db7c5427a0785","eba7cf33380cc3a3cf614faf67300e14d0bdff9ea6c5cd6f4b040b1756a48ab1","f07a77a7fb1d49aa2b61cb68bf712a083487acd7130d20223a83de03af0c257d","97c58f6db61d45712d91d2260994817ae2b568bbb37cc280013079b6b5d2232d","ac388c7c7a262213a3700451bc921e382a93fb27c0252c34ccf03540b4ce044b","1da789e534bc558808021dd64abf33a91a68e422bbf28aeec236bd74df640401","fb0107c83e2e0e75b77dacd0c3c6c3ab6844e98dce2a8f858c6f0a57c12136a6","0a478dcb6e6bd8a5d871165659c79cee7b8c3b7a87289118d22e1a04d171e252","a25d1e52291791819032826af5c52987e16ffdb96e8bb69f7f1790f5ab080be6","d660961abada6b5030461f3322ef3a2e1d9fec74167574f8b590a7796cf90a72","707b4eae3d469b2f347d2083037151922f94c370a9456ebd5ac0a4fb7441c7e7","4bcb813ea56182beaaab1e8274524eb9f1449b0d8e79efc4a0399de09e43f816","c784eab1cf838d9d6527bce3d9f2d373145606666b68f7610291a7adf6e6bda9","f0380f581cb015778c0fe51e95b5b7f6dae237280654558469b2486c1572268a","4b5bc27818154a8a76974f7302c9a513c6bbb7bf1434058bdfe0de2289db9a6d","b56f1ca0eefb2bec05660ac3d9c61f853ddd749720a6360400c95ac8c8705979","994428e6399a9f041e750301737faf44246d47374ec5703ef64477d0565e9e08",{"version":"27b285e901600242883d62a5fff9f5d262c6fa128b6e6c6963f981f2630a957e","affectsGlobalScope":true},"b19e95136dd01ce850d7f05e05d594afecc4510fd1b44cdc049e4b7ce4d18e35","3105a6cf1565ddc046f897858c64065148cbcaa33034c232fc44fd469e0de67a","79be55362c82b8aa2f5dc063b51dbbc8f38f009d81c494aac4f671ff23fefb86","10cbee260a09cb62cc5516ea65aa7504f21ec98048a324e789d04d40d9057513","77b0b20b0aeafc78f8af2d66bf16a53b91312d6426f5413a574b978cc6edff34","2a404d8d2f06b572ee0d103996bbe621be1419dfe6a2f3c2ce49a0c2e3804bb7","ed3eaec34d14d1a2885ed3b0f38846472bff1ff1b3a48ed986f4526f8e694d8c","08bae564269612dc1909bdf7f747766c235b85641f6d156bccc9ee9876fb2435","459489899ec41b6dc4a6a8f80f55aae744cd76f6b6ad13a0acb19349c9bdf2f5",{"version":"6a7a3cf7102eaf8c5b67c2a92f8cc0ff6e1076a49b714a7f518d0d1b5ac85a40","affectsGlobalScope":true},"b49ff59927171643840b1349c9a0b39453e0613e69aa25d588c6c24ccb37fbe1","d7476e036a2936d4e5ec603a28c04645b2afa91e3c0ff98e326b884ed5a3fa73","775d6ac48d8fe78490aa60d2b356579822702bce7e70c88fc2452334c67504d4","9c75751d47aef509ebc0a58cb186c8e07c8ed2cd164a9902164cc5ae28bf0517","b48bf76c500cfcff3a39db7c8b649a7800eeacceb2a97e46a22abae3f1dc4de6","980efd024cebcdd799c58528fe3877c10ee7d7939ee394f6039b066a50bda237","3dfe4b1e3d9bd0902596cde89873e7cface012fe4e19a065fa57a1cc379e9a50","30b7784f26c990da2ab8e2b35c198b84dd1bcfc4ce1936d95baf8be825e44fc8","2aad701dc29df474848186eae9f7f6d68682cd30ccb14b50866e1cdc2deffded","6631d429758aec5beb47de0895a09b57b9a2bb0d3520d3f7e5674c33b886cb32","4b7b8571dbc6ac884882c910549ef6b507c9bf9e721ec4ae5bccb4cb565e7597","de2a52682e3a9ee3c61159a4a6fd74c9e0259692598f33d1d2174f5d8fb18276","ca968be2bebaec29feba08452a2293d0ad2f11b5e70833d99fc6a078844271ea","4363cfdc5eba70c1b06e88653e0a03705558f7f3880083aa639438ef01f367f1","c0b4317958ae42a4e276041687ab95a72668d790b8410939d9924d49776fea40","7664fc0355afe380fdb3c184848e79ef10958c6916305a50bceb06366f9e9019","22fa4f9d3a770310dfcc6c60310288326dfa31b39e32744d660e50a08ef7583f","7a2835f1d73db78aa311398798efbcf07b7029ac18252dfa321d50168f211452","8ded0efd0f64067da4812f14e9d7bb1ed44871c3b87d87564416d93073825f0d","79ba5dfa0abac7e3e7210eb2358f9e6117a46da02446cead1510f32c26eae02e","df5585be736dfb6b7a4f5ef08c5dd8c037858319da3313ed39609b7079980caa","83fd78d3184d150c32740a409c3b4acb1290199490a86f661b43b14ae9314b68","6bd387b615555ec847bcce6eade4de0c271b7b22b17d7e29b837011d4429e164","2effb5dfe6a54053aeb4c21bae08f457c9454b3473a1b65dd7c7a9ec064a1aa2","905d6e6887edf527d56dcda85ae92d065611fccf5c582f2d019123ddc0f2077f","75aa62429356fb3a8ff4c9ff0e9665c67b512351956857a3e1ade1d497e9c149","5ded77dd88437e5e3cb2e6e8c0bd636896e79ecbb4a9876678e3d0ab5e2ea54d","72a8e2f7864e44b864f9b991fcad0a4bc5fabb1aeaad3dc7ee520ccee4f2336e","a193a2944058607c6c094df6487399e4386059280940839af6cf62a634202810","cf3e138268e5bfaed81bf100500da5f257d6883a9e8a0febe431dcc9c128766e","1fe02733949b609bbf88523da8d24a5432b510b2ad0b47ae0c921d680f9f3785","74a0aecf46aa5c2aae9d42cfc0efda7f1e93677474e12471a5864230c6b187a1","96ef505aceedbf3ecfcf69829b4f57f27e3ce72ad6ebcaa05a1da88986b818b8","eec7434894f908a61867fa29b5fe563c14c313cbc35e517ada79f38b44234e37","52a9d9ae376b117459346f324e3c8ec04a0b1e702a000a2c80e9dbd9b43181a2","17b29959c0ac60d28af819d0d3d7106c9dfe5acefe5c820ea7145e5d27455702","49d95d1f1707e80483ae4a3313103a1d76a4d105f3b0e3cf410c474b7c5cc358","f369c01bc64fc7d8ce1751065c384df2f81a89deb224c24eabb4e8465ee6181d","c6bbc353e7bca0574458f0dcadfe84e56e48ec1d38475b4254c1d4619bfd47c1","4c90f3b801c6aec975c0497b9e9ff8ff1ad903fb74e6e8aaadb240dd85612bb8","d11f0b5dae80f2e5e02f34c4aa58650492ccb45651b6f83f10eaf10dfe565a65","49bc024e5a1fea90b26a1f41fd75982d9f68f40444b568a91ad1202691cd882d","4b2ea4e544b830a25240b3982d735fbd6f4da8ea7af4caee3906809cb0c892fb","e5029039ae5dd970ab70bd67cc03085f17420e89e365c684921e45cc2b7f9c0a","099d5cbe09f4ecd7529764502da2a91e819d48e1b8f53e3b9954dbf9fdcd2d67","521e4e920ab7109fea500cc2f9dd48457a30b46f574b35c52bc6bd2533cd902f","f24dc27c51a5dfcd6383f001099843ce5234dac65a8de5477b5bd43c68d789e7","d1b2ba9156610a5413143169dcdb67530665b4c97da01e849c4e39560a028d11","67d0899181e8542bb2408b0a4d4be47628290ba39e3510b00569891c6bef8105","1a51bc00ba287a98d010ba68dacf22e81e801c27d5f605dc53562d9db76e16db","5b71a4c0fa3233daf8025104788f9f6046859ddb0fb96beb59fc0ff9fb42c113","0438101968a30ea0799bf28609d56a45446268eb08a2606c737104b9a2e479c5","dfae624810dcaa58acf29dea53d0c4b0626e50822668b0f25b92769d0d4a0c11","159d5123c12f8ea94d929fca14851cd1cf625e2c5778119df4d167265b11addb","8cd5018ac1e7d47f19f3b56af074d2aadb80a3cc0cfd42f40419405c3131f405","a7e4a92ed0a90cbdc3f944fac43a367abc2713abaeca4a1b0ac84e35bedd702d","072caf3382317f29871e8c1f22e6620252ead6c3245e118c0953dabc5a3e79f0","0e6d04a687ffc80745939bef70f2964dd4699895aeae3cb8076a2ff18cde1c67","043d1f68840d7ad109fcea422c34e0096da930d820a2987a67bc8dec11387463","265b6fbbe296b6ace3e92eaee48813c809890f90eef7c389e44997e652c8a94f","09a6cf0a1646f4fe8956b5a9ed2334d5bce973d2f074abb61a39e09cd620399d","c3394d3bc25404895e11fba6517b477f992321aeadd20338cd541721af8e1684","329c0ab9af33a87e502c718b5301cb114a5547a1fc5d55597128adb9aec1e25e","69db0dfb6ec9dcba5a31b99bfc5da74b6d86fca50013cc15bb072c4c97acc4d6","188c2128b909024fd07ff82a308638b13eb02056454d6aec0094656f5b60b0ab","59e626908ec84b90ab62d7704f406739956afa6a124f37776a7fbf3d523d31af","3bf62235efe93ed4f9b18799351c890d7eee5d7ac118b33d5ec717070437fb86","aa02ea4ce88d834274306d2e8d72b6f2457777255c1de2a021a922540f3c201b","a2c581e82777c45b07521fb39e06e50681da78b927df93495313657b0a2abd49","a2ff4870a55c9dfa028c2f5e774f647594bd0a1036388c39562bd3a81eb08631","5f14ef223c9097662dd86d19dc13aa1772524f2689596df3d324b9a08099ad0c","303680856c75fdbc2d4616f29d6e5adfa9837c091119f85482cf0123d4688bd4","8ac1fb455c5f42a895c9d1b6a7ad53d6e72e8bd024a2376c7743914e6c3db1c5","e7fbfe161d7591aff2fac724dc3729d6f2c10a2368a1accc79619f56273c6d45","945c700e5c5283839f32fb02129ffa233843afdc7a31335225a622edaa4dcd29","374251a9579548076b559ae27d07e08c1fa150d7934fe9629cc649fee99751ef","a8b40e76e9b2870e9693abc3a52135e80c5c95b9bad4bb5c7e756cb68be0dee6","ef63d901eaee2e8c25fd006bd0ad13ff7821de4bc07de674ae5eee8748001451","247d025ea65b8d07f3f595af46f3e6d3c84bfe6c80f80ee77df1f22d814c132d","3fcb9d41be6137cf2c3684aef7d6ea8d934132644bf8044d0ebc24c680939e19","bd4db5efc9930a4eb2e9e6af8f55cba031045b7b6adc5818f279d38ef56d682c","e2b6c1237496328b2d3ebea48fbaa9c82c51bfdce47afc4f6003422f14cfafad","d454863b6e7022253e0d60c1051defee04d65d9de7f5c5a11e2b84e33909fe4b","bc71c29d055581143051f3a90604c52c368ee2ee97e3e66a168a24c753ed5a60","363a8db8015eaf382dd76f42989a3d6165edfc0e1fca60d77db0ac2b79241426","1202fbf37dbdfaf0faf85a0fafd4db2e0ff07b42a70806d0368ce8a36a8afec2","d1a49dba3e7721d1ce3de321c5dc40b5ba3b2d6316f7fc40d2f95df452334d96","2c143e4b22580d2879718195322d52c02461dc99f43846a99892692e4f81f078","096a1da32dbc90e00d67f1d1f0ae52db2e327102be4b60ee0faa8dccba81e684","7549a814a3e01a21cd235f43029ed0f4e3a2d5085224316376bb91a1779de313","57d40f1e6a5f377677409cd1875551883b7de268be69f942622244163ea89d01","2e761e410969234950ab430f9ca58b6ed417f1014c55fc73f638523fa5eec1d6","94c9d56b441f206fa84f13e8022bd0abae326f6d8db96b08e2c1aafe3f90544e","0b5fa0c440935532611416f9a923f9278601d600e10cc3feaa55da332f50f6ac","8a0b458916a1fe3aeb3cb7d118bf191ff1e9aec2d26177660e64241d677db1e0","bf12ca57a5d03135c31d3f88c269740c7d2658664f15d6495c219b1bb23a99da","9c40be3c5a7920b744d14112ff3168ab5e5609699b8c1d91ecb709ac168324a5","cb28f2fc4172aa0541ba7bf189603f96897a951a46c4be3d91acf9de9a1710e8","6994c5b35689135e820f563d5763e3336930ffa439d895a3ec27025702ccedfd","91dc8b7c4593713c8aeff12732e13f9d1eb94f5caee9a1496660f831f465835d","1bb2c6539020bcac5f3e2983a84a6e0076d68df0167d99a29bae9fc11e3ea691","e4b0ad22784b73f2e6bcf955628e6dbb114bae5b003d40b1ee19356e18daad7a","df45b75ada5c8beceb3e913364c7a3729011dc172b68adf5189d4fae5625ad7d","97b2a12f44fb5a8efd00ab46d37d6637167746c7c0d88c5b5728a34aa3b663a5","2c52dbe7f60e8b2887d17877c1b04677f1d945b18b4fb3e7befbd1489de51e83","f3bd3b4bd312efbff3978a3fd9952e2eadeacc7d01cbd1bc01e72786e502aa16","95b063b28e6ed861e34899447c68932aa51b840edaf7cda213ac61920766271c","4710c48d307d5ccdbea5c12e20c0ba27870411d86ad563918d4c0aeb0fce3b57","c5880f64e301e74076d017ee185c9a528e5a68ed93f305fbf6d7618b7d21c29f","b97b7560517f2f4a070415909c98ddcb1e1d8f3346db990d496856fcdfcde648","15e2f96f7a8e64937eb0624b04513a9fed7f7c71aa7875208ee9e31958588624","6f5867d484ac5f717347328137c1a35563380e2c1d8e1d38beb8767c90bb5705","218e1b7c38cd5b9af46b904a728f0cc15828d9290d9adc6a5fc220f6069df988","88b74310f700fd92c9d3f11626878f3664449dd7dc007115a41cf746a9757e1c","3407d5883afea5c8fac9c3a74fedec806913b960644117e9710a239d85185fe1","7a028e36ec10c5bb3ee2e21fc938f1a44aa1b7af9981eff947da64f421b99445","6c056acd7733f0c09d1c3109ea627677dbf0eb260ef79f2797d588d85a8af1aa","ebe4587bd35138be18fec2050ffe7eed63d642fa0b674bb07e92f919fabcdea8","5d1d8f471bfda5e91090380b191a1e4d44911cf0bb51f69ce61632ec1a6a7399","0b35ba65af6e6196d22ee4a184f42512b7af1b4489b4fc5dbe9dd6d36b8097d8","232aa18921769b316d6a022c776669ea28a0250a98223841e521d9c3d9920a22","394bc17919e4dbb56443f11a7cbf610b7b07384423f9725c14d990920367b06b","17830ef73e50e330c120038947bc61ef1725178b58b9564dd9dcac5b51a6ac0c","b054669f7056c4fdb7cdf764b1977917f40f820d7f33bbc1f6b616e46b531ad6","1409e4c2241622af1a067634caff699d7d03adb5e8fd401c3f11d07214c49ec2","eae212ef0acce305594fb9cba149892dd9945cb58c0f72d0051557804b8a1af5","ccc9538f2696fa6720ccb26c05b9545e1a6236139670a9c919047aa6459456ef","e3d762cc49c25e02cd10873d944e12339185883485eca1b40e9cc0d0e063be63","437597745a84ace9638ed90cbff9abf5229131dc1d69ebfc6b19e0009577eb22","b4a7210846055640fdccdf888dc7ba266cc82549fc95ab05cdfff7cc9dd65bf1","4ff816bca793da4d9874123906772ef225619980908e25fd5d40475e12651be0","1fd68353565ef4a5cc3241c0ef3a1ec4b33b17d60c76a78e0e7c05a73754e261","5765852c2905e4328a2ad6dd4f478d5554d3e760c510c3a600a6284d7e4df62c","cf93fb9208a01c80f0fad245c4360356e5de6c2384b7641acf0b9cc2f5c42448","336398b0efaf964124e636a9b29c4edd5870aee79ac64bf87be58a9d66b7c048","571bc65ec37ba124e762bb822e14a2b8502dc684e356be8feaccbd6b9cadd023","2bbbefc1235500bdb5091f240dc8cba861a95342272f7d11b7574a0d2ef4f85e","7cd455fc4c4818f19263d73b29c59f3fb5fd54b45a6ab83ca3eb3661281db56b","1c6b9b5501774a2ece6574be8e26092800e3f1f836f8c179b4f9fdd271a620f8","0929ec89582904044a56ca8220114b7256450a197da22eb5c9b630be69a41372","9ac28b8b27ffcebc23b3e4b1757a296067080482d3fbc48c128d0bb37010baf0","dac56ed47ddc0dc90774416f9394429d7ede9e3af41ddc80fd8d94f8f4411b2e","0e05f91083b26e1f27be17a2f1fe044589ca71fbad924dd9e63ac4b668f3a1e3","111b4ee5a1f5339ff2455a2d3fd3c690f08b3f1593d8f664258e64658b7a1ea0","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","6ac6f24aff52e62c3950461aa17eab26e3a156927858e6b654baef0058b4cd1e",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"da66c1b3e50ef9908e31ce7a281b137b2db41423c2b143c62524f97a536a53d9","3fb060fe722e08fe7c32cfb83f630c5211b1d08ef702577bde42837bc9994958","d0e548b52ce2a55820b470ad9c2d66e2855fb3e9dea936fc29b4d4a63bb8fa54","5b402d6c32c733bf8065b8abc34904fffcfe5b94b0e1b99e63a34f450d87faba","218d40ca9941513cd8a798d81ba7b4d348db943492f7f6db7687a79cd16b5533","46971bf04e56b8de7c9c74bba27b54f5f4a78873b6cbf0682592d0693c2acb25","54570339e5e91d8d8380dee2ab4014ffa88cdfd73ff0a20e4ec085d64d81cd78","311c45b5a2b6585a84306100bb514c919b01ee21de43efb1bb2aa6a98a2753db","fc94de52737bc8fb2b1290d6f22b5dfea3e50c8d547625781fa6a2ccd35c7242","c1b9873444fa0d27f70b65ef00c80d0e0a9e9bf277ef6b4522572e99c9c48ee9","15a95894e214753c1e2dc638670ac7c5a6d05d952b19ea3745767d239fe00789","5d82404561003f51fed07b961d061f702dfd379ef5f0f7927744a4fff21fbf64","c0a0a579f2a69a5600eec5da4d87f83a82cef0aa70cd4063e9040f95d879b96e","8ecbfacf281dbd929d3b5f09b4f96bf999a45a959e08501b07117256b1eeb659","968bc5962ea9834b383119f668c4cabd35ba7e4a2c5107fb2d38c8fa66f164be",{"version":"22a05089243a8f0fdfbfbc2d956dcf61872c5c973ecda5320a8f1e3a4dd90bfb","affectsGlobalScope":true},"9bb6e652f67b205e169436f76e1d8fd396bc9971dbec1a558eab3be406343e8c","6cb1ff661eb0cff9177c3b47e82abd0fe3122fc62f2bc0af432a8c4205ff3ec6","d4931bfce5c009c57f86bcd1039b3f0a5c5ef61d26a685f0abf77f20b18fc066","4bd4c71ed7c85138316133c98926c344916002fd572f52af1889961dad8d73c0","d0e3fc2ed7395634479edf269cc2b3e25d90b05ce08ddda1717282f9f3afecd0","8744338f1b9f91b6ca97ceb3bfb10babf4397ffe3c304b5ae4dc016f7c3fcde3","694291734f077ed109fdabbfee35995f7168b5d1af643bd6404eeabd7036aa01","7a0e19e0790605fc701443298d9ffd1dbf8fc2cd94ddfbe9a05c578a4228e5c0","4012af9177a7bb1715a569cc54565b906e5c087a97067abbcf9f75f7f9a476dc","9be3b21edf891a0ec1d8caa0da81816162f4fa5376a7652e0ec3154df6433a08","e544e87f21a6afb7a4e1196a991fd5d235d6df3b8c04ca6df0bc5f85f3aa4f5b","19910d826b4901606d47b306cd70ace2960eeb2ca2cb5e57acc81b42eedbfbcd","d48721b66317440af7e3257b38e144adf76953419a4a4db1fb60f743eb7c9b92","a71d8fe039f1b2c852618ef0b6971561ca4626fb8b30abbf6d238441d47aa6a4","baebdb5ba48a482240d2ecf8497a432aba8ca37d8930cc618c4d3b5d12ceefae","9ce316b892b5134f715b4f7afd71c06384cf9af9a69009cc9566b325a095e592","7ebd9f1b92a89f2c5998bf3e82e7af635ff5de2e3868d918f1f172e89511fae0","1d652f66027b28891fbde5c4947757333f9af4609dfa3e4be84c392c2ce0edc2",{"version":"c34297a26fdf8d47f98aeb755e0e6a6fbd935d0e347979f63d4cb9a5abf14140","affectsGlobalScope":true},"0a3f0bdec21726a138d8202f5428adfe962df1e7259a41d68c109d22f6e18672","fef62bed109b31722160fabb598f61308506f9b7f40e60b3746ae01e3a3dc18b",{"version":"c81679572dcb2188e18113641e0a8914c7cf06582d1c9429a9a5bf1f72a31aa6","affectsGlobalScope":true},"60daaa6b5dfacd7813a9cf22e1ca5860217f36e70dfcf2fc28c049a7305076e1","b203234dcc09962eadae1146518df97f0768783913616ece5fd1f7f13d6f1361","74a696e2d8acb105f173f536ede57df87f10f1811879c6537cd40718156e4809","bfa3213963e67340227e92bbfb9ae68bc9945e505818e9fd3fb1b207bc8ec89a",{"version":"67893347ea02fa7f9dac48c06155eb469725bd9bf44e2b108604c58d07d13780","affectsGlobalScope":true},"eed40411368d686759c235bd0ba8300c6f4c13d5d1ebaf05a475332c946c4d4f",{"version":"bf20e597b39dc2e7dddbe50af7e58adafc0e25add218d074cc72d3875ecc5a31","affectsGlobalScope":true},"04717c0205adfeb76d54344adbf1ff2e8e09ddf52ecc6e15b1ca16a07a767106","05cfea0488751015b0b85911b6cdcde7c6cebdd9b8cada1ec0b5c1736357a552","6d1f118cfbf15c813f578cf6b87da76d075698bf7db964cb7c3d75f0309652f7","74a8a08e5d642a108ae7b23e72bded7b9d784c665458affdfb1770c1b19bcdd1","a9e5489311de854cb96bfcf5eaf969c9b322c658e3575f30e03180e4d4ca3994","f8c86fcbfb0a1e69a0ed28d3249cc33c312fa23a39c17e15cbbcc539bdcdc303","7179b6924a816d72bf206803d8cdc27ccc14f02f2d4f4145d5183eb083f5bf17","39d2d450df6efbf38585fd316f18922c8ac3fdfd4c3fc412d0bee34e2bc86378","7470dedadf72566f57f46fa8a8950afe388a4e90935b4e4b3d33add9a611929d","90feb2c17c1fd53720e1dd8738c6660aa14402394bb30caed6f2a7cdd54fea40","dd1de0adb4b83a38b95e591363b76b3d988bca5cb7afb9f2eeb2d0fdf4bc1a0b","0717c7fa97bf0ad0c52915467abb3a1152483a1f45d44a1e6849849db146264a","7233cda8015a750046d8921c2b3aaf976474307018f9359fa4167d662e20f3b8","b1394f7ab5f751b560f579f8e1ee680752d9a0a64ad0746caaa9a98d57e322a2",{"version":"8cf47dea3a5463546fdd511545310af25a456175619bcb8781510973b74fce26","signature":"4850b5615b94b567919f4fb394505785b819348b05871af186e81fded8ca50b4"},"0465ef749edb59477556c7ababc71d76d643c5c6be7c9be96e21907e3efe0a24","acbf442f42e4318b5fea0e1ce1ca9a290eb01e3e15945c1e2f0b67e3f3fdf541","a0667520a6521c12128fc28cbd5b2af58eef11c5b2a7441e0f0d47f50bf6c8e3","820c26194ad4089bc503b02bbedbd86a865e9c8a05c58ef88c8d19d9c019712a","eda22dbab152e3579ee541522ba2ddc8e24e32fd7535b913709848f16c517caa","6778cdeced9eb23210b26b801cd757b03c052b7738628475acad7c7a3e94c20f","0dcf4c2bf1bb547e2ae5b8dce4656a56fbd15e3401ff5236ea0b93b6c60f9249","9917d466f5b05c616c35c35a778464ae4ec15e00bfce90098743f448fc063d54","d375de88ab19f6c105a65fc89eca1ae782362c5c395283b0c85ef39c7b835dfe","025eb503355f4bbe3e3fecc0bd1a72ecaa9cda73db6e0ecc657779d4172695f2","7b3c1d688dcb8645b5a6c37bce5b047da92b4c298ed8709e03e987e0efb035b1","00096d29ccab72a72092cca31fb92d78b92880bddc53e5904149d21e76648c48",{"version":"87e9ab1e4466fb88c90b179130baaab80d91dd1644de2eb6512c79b24ec11216","affectsGlobalScope":true},"024fea9ee598cfe747f18340ad74e4ea428fc2a7988250ff9fcfce5673b7d422","95ff8a2ebfc0b8b9613faf8d9c948dcc6bf8d5c0052a2d4ae21cacf6cdd28cb9","147cb5b590b77c8c58e4ef0af1ff11ee90ee2b34262816df0665b6ff8fd50aad","6e0575b628aedce5db38c17569e5c909beead07f9052fe7944fb8bfccc3db92e","fd4b34fa1af0c7ac73f9f827d0993dba20523b2cc3ca1e16eaaa2165f46d3172",{"version":"1bc2e3b2cbb2e253f9edb99661c7f48b8e54d8d0b822d29ff6f8ad9a91b4fb79","affectsGlobalScope":true},"5d8a54affc9a33b29830ad949f6e247314cbb7f85287231b07b66611bacf795f","0f81a53d54fd2b4ae2bf60067d616de99884bda21cb5784d942089d52319fb97","7b542379501867f7d2418681fbea38f75c756c2dd67e00e14ab1e125ae604095","29dca1b5f0cac95b675f86c7846f9d587ed47cc46609dd00d152bcb37683b069","a616e1b4eed03c1feb2a6fba721e5cbcb9c23cbe29c1858949a361f80719c0e8","48ba49f8bfce8c08ad1e7e54f0b85da9db7317ca76835d1c2640567e3fbd50c6","87c9e26bfe2b4d19455ae393b5d41bda5e55d1d661957440366197af880439e7",{"version":"743873d3bab0b24c9cc199106249dc9afdbdecfa5dc15795dfcb7a9638ed23e1","signature":"ae55de8a9e220aeefa6679c9cab81793a3789fcd74d3d0282a33eca58b7a17b9"},{"version":"1477f91d9b18254fc72dcc38998be82f51a8958f19aa56326b2c3c7ee2684bb9","signature":"c5859df3fa7d1ed8986fc47287b9e9a75508ab9b76ac9c1b40f1b7f30804d84e"},"66b7aa4316b2d1335ec70b9ad03cd32061a5acb768eb9ec951f95ab87174a01f","b095f9aa799b72c47fad5a04a96ee402b8e58bffb10256d2e918be66b9a33562","1047b2508272e9ef1722a86dafdfc13816cbbd5aaac416d1004ba788c2d1a45f","7dee73d4f7c100c6c7918f1679710618086082fe7bc893ef8b4c6fd4e2d284ca","a7e4200b892574ed4397942daf91f761270ace96ce354f39b44eab2f7ce3ef8a","b31310f83fbd3e640c8d78c53df76047c203f36b2a82252e38a45ffef4e12367","a34bdbc3be650aede70bd930d70f665cc189ccee24e197410c03844d3616a211","333e438d141bfad0807c7e4abac3951517bd0058007643c754c904f09819c1b4","4eb6d4e8d761829a7ede3925385decf38efc57c9e7f3ac25ba4f93f65727347d","d3953d5f505629d7740558a88ac1ad2b2a631f2f6b63a7fe47a903446f498d5b","4eb6d4e8d761829a7ede3925385decf38efc57c9e7f3ac25ba4f93f65727347d","4eb6d4e8d761829a7ede3925385decf38efc57c9e7f3ac25ba4f93f65727347d","3baf933c56375b02de8e2d959a001d2a8d64dacacfc4b4054ace4ccc186d482b","f85962b0c1328ca5d9e3137def5236bf71ca91e1c2953528816f7bf3b33c52f0","0834153c4e0b0e15562aa8317a39a846e034100fd05e9a542d47a958244bb38c","0946b931e443fe1d97ec8d4e4b3d04e0011f04d4f0d9ba19355c8572b056e5b9","0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"c2ab70bbc7a24c42a790890739dd8a0ba9d2e15038b40dff8163a97a5d148c00","affectsGlobalScope":true},"422dbb183fdced59425ca072c8bd09efaa77ce4e2ab928ec0d8a1ce062d2a45a",{"version":"712ba0d43b44d144dfd01593f61af6e2e21cfae83e834d297643e7973e55ed61","affectsGlobalScope":true},"1dab5ab6bcf11de47ab9db295df8c4f1d92ffa750e8f095e88c71ce4c3299628","f71f46ccd5a90566f0a37b25b23bc4684381ab2180bdf6733f4e6624474e1894",{"version":"54e65985a3ee3cec182e6a555e20974ea936fc8b8d1738c14e8ed8a42bd921d4","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","98a3ebfa494b46265634a73459050befba5da8fdc6ca0ef9b7269421780f4ff3","34e5de87d983bc6aefef8b17658556e3157003e8d9555d3cb098c6bef0b5fbc8","cc0b61316c4f37393f1f9595e93b673f4184e9d07f4c127165a490ec4a928668","f27371653aded82b2b160f7a7033fb4a5b1534b6f6081ef7be1468f0f15327d3","c762cd6754b13a461c54b59d0ae0ab7aeef3c292c6cf889873f786ee4d8e75c9","f4ea7d5df644785bd9fbf419930cbaec118f0d8b4160037d2339b8e23c059e79",{"version":"bfea28e6162ed21a0aeed181b623dcf250aa79abf49e24a6b7e012655af36d81","affectsGlobalScope":true},"7a5459efa09ea82088234e6533a203d528c594b01787fb90fba148885a36e8b6","ae97e20f2e10dbeec193d6a2f9cd9a367a1e293e7d6b33b68bacea166afd7792","10d4796a130577d57003a77b95d8723530bbec84718e364aa2129fa8ffba0378","ad41bb744149e92adb06eb953da195115620a3f2ad48e7d3ae04d10762dae197","bf73c576885408d4a176f44a9035d798827cc5020d58284cb18d7573430d9022","7ae078ca42a670445ae0c6a97c029cb83d143d62abd1730efb33f68f0b2c0e82",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"5d0a9ea09d990b5788f867f1c79d4878f86f7384cb7dab38eecbf22f9efd063d","12eea70b5e11e924bb0543aea5eadc16ced318aa26001b453b0d561c2fd0bd1e","08777cd9318d294646b121838574e1dd7acbb22c21a03df84e1f2c87b1ad47f2","08a90bcdc717df3d50a2ce178d966a8c353fd23e5c392fd3594a6e39d9bb6304",{"version":"4cd4cff679c9b3d9239fd7bf70293ca4594583767526916af8e5d5a47d0219c7","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","00fa7ce8bc8acc560dc341bbfdf37840a8c59e6a67c9bfa3fa5f36254df35db2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"3345c276cab0e76dda86c0fb79104ff915a4580ba0f3e440870e183b1baec476","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","e383ff72aabf294913f8c346f5da1445ae6ad525836d28efd52cbadc01a361a6","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7",{"version":"3a2da34079a2567161c1359316a32e712404b56566c45332ac9dcee015ecce9f","affectsGlobalScope":true},"28a2e7383fd898c386ffdcacedf0ec0845e5d1a86b5a43f25b86bc315f556b79","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"9cafe917bf667f1027b2bb62e2de454ecd2119c80873ad76fc41d941089753b8",{"version":"5f186a758a616c107c70e8918db4630d063bd782f22e6e0b17573b125765b40b","affectsGlobalScope":true}],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":false,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitOnError":true,"outDir":"./","rootDir":"..","sourceMap":true,"strict":true,"target":99,"useDefineForClassFields":false},"fileIdsList":[[74,380],[380],[50,380],[44,51,380],[50,73,380],[73,74,75,76,77,78,79,380],[44,380],[51,380],[44,51,59,380],[42,43,380],[295,296,380],[295,296,297,380],[50,296,298,299,380],[50,65,305,306,307,309,380],[50,310,380],[50,299,300,302,303,380],[50,304,380],[299,380],[296,301,380],[295,302,380],[235,242,380],[242,380],[235,242,272,273,380],[264,266,380],[272,380],[242,251,271,380],[267,380],[242,243,244,245,259,264,266,268,269,380],[243,244,380],[264,266,269,276,380],[264,266,269,274,380],[247,380],[237,264,380],[238,240,242,246,250,252,253,254,255,256,257,258,259,260,261,262,263,380],[237,265,380],[239,240,241,380],[246,252,253,380],[246,252,253,254,255,257,258,380],[237,246,247,248,249,252,253,254,255,257,380],[246,259,380],[238,246,380],[246,252,256,380],[246,251,252,380],[237,246,250,251,252,253,254,380],[237,246,380],[237,380],[236,238,380],[240,380],[237,238,240,380],[247,248,380],[206,207,380],[206,208,380],[232,380],[220,222,223,224,225,226,227,228,229,230,231,232,380],[220,221,223,224,225,226,227,228,229,230,231,232,380],[221,222,223,224,225,226,227,228,229,230,231,232,380],[220,221,222,224,225,226,227,228,229,230,231,232,380],[220,221,222,223,225,226,227,228,229,230,231,232,380],[220,221,222,223,224,226,227,228,229,230,231,232,380],[220,221,222,223,224,225,227,228,229,230,231,232,380],[220,221,222,223,224,225,226,228,229,230,231,232,380],[220,221,222,223,224,225,226,227,229,230,231,232,380],[220,221,222,223,224,225,226,227,228,230,231,232,380],[220,221,222,223,224,225,226,227,228,229,231,232,380],[220,221,222,223,224,225,226,227,228,229,230,232,380],[220,221,222,223,224,225,226,227,228,229,230,231,380],[337,380],[340,380],[341,346,380],[342,352,353,360,369,379,380],[342,343,352,360,380],[344,380],[345,346,353,361,380],[346,369,376,380],[347,349,352,360,380],[348,380],[349,350,380],[351,352,380],[352,380],[352,353,354,369,379,380],[352,353,354,369,380],[355,360,369,379,380],[352,353,355,356,360,369,376,379,380],[355,357,369,376,379,380],[337,338,339,340,341,342,343,344,345,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,380,381,382,383,384,385,386],[352,358,380],[359,379,380],[349,352,360,369,380],[361,380],[362,380],[340,363,380],[364,378,380,384],[365,380],[366,380],[352,367,380],[367,368,380,382],[352,369,370,371,380],[369,371,380],[369,370,380],[372,380],[373,380],[352,374,375,380],[374,375,380],[346,360,369,376,380],[377,380],[360,378,380],[341,355,366,379,380],[346,380],[369,380,381],[380,382],[380,383],[341,346,352,354,363,369,379,380,382,384],[369,380,385],[45,380],[97,98,99,100,101,102,103,105,106,107,109,110,380],[100,380],[89,100,380],[88,89,93,94,97,98,99,380],[88,89,93,100,104,380],[108,380],[93,96,380],[83,380],[96,380],[86,90,142,380],[88,89,93,94,380],[85,86,91,108,124,380],[138,179,380],[86,90,179,380],[85,86,380],[84,85,180,380],[84,380],[83,84,86,380],[84,86,87,380],[84,85,380],[86,139,140,380],[86,90,380],[83,84,86,87,380],[86,139,380],[140,380],[83,86,87,143,380],[149,150,380],[149,380],[151,380],[85,89,130,133,380],[138,380],[95,380],[88,89,93,380],[86,91,108,124,380],[84,85,89,93,185,380],[84,89,93,185,380],[84,91,187,380],[84,88,89,93,94,380],[185,380],[84,200,380],[84,201,380],[198,380],[84,131,199,380],[194,195,380],[84,89,93,192,194,195,196,380],[90,380],[84,89,93,192,380],[84,89,93,186,380],[85,138,158,380],[85,380],[88,89,93,94,156,380],[86,380],[89,138,164,168,380],[86,89,138,380],[166,380],[164,380],[168,380],[86,164,167,380],[84,108,164,168,169,173,380],[172,380],[84,164,168,172,380],[164,168,169,172,380],[88,89,93,94,161,380],[90,91,92,380],[83,123,380],[130,380],[85,130,380],[86,91,108,380],[83,84,86,87,88,89,90,91,92,93,94,96,104,108,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,150,151,152,153,154,155,157,158,159,160,162,163,164,165,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,188,189,190,191,193,197,201,202,203,380],[44,48,380],[48,380],[47,48,380],[46,47,380],[52,53,54,55,56,57,58,59,60,380],[308,380],[44,48,49,380],[312,380],[313,314,315,316,380],[50,312,380],[48,50,380],[41,62,63,64,71,72,81,82,205,216,218,219,234,278,289,290,291,292,293,294,318,319,380],[41,380],[41,50,61,80,326,327,380],[41,80,326,380],[41,50,61,62,380],[41,50,61,380],[41,50,61,62,72,80,380],[41,50,61,62,70,204,380],[40,41,50,61,62,206,207,208,215,380],[41,50,61,62,234,270,275,277,380],[41,50,61,62,218,233,380],[41,50,61,62,217,380],[41,50,61,65,70,380],[41,50,61,62,311,317,380],[41,50,61,62,216,380],[41,50,61,62,65,215,288,380],[41,50,61,62,218,380],[41,50,61,62,65,380],[41,50,61,62,65,218,270,277,380],[41,50,61,62,65,70,380],[41,50,380],[66,67,68,69,380],[48,50,65,66,380],[48,50,66,380],[48,50,68,380],[209,210,211,212,213,214,380],[279,280,281,282,283,284,285,286,287,380],[62,63,64,71,72,81,82,205,216,218,219,234,278,289,290,291,292,293,294,318,319],[48,50,62],[48,50,62,218]],"referencedMap":[[78,1],[79,2],[75,2],[76,3],[77,4],[73,1],[74,5],[80,6],[42,2],[51,7],[52,8],[55,4],[53,4],[57,4],[60,9],[59,2],[58,4],[56,4],[54,8],[43,2],[44,10],[297,11],[295,2],[298,12],[296,2],[306,2],[300,13],[299,2],[310,14],[311,15],[65,3],[304,16],[305,17],[307,18],[302,19],[303,20],[301,2],[235,2],[243,21],[244,22],[245,2],[274,23],[267,24],[273,25],[272,26],[271,2],[268,27],[270,28],[276,29],[277,30],[275,31],[237,2],[248,32],[265,33],[264,34],[266,35],[242,36],[261,37],[263,38],[258,39],[260,40],[252,41],[257,42],[253,43],[255,44],[254,45],[236,2],[238,46],[251,2],[240,46],[239,47],[241,48],[259,49],[269,2],[246,2],[250,2],[247,2],[262,2],[249,50],[256,46],[217,2],[208,51],[207,52],[206,2],[233,53],[221,54],[222,55],[220,56],[223,57],[224,58],[225,59],[226,60],[227,61],[228,62],[229,63],[230,64],[231,65],[232,66],[388,2],[337,67],[338,67],[340,68],[341,69],[342,70],[343,71],[344,72],[345,73],[346,74],[347,75],[348,76],[349,77],[350,77],[351,78],[352,79],[353,80],[354,81],[339,2],[386,2],[355,82],[356,83],[357,84],[387,85],[358,86],[359,87],[360,88],[361,89],[362,90],[363,91],[364,92],[365,93],[366,94],[367,95],[368,96],[369,97],[371,98],[370,99],[372,100],[373,101],[374,102],[375,103],[376,104],[377,105],[378,106],[379,107],[380,108],[381,109],[382,110],[383,111],[384,112],[385,113],[46,114],[45,2],[111,115],[101,116],[102,117],[100,118],[103,116],[105,119],[106,116],[107,116],[109,120],[97,121],[110,122],[98,2],[99,2],[112,123],[113,123],[179,124],[177,125],[178,126],[183,127],[184,128],[180,129],[181,130],[182,131],[91,2],[87,132],[88,133],[114,123],[84,2],[86,134],[137,2],[130,2],[138,2],[141,135],[147,2],[148,136],[142,136],[143,137],[140,138],[144,139],[145,140],[139,2],[149,2],[151,141],[150,142],[152,143],[153,143],[146,144],[154,125],[155,145],[89,2],[108,2],[96,146],[115,123],[116,123],[117,123],[123,122],[83,2],[156,147],[104,125],[125,148],[118,123],[186,149],[189,150],[191,150],[188,151],[190,150],[203,150],[185,152],[192,153],[194,2],[201,154],[202,155],[199,156],[198,2],[200,157],[196,158],[197,159],[195,160],[193,161],[187,162],[159,163],[160,164],[157,165],[158,2],[126,122],[171,166],[170,167],[161,168],[166,2],[167,169],[164,2],[165,170],[169,171],[168,172],[172,2],[174,173],[176,174],[175,175],[173,176],[162,177],[163,148],[94,147],[119,123],[120,123],[93,178],[92,2],[90,164],[127,160],[128,179],[121,123],[134,164],[133,180],[136,2],[135,180],[131,181],[132,180],[129,2],[124,182],[122,123],[85,2],[204,183],[312,2],[49,184],[47,185],[308,186],[48,187],[61,188],[309,189],[50,190],[95,2],[41,2],[8,2],[10,2],[9,2],[2,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[3,2],[4,2],[22,2],[19,2],[20,2],[21,2],[23,2],[24,2],[25,2],[5,2],[26,2],[27,2],[28,2],[29,2],[6,2],[30,2],[31,2],[32,2],[33,2],[7,2],[38,2],[34,2],[35,2],[36,2],[37,2],[1,2],[39,2],[313,191],[317,192],[314,193],[316,194],[315,194],[40,2],[320,195],[326,196],[328,197],[327,198],[329,196],[330,196],[331,196],[332,196],[63,199],[64,199],[62,200],[81,201],[72,199],[205,202],[216,203],[278,204],[234,205],[218,206],[321,207],[318,208],[322,209],[289,210],[290,210],[333,200],[334,200],[335,200],[219,211],[323,199],[319,199],[324,199],[294,199],[325,212],[82,199],[293,213],[292,211],[291,211],[71,214],[336,215],[70,216],[67,217],[68,218],[69,219],[66,194],[213,2],[214,3],[209,3],[215,220],[210,3],[211,3],[212,3],[287,2],[281,2],[280,2],[284,2],[288,221],[282,2],[285,2],[286,2],[279,2],[283,2]],"exportedModulesMap":[[78,1],[79,2],[75,2],[76,3],[77,4],[73,1],[74,5],[80,6],[42,2],[51,7],[52,8],[55,4],[53,4],[57,4],[60,9],[59,2],[58,4],[56,4],[54,8],[43,2],[44,10],[297,11],[295,2],[298,12],[296,2],[306,2],[300,13],[299,2],[310,14],[311,15],[65,3],[304,16],[305,17],[307,18],[302,19],[303,20],[301,2],[235,2],[243,21],[244,22],[245,2],[274,23],[267,24],[273,25],[272,26],[271,2],[268,27],[270,28],[276,29],[277,30],[275,31],[237,2],[248,32],[265,33],[264,34],[266,35],[242,36],[261,37],[263,38],[258,39],[260,40],[252,41],[257,42],[253,43],[255,44],[254,45],[236,2],[238,46],[251,2],[240,46],[239,47],[241,48],[259,49],[269,2],[246,2],[250,2],[247,2],[262,2],[249,50],[256,46],[217,2],[208,51],[207,52],[206,2],[233,53],[221,54],[222,55],[220,56],[223,57],[224,58],[225,59],[226,60],[227,61],[228,62],[229,63],[230,64],[231,65],[232,66],[388,2],[337,67],[338,67],[340,68],[341,69],[342,70],[343,71],[344,72],[345,73],[346,74],[347,75],[348,76],[349,77],[350,77],[351,78],[352,79],[353,80],[354,81],[339,2],[386,2],[355,82],[356,83],[357,84],[387,85],[358,86],[359,87],[360,88],[361,89],[362,90],[363,91],[364,92],[365,93],[366,94],[367,95],[368,96],[369,97],[371,98],[370,99],[372,100],[373,101],[374,102],[375,103],[376,104],[377,105],[378,106],[379,107],[380,108],[381,109],[382,110],[383,111],[384,112],[385,113],[46,114],[45,2],[111,115],[101,116],[102,117],[100,118],[103,116],[105,119],[106,116],[107,116],[109,120],[97,121],[110,122],[98,2],[99,2],[112,123],[113,123],[179,124],[177,125],[178,126],[183,127],[184,128],[180,129],[181,130],[182,131],[91,2],[87,132],[88,133],[114,123],[84,2],[86,134],[137,2],[130,2],[138,2],[141,135],[147,2],[148,136],[142,136],[143,137],[140,138],[144,139],[145,140],[139,2],[149,2],[151,141],[150,142],[152,143],[153,143],[146,144],[154,125],[155,145],[89,2],[108,2],[96,146],[115,123],[116,123],[117,123],[123,122],[83,2],[156,147],[104,125],[125,148],[118,123],[186,149],[189,150],[191,150],[188,151],[190,150],[203,150],[185,152],[192,153],[194,2],[201,154],[202,155],[199,156],[198,2],[200,157],[196,158],[197,159],[195,160],[193,161],[187,162],[159,163],[160,164],[157,165],[158,2],[126,122],[171,166],[170,167],[161,168],[166,2],[167,169],[164,2],[165,170],[169,171],[168,172],[172,2],[174,173],[176,174],[175,175],[173,176],[162,177],[163,148],[94,147],[119,123],[120,123],[93,178],[92,2],[90,164],[127,160],[128,179],[121,123],[134,164],[133,180],[136,2],[135,180],[131,181],[132,180],[129,2],[124,182],[122,123],[85,2],[204,183],[312,2],[49,184],[47,185],[308,186],[48,187],[61,188],[309,189],[50,190],[95,2],[41,2],[8,2],[10,2],[9,2],[2,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[3,2],[4,2],[22,2],[19,2],[20,2],[21,2],[23,2],[24,2],[25,2],[5,2],[26,2],[27,2],[28,2],[29,2],[6,2],[30,2],[31,2],[32,2],[33,2],[7,2],[38,2],[34,2],[35,2],[36,2],[37,2],[1,2],[39,2],[313,191],[317,192],[314,193],[316,194],[315,194],[40,2],[320,222],[326,196],[328,197],[327,198],[329,196],[330,196],[331,196],[332,196],[63,199],[64,199],[62,200],[81,201],[72,199],[205,202],[216,203],[278,204],[234,205],[218,206],[321,207],[318,208],[322,209],[289,210],[290,210],[333,200],[334,200],[335,200],[219,211],[323,199],[319,223],[324,199],[294,199],[325,212],[82,199],[293,213],[292,224],[291,211],[71,214],[336,215],[70,216],[67,217],[68,218],[69,219],[66,194],[213,2],[214,3],[209,3],[215,220],[210,3],[211,3],[212,3],[287,2],[281,2],[280,2],[284,2],[288,221],[282,2],[285,2],[286,2],[279,2],[283,2]],"semanticDiagnosticsPerFile":[78,79,75,76,77,73,74,80,42,51,52,55,53,57,60,59,58,56,54,43,44,297,295,298,296,306,300,299,310,311,65,304,305,307,302,303,301,235,243,244,245,274,267,273,272,271,268,270,276,277,275,237,248,265,264,266,242,261,263,258,260,252,257,253,255,254,236,238,251,240,239,241,259,269,246,250,247,262,249,256,217,208,207,206,233,221,222,220,223,224,225,226,227,228,229,230,231,232,388,337,338,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,339,386,355,356,357,387,358,359,360,361,362,363,364,365,366,367,368,369,371,370,372,373,374,375,376,377,378,379,380,381,382,383,384,385,46,45,111,101,102,100,103,105,106,107,109,97,110,98,99,112,113,179,177,178,183,184,180,181,182,91,87,88,114,84,86,137,130,138,141,147,148,142,143,140,144,145,139,149,151,150,152,153,146,154,155,89,108,96,115,116,117,123,83,156,104,125,118,186,189,191,188,190,203,185,192,194,201,202,199,198,200,196,197,195,193,187,159,160,157,158,126,171,170,161,166,167,164,165,169,168,172,174,176,175,173,162,163,94,119,120,93,92,90,127,128,121,134,133,136,135,131,132,129,124,122,85,204,312,49,47,308,48,61,309,50,95,41,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,30,31,32,33,7,38,34,35,36,37,1,39,313,317,314,316,315,40,320,326,328,327,329,330,331,332,63,64,62,81,72,205,216,278,234,218,321,318,322,289,290,333,334,335,219,323,319,324,294,325,82,293,292,291,71,336,70,67,68,69,66,213,214,209,215,210,211,212,287,281,280,284,288,282,285,286,279,283]},"version":"4.6.2"}
|
package/package.json
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
"description": "Webcomponent property-editor following open-wc recommendations",
|
4
4
|
"license": "MIT",
|
5
5
|
"author": "heartyoh@hatiolab.com",
|
6
|
-
"version": "1.0.0-alpha.
|
6
|
+
"version": "1.0.0-alpha.29",
|
7
7
|
"main": "dist/src/index.js",
|
8
8
|
"module": "dist/src/index.js",
|
9
9
|
"publishConfig": {
|
@@ -39,6 +39,7 @@
|
|
39
39
|
"./ox-input-search.js": "./dist/src/ox-input-search.js",
|
40
40
|
"./ox-input-value-map.js": "./dist/src/ox-input-value-map.js",
|
41
41
|
"./ox-input-value-ranges.js": "./dist/src/ox-input-value-ranges.js",
|
42
|
+
"./ox-input-partition-keys.js": "./dist/src/ox-input-partition-keys.js",
|
42
43
|
"./ox-input-table.js": "./dist/src/ox-input-table.js",
|
43
44
|
"./ox-input-scene-component-id.js": "./dist/src/ox-input-scene-component-id.js"
|
44
45
|
},
|
@@ -57,11 +58,11 @@
|
|
57
58
|
"dependencies": {
|
58
59
|
"@lit/localize": "^0.11.2",
|
59
60
|
"@material/mwc-icon": "^0.25.3",
|
60
|
-
"@operato/color-picker": "^1.0.0-alpha.
|
61
|
-
"@operato/i18n": "^1.0.0-alpha.
|
62
|
-
"@operato/popup": "^1.0.0-alpha.
|
63
|
-
"@operato/styles": "^1.0.0-alpha.
|
64
|
-
"@operato/utils": "^1.0.0-alpha.
|
61
|
+
"@operato/color-picker": "^1.0.0-alpha.29",
|
62
|
+
"@operato/i18n": "^1.0.0-alpha.29",
|
63
|
+
"@operato/popup": "^1.0.0-alpha.29",
|
64
|
+
"@operato/styles": "^1.0.0-alpha.29",
|
65
|
+
"@operato/utils": "^1.0.0-alpha.29",
|
65
66
|
"@polymer/paper-dropdown-menu": "^3.2.0",
|
66
67
|
"@polymer/paper-item": "^3.0.1",
|
67
68
|
"@thebespokepixel/es-tinycolor": "^3.1.0",
|
@@ -104,5 +105,5 @@
|
|
104
105
|
"prettier --write"
|
105
106
|
]
|
106
107
|
},
|
107
|
-
"gitHead": "
|
108
|
+
"gitHead": "cce287ceb1150ae48d6cca9b191a5990995b60e6"
|
108
109
|
}
|
package/src/index.ts
CHANGED
@@ -0,0 +1,240 @@
|
|
1
|
+
/**
|
2
|
+
* @license Copyright © HatioLab Inc. All rights reserved.
|
3
|
+
*/
|
4
|
+
|
5
|
+
import { css, html } from 'lit'
|
6
|
+
import { customElement, property, queryAll } from 'lit/decorators.js'
|
7
|
+
|
8
|
+
import { OxFormField } from './ox-form-field'
|
9
|
+
|
10
|
+
type PartitionKeys = { [key: string]: any }
|
11
|
+
type ArrayedPartitionKeys = { key: string; value: any }
|
12
|
+
|
13
|
+
/**
|
14
|
+
key-value map for partitions editor element
|
15
|
+
|
16
|
+
Example:
|
17
|
+
|
18
|
+
<ox-input-partition-keys
|
19
|
+
value=${map}
|
20
|
+
</ox-input-partition-keys>
|
21
|
+
*/
|
22
|
+
@customElement('ox-input-partition-keys')
|
23
|
+
export class OxInputPartitionKeys extends OxFormField {
|
24
|
+
static styles = css`
|
25
|
+
:host {
|
26
|
+
display: flex;
|
27
|
+
flex-direction: column;
|
28
|
+
align-content: center;
|
29
|
+
|
30
|
+
width: 100%;
|
31
|
+
overflow: hidden;
|
32
|
+
border: 1px solid #ccc;
|
33
|
+
}
|
34
|
+
|
35
|
+
div {
|
36
|
+
display: flex;
|
37
|
+
flex-flow: row nowrap;
|
38
|
+
align-items: center;
|
39
|
+
|
40
|
+
border-bottom: 1px solid #c0c0c0;
|
41
|
+
}
|
42
|
+
|
43
|
+
div:last-child {
|
44
|
+
border-bottom: none;
|
45
|
+
}
|
46
|
+
|
47
|
+
div > * {
|
48
|
+
min-width: 0px;
|
49
|
+
margin: 2px;
|
50
|
+
padding: 0;
|
51
|
+
}
|
52
|
+
|
53
|
+
button {
|
54
|
+
width: 20px;
|
55
|
+
text-align: center;
|
56
|
+
}
|
57
|
+
|
58
|
+
input {
|
59
|
+
flex: 1;
|
60
|
+
}
|
61
|
+
`
|
62
|
+
|
63
|
+
@property({ type: Object }) value: PartitionKeys = {}
|
64
|
+
|
65
|
+
private _changingNow: boolean = false
|
66
|
+
|
67
|
+
firstUpdated() {
|
68
|
+
this.renderRoot.addEventListener('change', this._onChange.bind(this))
|
69
|
+
}
|
70
|
+
|
71
|
+
render() {
|
72
|
+
return html`
|
73
|
+
${this._toArray(this.value).map(
|
74
|
+
item => html`
|
75
|
+
<div data-record>
|
76
|
+
<input type="text" data-key placeholder="key" .value=${item.key} />
|
77
|
+
<input type="text" data-value placeholder="value" .value=${item.value} list="value-template" />
|
78
|
+
<button class="record-action" @click=${(e: MouseEvent) => this._delete(e)} tabindex="-1">-</button>
|
79
|
+
<button class="record-action" @click=${(e: MouseEvent) => this._up(e)} tabindex="-1">↑</button>
|
80
|
+
<button class="record-action" @click=${(e: MouseEvent) => this._down(e)} tabindex="-1">↓</button>
|
81
|
+
</div>
|
82
|
+
`
|
83
|
+
)}
|
84
|
+
|
85
|
+
<div data-record-new>
|
86
|
+
<input type="text" data-key placeholder="key" value="" />
|
87
|
+
<input type="text" data-value placeholder="value" value="" list="value-template" />
|
88
|
+
<button class="record-action" @click=${(e: MouseEvent) => this._add()} tabindex="-1">+</button>
|
89
|
+
</div>
|
90
|
+
|
91
|
+
<datalist id="value-template">
|
92
|
+
<option value="%%YY">year</option>
|
93
|
+
<option value="%%MM">month</option>
|
94
|
+
<option value="%%DD">day</option>
|
95
|
+
</datalist>
|
96
|
+
`
|
97
|
+
}
|
98
|
+
|
99
|
+
_onChange(e: Event) {
|
100
|
+
if (this._changingNow) {
|
101
|
+
return
|
102
|
+
}
|
103
|
+
|
104
|
+
this._changingNow = true
|
105
|
+
|
106
|
+
const input = e.target as HTMLInputElement
|
107
|
+
var value = input.value
|
108
|
+
|
109
|
+
const record = (e.target as Element).closest('[data-record],[data-record-new]') as HTMLElement
|
110
|
+
|
111
|
+
if (record.hasAttribute('data-record')) {
|
112
|
+
this._build()
|
113
|
+
} else if (record.hasAttribute('data-record-new') && input.hasAttribute('data-value')) {
|
114
|
+
this._add()
|
115
|
+
}
|
116
|
+
|
117
|
+
this._changingNow = false
|
118
|
+
}
|
119
|
+
|
120
|
+
_build(includeNewRecord?: boolean) {
|
121
|
+
if (includeNewRecord) {
|
122
|
+
var records = this.renderRoot.querySelectorAll('[data-record],[data-record-new]') as NodeListOf<HTMLElement>
|
123
|
+
} else {
|
124
|
+
var records = this.renderRoot.querySelectorAll('[data-record]') as NodeListOf<HTMLElement>
|
125
|
+
}
|
126
|
+
|
127
|
+
var newmap: PartitionKeys = {}
|
128
|
+
|
129
|
+
for (var i = 0; i < records.length; i++) {
|
130
|
+
var record = records[i]
|
131
|
+
|
132
|
+
const key = (record.querySelector('[data-key]') as HTMLInputElement).value
|
133
|
+
const inputs = record.querySelectorAll(
|
134
|
+
'[data-value]:not([style*="display: none"])'
|
135
|
+
) as NodeListOf<HTMLInputElement>
|
136
|
+
|
137
|
+
if (!inputs || inputs.length == 0) {
|
138
|
+
continue
|
139
|
+
}
|
140
|
+
|
141
|
+
var input = inputs[inputs.length - 1]
|
142
|
+
|
143
|
+
var value = input.value
|
144
|
+
|
145
|
+
if (key) {
|
146
|
+
newmap[key] = value || ''
|
147
|
+
}
|
148
|
+
}
|
149
|
+
|
150
|
+
this.value = newmap
|
151
|
+
this.dispatchEvent(new CustomEvent('change', { bubbles: true, composed: true, detail: this.value }))
|
152
|
+
}
|
153
|
+
|
154
|
+
/* map아이템들을 template(dom-repeat)용 배열로 변환하는 함수 */
|
155
|
+
_toArray(map: PartitionKeys) {
|
156
|
+
var array: ArrayedPartitionKeys[] = []
|
157
|
+
|
158
|
+
for (var key in map) {
|
159
|
+
array.push({
|
160
|
+
key: key,
|
161
|
+
value: map[key]
|
162
|
+
})
|
163
|
+
}
|
164
|
+
|
165
|
+
return array
|
166
|
+
}
|
167
|
+
|
168
|
+
_add() {
|
169
|
+
this._build(true)
|
170
|
+
|
171
|
+
const inputs = this.renderRoot.querySelectorAll(
|
172
|
+
'[data-record-new] input:not([style*="display: none"])'
|
173
|
+
) as NodeListOf<HTMLInputElement & { value: any }>
|
174
|
+
|
175
|
+
for (var i = 0; i < inputs.length; i++) {
|
176
|
+
let input = inputs[i]
|
177
|
+
|
178
|
+
if (input.type == 'checkbox') input.checked = false
|
179
|
+
else input.value = ''
|
180
|
+
}
|
181
|
+
|
182
|
+
inputs[0].focus()
|
183
|
+
}
|
184
|
+
|
185
|
+
_delete(e: MouseEvent) {
|
186
|
+
const record = (e.target as Element).closest('[data-record]') as HTMLElement
|
187
|
+
|
188
|
+
;(record!.querySelector('[data-key]') as HTMLInputElement)!.value = ''
|
189
|
+
|
190
|
+
this._build()
|
191
|
+
}
|
192
|
+
|
193
|
+
@queryAll('[data-record]') records!: NodeListOf<HTMLElement>
|
194
|
+
|
195
|
+
_up(e: MouseEvent) {
|
196
|
+
const record = (e.target as Element).closest('[data-record]') as HTMLElement
|
197
|
+
const array = Array.from(this.records)
|
198
|
+
const index = array.indexOf(record) - 1
|
199
|
+
|
200
|
+
if (index < 0) {
|
201
|
+
return
|
202
|
+
}
|
203
|
+
|
204
|
+
const deleted = array.splice(index, 1)
|
205
|
+
array.splice(index + 1, 0, ...deleted)
|
206
|
+
|
207
|
+
this.value = array.reduce((sum, record) => {
|
208
|
+
const key = (record.querySelector('[data-key]') as HTMLInputElement).value
|
209
|
+
const value = (record.querySelector('[data-value]') as HTMLInputElement).value
|
210
|
+
|
211
|
+
sum[key] = value
|
212
|
+
return sum
|
213
|
+
}, {} as { [key: string]: string })
|
214
|
+
|
215
|
+
this.dispatchEvent(new CustomEvent('change', { bubbles: true, composed: true, detail: this.value }))
|
216
|
+
}
|
217
|
+
|
218
|
+
_down(e: MouseEvent) {
|
219
|
+
const record = (e.target as Element).closest('[data-record]') as HTMLElement
|
220
|
+
const array = Array.from(this.records)
|
221
|
+
const index = array.indexOf(record)
|
222
|
+
|
223
|
+
if (index > array.length) {
|
224
|
+
return
|
225
|
+
}
|
226
|
+
|
227
|
+
array.splice(index, 1)
|
228
|
+
array.splice(index + 1, 0, record)
|
229
|
+
|
230
|
+
this.value = array.reduce((sum, record) => {
|
231
|
+
const key = (record.querySelector('[data-key]') as HTMLInputElement).value
|
232
|
+
const value = (record.querySelector('[data-value]') as HTMLInputElement).value
|
233
|
+
|
234
|
+
sum[key] = value
|
235
|
+
return sum
|
236
|
+
}, {} as { [key: string]: string })
|
237
|
+
|
238
|
+
this.dispatchEvent(new CustomEvent('change', { bubbles: true, composed: true, detail: this.value }))
|
239
|
+
}
|
240
|
+
}
|
@@ -4,9 +4,11 @@
|
|
4
4
|
|
5
5
|
import './ox-input-color'
|
6
6
|
|
7
|
-
import {
|
7
|
+
import { css, html } from 'lit'
|
8
8
|
import { customElement, property } from 'lit/decorators.js'
|
9
9
|
|
10
|
+
import { OxFormField } from './ox-form-field'
|
11
|
+
|
10
12
|
type ValueMap = { default?: any; [key: string]: any }
|
11
13
|
type ArrayedValueMap = { key: string; value: any }
|
12
14
|
|
@@ -22,7 +24,7 @@ Example:
|
|
22
24
|
</ox-input-value-map>
|
23
25
|
*/
|
24
26
|
@customElement('ox-input-value-map')
|
25
|
-
export class OxInputValueMap extends
|
27
|
+
export class OxInputValueMap extends OxFormField {
|
26
28
|
static styles = css`
|
27
29
|
:host {
|
28
30
|
display: flex;
|