@operato/font 1.0.0-beta.47 → 1.0.0-beta.48
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -0
- package/custom-elements.json +93 -93
- package/dist/src/{graphql-client.d.ts → font-graphql-client.d.ts} +0 -0
- package/dist/src/{graphql-client.js → font-graphql-client.js} +1 -1
- package/dist/src/font-graphql-client.js.map +1 -0
- package/dist/src/font-selector.js +1 -1
- package/dist/src/font-selector.js.map +1 -1
- package/dist/src/redux-font-actions.js +1 -1
- package/dist/src/redux-font-actions.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +10 -10
- package/src/{graphql-client.ts → font-graphql-client.ts} +0 -0
- package/src/font-selector.ts +1 -1
- package/src/redux-font-actions.ts +1 -1
- package/dist/src/graphql-client.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,15 @@
|
|
|
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-beta.48](https://github.com/hatiolab/operato/compare/v1.0.0-beta.47...v1.0.0-beta.48) (2022-07-17)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### :rocket: New Features
|
|
10
|
+
|
|
11
|
+
* applied graphql v16 and migrated subscriptions-transport-ws to graphql-ws ([9391306](https://github.com/hatiolab/operato/commit/9391306332e4dd436d4da3bd1a9a399c68e6b645))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
6
15
|
## [1.0.0-beta.47](https://github.com/hatiolab/operato/compare/v1.0.0-beta.46...v1.0.0-beta.47) (2022-07-15)
|
|
7
16
|
|
|
8
17
|
**Note:** Version bump only for package @operato/font
|
package/custom-elements.json
CHANGED
|
@@ -140,6 +140,99 @@
|
|
|
140
140
|
}
|
|
141
141
|
]
|
|
142
142
|
},
|
|
143
|
+
{
|
|
144
|
+
"kind": "javascript-module",
|
|
145
|
+
"path": "src/font-graphql-client.ts",
|
|
146
|
+
"declarations": [
|
|
147
|
+
{
|
|
148
|
+
"kind": "function",
|
|
149
|
+
"name": "fetchFontList",
|
|
150
|
+
"parameters": [
|
|
151
|
+
{
|
|
152
|
+
"name": "listParam",
|
|
153
|
+
"optional": true,
|
|
154
|
+
"type": {
|
|
155
|
+
"text": "Object"
|
|
156
|
+
},
|
|
157
|
+
"description": "{filters, pagination, sortings}"
|
|
158
|
+
}
|
|
159
|
+
]
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"kind": "function",
|
|
163
|
+
"name": "createFont",
|
|
164
|
+
"parameters": [
|
|
165
|
+
{
|
|
166
|
+
"name": "font",
|
|
167
|
+
"type": {
|
|
168
|
+
"text": "Object"
|
|
169
|
+
},
|
|
170
|
+
"description": "Font patch"
|
|
171
|
+
}
|
|
172
|
+
]
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"kind": "function",
|
|
176
|
+
"name": "updateFont",
|
|
177
|
+
"parameters": [
|
|
178
|
+
{
|
|
179
|
+
"name": "font",
|
|
180
|
+
"type": {
|
|
181
|
+
"text": "Object"
|
|
182
|
+
},
|
|
183
|
+
"description": "Font patch"
|
|
184
|
+
}
|
|
185
|
+
]
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"kind": "function",
|
|
189
|
+
"name": "deleteFont",
|
|
190
|
+
"parameters": [
|
|
191
|
+
{
|
|
192
|
+
"name": "id",
|
|
193
|
+
"type": {
|
|
194
|
+
"text": "String"
|
|
195
|
+
},
|
|
196
|
+
"description": "Font id"
|
|
197
|
+
}
|
|
198
|
+
]
|
|
199
|
+
}
|
|
200
|
+
],
|
|
201
|
+
"exports": [
|
|
202
|
+
{
|
|
203
|
+
"kind": "js",
|
|
204
|
+
"name": "fetchFontList",
|
|
205
|
+
"declaration": {
|
|
206
|
+
"name": "fetchFontList",
|
|
207
|
+
"module": "src/font-graphql-client.ts"
|
|
208
|
+
}
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
"kind": "js",
|
|
212
|
+
"name": "createFont",
|
|
213
|
+
"declaration": {
|
|
214
|
+
"name": "createFont",
|
|
215
|
+
"module": "src/font-graphql-client.ts"
|
|
216
|
+
}
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
"kind": "js",
|
|
220
|
+
"name": "updateFont",
|
|
221
|
+
"declaration": {
|
|
222
|
+
"name": "updateFont",
|
|
223
|
+
"module": "src/font-graphql-client.ts"
|
|
224
|
+
}
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
"kind": "js",
|
|
228
|
+
"name": "deleteFont",
|
|
229
|
+
"declaration": {
|
|
230
|
+
"name": "deleteFont",
|
|
231
|
+
"module": "src/font-graphql-client.ts"
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
]
|
|
235
|
+
},
|
|
143
236
|
{
|
|
144
237
|
"kind": "javascript-module",
|
|
145
238
|
"path": "src/font-selector.ts",
|
|
@@ -341,99 +434,6 @@
|
|
|
341
434
|
}
|
|
342
435
|
]
|
|
343
436
|
},
|
|
344
|
-
{
|
|
345
|
-
"kind": "javascript-module",
|
|
346
|
-
"path": "src/graphql-client.ts",
|
|
347
|
-
"declarations": [
|
|
348
|
-
{
|
|
349
|
-
"kind": "function",
|
|
350
|
-
"name": "fetchFontList",
|
|
351
|
-
"parameters": [
|
|
352
|
-
{
|
|
353
|
-
"name": "listParam",
|
|
354
|
-
"optional": true,
|
|
355
|
-
"type": {
|
|
356
|
-
"text": "Object"
|
|
357
|
-
},
|
|
358
|
-
"description": "{filters, pagination, sortings}"
|
|
359
|
-
}
|
|
360
|
-
]
|
|
361
|
-
},
|
|
362
|
-
{
|
|
363
|
-
"kind": "function",
|
|
364
|
-
"name": "createFont",
|
|
365
|
-
"parameters": [
|
|
366
|
-
{
|
|
367
|
-
"name": "font",
|
|
368
|
-
"type": {
|
|
369
|
-
"text": "Object"
|
|
370
|
-
},
|
|
371
|
-
"description": "Font patch"
|
|
372
|
-
}
|
|
373
|
-
]
|
|
374
|
-
},
|
|
375
|
-
{
|
|
376
|
-
"kind": "function",
|
|
377
|
-
"name": "updateFont",
|
|
378
|
-
"parameters": [
|
|
379
|
-
{
|
|
380
|
-
"name": "font",
|
|
381
|
-
"type": {
|
|
382
|
-
"text": "Object"
|
|
383
|
-
},
|
|
384
|
-
"description": "Font patch"
|
|
385
|
-
}
|
|
386
|
-
]
|
|
387
|
-
},
|
|
388
|
-
{
|
|
389
|
-
"kind": "function",
|
|
390
|
-
"name": "deleteFont",
|
|
391
|
-
"parameters": [
|
|
392
|
-
{
|
|
393
|
-
"name": "id",
|
|
394
|
-
"type": {
|
|
395
|
-
"text": "String"
|
|
396
|
-
},
|
|
397
|
-
"description": "Font id"
|
|
398
|
-
}
|
|
399
|
-
]
|
|
400
|
-
}
|
|
401
|
-
],
|
|
402
|
-
"exports": [
|
|
403
|
-
{
|
|
404
|
-
"kind": "js",
|
|
405
|
-
"name": "fetchFontList",
|
|
406
|
-
"declaration": {
|
|
407
|
-
"name": "fetchFontList",
|
|
408
|
-
"module": "src/graphql-client.ts"
|
|
409
|
-
}
|
|
410
|
-
},
|
|
411
|
-
{
|
|
412
|
-
"kind": "js",
|
|
413
|
-
"name": "createFont",
|
|
414
|
-
"declaration": {
|
|
415
|
-
"name": "createFont",
|
|
416
|
-
"module": "src/graphql-client.ts"
|
|
417
|
-
}
|
|
418
|
-
},
|
|
419
|
-
{
|
|
420
|
-
"kind": "js",
|
|
421
|
-
"name": "updateFont",
|
|
422
|
-
"declaration": {
|
|
423
|
-
"name": "updateFont",
|
|
424
|
-
"module": "src/graphql-client.ts"
|
|
425
|
-
}
|
|
426
|
-
},
|
|
427
|
-
{
|
|
428
|
-
"kind": "js",
|
|
429
|
-
"name": "deleteFont",
|
|
430
|
-
"declaration": {
|
|
431
|
-
"name": "deleteFont",
|
|
432
|
-
"module": "src/graphql-client.ts"
|
|
433
|
-
}
|
|
434
|
-
}
|
|
435
|
-
]
|
|
436
|
-
},
|
|
437
437
|
{
|
|
438
438
|
"kind": "javascript-module",
|
|
439
439
|
"path": "src/index.ts",
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"font-graphql-client.js","sourceRoot":"","sources":["../../src/font-graphql-client.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,kBAAkB,CAAA;AACzC,OAAO,GAAG,MAAM,aAAa,CAAA;AAE7B;;GAEG;AACH,MAAM,CAAC,KAAK,UAAU,aAAa,CAAC,SAA+D;IACjG,MAAM,QAAQ,GAAG,MAAM,MAAM,CAAC,KAAK,CAAC;QAClC,KAAK,EAAE,GAAG,CAAA;;;;;;;;;;;;;;;;;;;;KAoBT;QACD,SAAS,EAAE,SAAS;KACrB,CAAC,CAAA;IAEF,OAAO,QAAQ,CAAC,IAAI,IAAI,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAA;AAC7C,CAAC;AAED;;GAEG;AACH,MAAM,CAAC,KAAK,UAAU,UAAU,CAAC,IAAS;IACxC,MAAM,QAAQ,GAAG,MAAM,MAAM,CAAC,MAAM,CAAC;QACnC,QAAQ,EAAE,GAAG,CAAA;;;;;;;;;;;;KAYZ;QACD,SAAS,EAAE;YACT,IAAI,EAAE,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,IAAI,EAAE;SACjC;QACD,OAAO,EAAE;YACP,SAAS,EAAE,IAAI;SAChB;KACF,CAAC,CAAA;IAEF,OAAO,QAAQ,CAAC,IAAI,CAAA;AACtB,CAAC;AAED;;GAEG;AACH,MAAM,CAAC,KAAK,UAAU,UAAU,CAAC,IAAS;IACxC,IAAI,EAAE,EAAE,EAAE,GAAG,KAAK,EAAE,GAAG,IAAI,CAAA;IAE3B,MAAM,QAAQ,GAAG,MAAM,MAAM,CAAC,MAAM,CAAC;QACnC,QAAQ,EAAE,GAAG,CAAA;;;;;;;;;;;;;;;;KAgBZ;QACD,SAAS,EAAE;YACT,EAAE;YACF,KAAK;SACN;QACD,OAAO,EAAE;YACP,SAAS,EAAE,IAAI;SAChB;KACF,CAAC,CAAA;IAEF,OAAO,QAAQ,CAAC,IAAI,CAAA;AACtB,CAAC;AAED;;GAEG;AACH,MAAM,CAAC,KAAK,UAAU,UAAU,CAAC,EAAU;IACzC,MAAM,QAAQ,GAAG,MAAM,MAAM,CAAC,MAAM,CAAC;QACnC,QAAQ,EAAE,GAAG,CAAA;;;;KAIZ;QACD,SAAS,EAAE;YACT,EAAE;SACH;KACF,CAAC,CAAA;IAEF,OAAO,QAAQ,CAAC,IAAI,CAAA;AACtB,CAAC","sourcesContent":["import { client } from '@operato/graphql'\nimport gql from 'graphql-tag'\n\n/**\n * @param {Object} listParam {filters, pagination, sortings}\n */\nexport async function fetchFontList(listParam?: { sortings?: any; filters?: any; pagination?: any }) {\n const response = await client.query({\n query: gql`\n query ($filters: [Filter!], $pagination: Pagination, $sortings: [Sorting!]) {\n fonts(filters: $filters, pagination: $pagination, sortings: $sortings) {\n items {\n id\n name\n provider\n uri\n path\n active\n files {\n name\n fullpath\n }\n createdAt\n updatedAt\n }\n total\n }\n }\n `,\n variables: listParam\n })\n\n return response.data && response.data.fonts\n}\n\n/**\n * @param {Object} font Font patch\n */\nexport async function createFont(font: any) {\n const response = await client.mutate({\n mutation: gql`\n mutation CreateFont($font: NewFont!) {\n createFont(font: $font) {\n name\n provider\n uri\n path\n active\n createdAt\n updatedAt\n }\n }\n `,\n variables: {\n font: { active: false, ...font }\n },\n context: {\n hasUpload: true\n }\n })\n\n return response.data\n}\n\n/**\n * @param {Object} font Font patch\n */\nexport async function updateFont(font: any) {\n var { id, ...patch } = font\n\n const response = await client.mutate({\n mutation: gql`\n mutation UpdateFont($id: String!, $patch: FontPatch!) {\n updateFont(id: $id, patch: $patch) {\n id\n name\n provider\n files {\n name\n fullpath\n }\n path\n active\n createdAt\n updatedAt\n }\n }\n `,\n variables: {\n id,\n patch\n },\n context: {\n hasUpload: true\n }\n })\n\n return response.data\n}\n\n/**\n * @param {String} id Font id\n */\nexport async function deleteFont(id: string) {\n const response = await client.mutate({\n mutation: gql`\n mutation ($id: String!) {\n deleteFont(id: $id)\n }\n `,\n variables: {\n id\n }\n })\n\n return response.data\n}\n"]}
|
|
@@ -8,7 +8,7 @@ import { i18next, localize } from '@operato/i18n';
|
|
|
8
8
|
import { pulltorefresh } from '@operato/pull-to-refresh';
|
|
9
9
|
import { store } from '@operato/shell';
|
|
10
10
|
import { HeadroomStyles, ScrollbarStyles } from '@operato/styles';
|
|
11
|
-
import { createFont, deleteFont, updateFont } from './graphql-client';
|
|
11
|
+
import { createFont, deleteFont, updateFont } from './font-graphql-client';
|
|
12
12
|
import { actionUpdateFontList } from './redux-font-actions';
|
|
13
13
|
let FontSelector = class FontSelector extends localize(i18next)(connect(store)(LitElement)) {
|
|
14
14
|
constructor() {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"font-selector.js","sourceRoot":"","sources":["../../src/font-selector.ts"],"names":[],"mappings":"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","sourcesContent":["import './font-creation-card'\n\nimport { css, html, LitElement, PropertyValues } from 'lit'\nimport { customElement, property, query } from 'lit/decorators.js'\nimport { connect } from 'pwa-helpers/connect-mixin.js'\n\nimport Headroom from '@operato/headroom'\nimport { i18next, localize } from '@operato/i18n'\nimport { pulltorefresh } from '@operato/pull-to-refresh'\nimport { store } from '@operato/shell'\nimport { HeadroomStyles, ScrollbarStyles } from '@operato/styles'\n\nimport { createFont, deleteFont, updateFont } from './graphql-client'\nimport { actionUpdateFontList } from './redux-font-actions'\n\n@customElement('font-selector')\nexport class FontSelector extends localize(i18next)(connect(store)(LitElement)) {\n static styles = [\n ScrollbarStyles,\n HeadroomStyles,\n css`\n :host {\n display: flex;\n flex-direction: column;\n overflow: hidden;\n background-color: var(--popup-content-background-color);\n\n position: relative;\n }\n\n #main {\n overflow: auto;\n padding: var(--popup-content-padding);\n display: grid;\n grid-template-columns: var(--card-list-template);\n grid-auto-rows: var(--card-list-rows-height);\n grid-gap: 20px;\n box-sizing: border-box;\n }\n\n #main .card {\n display: flex;\n flex-direction: column;\n align-items: center;\n overflow: hidden;\n border-radius: var(--card-list-border-radius);\n border: var(--font-selector-border);\n background-color: var(--card-list-background-color);\n\n position: relative;\n }\n\n .card .button-container {\n position: absolute;\n right: 0;\n height: 100%;\n display: flex;\n direction: rtl;\n flex-direction: column;\n flex-wrap: wrap;\n }\n\n .card .button-container > mwc-icon {\n background-color: var(--font-selector-icon-background-color);\n text-align: center;\n width: var(--font-selector-icon-size);\n height: var(--font-selector-icon-size);\n font: var(--font-selector-icon-font);\n color: var(--font-selector-icon-color);\n }\n\n .card .button-container > mwc-icon:last-child {\n border-bottom-left-radius: 12px;\n }\n\n .card .button-container > mwc-icon:hover,\n .card .button-container > mwc-icon:active {\n background-color: var(--primary-color);\n color: #fff;\n }\n\n #main .card.create {\n overflow: visible;\n background-color: initial;\n }\n\n #main .card:hover {\n cursor: pointer;\n }\n\n [face] {\n flex: 1;\n }\n\n [name] {\n background-color: var(--board-renderer-name-background-color);\n opacity: 0.8;\n margin-top: -35px;\n width: 100%;\n color: #fff;\n font-weight: bolder;\n font-size: 13px;\n text-indent: 7px;\n }\n\n [provider] {\n background-color: rgba(0, 0, 0, 0.7);\n width: 100%;\n min-height: 15px;\n font-size: 0.6rem;\n color: #fff;\n text-indent: 7px;\n }\n\n #filter {\n padding: var(--popup-content-padding);\n background-color: var(--font-tools-background-color);\n box-shadow: var(--box-shadow);\n\n position: absolute;\n width: 100%;\n box-sizing: border-box;\n z-index: 1;\n }\n\n #filter * {\n font-size: 15px;\n }\n\n select {\n text-transform: capitalize;\n float: right;\n }\n `\n ]\n\n @property({ type: Array }) fonts: Array<any> = []\n @property({ type: Boolean }) creatable: boolean = false\n @property({ type: String }) provider: string = ''\n\n @query('#main') main!: HTMLElement\n @query('#filter') filter!: HTMLElement\n @query('font-creation-card') creationCard!: { reset: () => {} }\n\n showGotoTop: boolean = false\n\n render() {\n var fonts = this.fonts || []\n\n return html`\n <div id=\"filter\">\n <select\n @change=${(e: Event) => {\n this.provider = (e.currentTarget as HTMLInputElement).value\n }}\n >\n <option value=\"\">--${i18next.t('text.please choose a provider')}--</option>\n ${['google', 'custom'].map(provider => html` <option value=${provider}>${provider}</option> `)}\n </select>\n </div>\n\n <div id=\"main\">\n ${this.creatable\n ? html`\n <font-creation-card\n class=\"card create\"\n @create-font=${(e: CustomEvent) => this.onCreateFont(e)}\n ></font-creation-card>\n `\n : html``}\n ${fonts\n .filter(font => (this.provider ? font.provider === this.provider : true))\n .map(\n font => html`\n <div class=\"card\" @click=${(e: Event) => this.onClickSelect(font)}>\n <div face>\n <font .face=${font.name}>ABCDEFGHIJKLMN</font>\n <font .face=${font.name}>abcdefghijklmn</font>\n </div>\n <div name>${font.name}</div>\n <div provider>${font.provider}</div>\n <div class=\"button-container\">\n <mwc-icon\n @click=${(e: Event) => {\n e.stopPropagation()\n this.toggleActive(font)\n }}\n >${font.active ? 'check_box' : 'check_box_outline_blank'}</mwc-icon\n >\n <mwc-icon\n @click=${(e: Event) => {\n e.stopPropagation()\n this.deleteFont(font)\n }}\n >delete</mwc-icon\n >\n </div>\n </div>\n `\n )}\n </div>\n `\n }\n\n async firstUpdated() {\n var list = this.renderRoot.querySelector('#main')\n\n pulltorefresh({\n container: this.renderRoot,\n scrollable: list,\n refresh: () => {\n return this.refresh()\n }\n })\n\n /* for headroom */\n this.main.addEventListener('scroll', e => {\n const target = e.target as HTMLElement\n this.showGotoTop = target.scrollTop !== 0\n })\n\n await this.requestUpdate()\n\n var originPaddingTop = parseFloat(getComputedStyle(this.main, null).getPropertyValue('padding-top'))\n this.main.style.paddingTop = this.filter.clientHeight + originPaddingTop + 'px'\n var headroom = new Headroom(this.filter, {\n scroller: this.main\n })\n headroom.init()\n }\n\n stateChanged(state: any) {\n this.fonts = state.font\n }\n\n updated(changes: PropertyValues<this>) {\n if (changes.has('fonts')) {\n this.creationCard.reset()\n }\n }\n\n async refresh() {\n return store.dispatch(actionUpdateFontList() as any)\n }\n\n async toggleActive(font: { id: string; active: boolean }) {\n try {\n await updateFont({ id: font.id, active: !font.active })\n this.refresh()\n } catch (e) {\n console.error(e)\n }\n }\n\n async onCreateFont(e: CustomEvent) {\n try {\n await createFont(e.detail)\n this.refresh()\n } catch (e) {\n console.error(e)\n }\n }\n\n async deleteFont(font: { id: string }) {\n try {\n await deleteFont(font.id)\n this.refresh()\n } catch (e) {\n console.error(e)\n }\n }\n\n onClickSelect(font: any) {\n this.dispatchEvent(\n new CustomEvent('font-selected', {\n composed: true,\n bubbles: true,\n detail: {\n font\n }\n })\n )\n }\n}\n"]}
|
|
1
|
+
{"version":3,"file":"font-selector.js","sourceRoot":"","sources":["../../src/font-selector.ts"],"names":[],"mappings":"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","sourcesContent":["import './font-creation-card'\n\nimport { css, html, LitElement, PropertyValues } from 'lit'\nimport { customElement, property, query } from 'lit/decorators.js'\nimport { connect } from 'pwa-helpers/connect-mixin.js'\n\nimport Headroom from '@operato/headroom'\nimport { i18next, localize } from '@operato/i18n'\nimport { pulltorefresh } from '@operato/pull-to-refresh'\nimport { store } from '@operato/shell'\nimport { HeadroomStyles, ScrollbarStyles } from '@operato/styles'\n\nimport { createFont, deleteFont, updateFont } from './font-graphql-client'\nimport { actionUpdateFontList } from './redux-font-actions'\n\n@customElement('font-selector')\nexport class FontSelector extends localize(i18next)(connect(store)(LitElement)) {\n static styles = [\n ScrollbarStyles,\n HeadroomStyles,\n css`\n :host {\n display: flex;\n flex-direction: column;\n overflow: hidden;\n background-color: var(--popup-content-background-color);\n\n position: relative;\n }\n\n #main {\n overflow: auto;\n padding: var(--popup-content-padding);\n display: grid;\n grid-template-columns: var(--card-list-template);\n grid-auto-rows: var(--card-list-rows-height);\n grid-gap: 20px;\n box-sizing: border-box;\n }\n\n #main .card {\n display: flex;\n flex-direction: column;\n align-items: center;\n overflow: hidden;\n border-radius: var(--card-list-border-radius);\n border: var(--font-selector-border);\n background-color: var(--card-list-background-color);\n\n position: relative;\n }\n\n .card .button-container {\n position: absolute;\n right: 0;\n height: 100%;\n display: flex;\n direction: rtl;\n flex-direction: column;\n flex-wrap: wrap;\n }\n\n .card .button-container > mwc-icon {\n background-color: var(--font-selector-icon-background-color);\n text-align: center;\n width: var(--font-selector-icon-size);\n height: var(--font-selector-icon-size);\n font: var(--font-selector-icon-font);\n color: var(--font-selector-icon-color);\n }\n\n .card .button-container > mwc-icon:last-child {\n border-bottom-left-radius: 12px;\n }\n\n .card .button-container > mwc-icon:hover,\n .card .button-container > mwc-icon:active {\n background-color: var(--primary-color);\n color: #fff;\n }\n\n #main .card.create {\n overflow: visible;\n background-color: initial;\n }\n\n #main .card:hover {\n cursor: pointer;\n }\n\n [face] {\n flex: 1;\n }\n\n [name] {\n background-color: var(--board-renderer-name-background-color);\n opacity: 0.8;\n margin-top: -35px;\n width: 100%;\n color: #fff;\n font-weight: bolder;\n font-size: 13px;\n text-indent: 7px;\n }\n\n [provider] {\n background-color: rgba(0, 0, 0, 0.7);\n width: 100%;\n min-height: 15px;\n font-size: 0.6rem;\n color: #fff;\n text-indent: 7px;\n }\n\n #filter {\n padding: var(--popup-content-padding);\n background-color: var(--font-tools-background-color);\n box-shadow: var(--box-shadow);\n\n position: absolute;\n width: 100%;\n box-sizing: border-box;\n z-index: 1;\n }\n\n #filter * {\n font-size: 15px;\n }\n\n select {\n text-transform: capitalize;\n float: right;\n }\n `\n ]\n\n @property({ type: Array }) fonts: Array<any> = []\n @property({ type: Boolean }) creatable: boolean = false\n @property({ type: String }) provider: string = ''\n\n @query('#main') main!: HTMLElement\n @query('#filter') filter!: HTMLElement\n @query('font-creation-card') creationCard!: { reset: () => {} }\n\n showGotoTop: boolean = false\n\n render() {\n var fonts = this.fonts || []\n\n return html`\n <div id=\"filter\">\n <select\n @change=${(e: Event) => {\n this.provider = (e.currentTarget as HTMLInputElement).value\n }}\n >\n <option value=\"\">--${i18next.t('text.please choose a provider')}--</option>\n ${['google', 'custom'].map(provider => html` <option value=${provider}>${provider}</option> `)}\n </select>\n </div>\n\n <div id=\"main\">\n ${this.creatable\n ? html`\n <font-creation-card\n class=\"card create\"\n @create-font=${(e: CustomEvent) => this.onCreateFont(e)}\n ></font-creation-card>\n `\n : html``}\n ${fonts\n .filter(font => (this.provider ? font.provider === this.provider : true))\n .map(\n font => html`\n <div class=\"card\" @click=${(e: Event) => this.onClickSelect(font)}>\n <div face>\n <font .face=${font.name}>ABCDEFGHIJKLMN</font>\n <font .face=${font.name}>abcdefghijklmn</font>\n </div>\n <div name>${font.name}</div>\n <div provider>${font.provider}</div>\n <div class=\"button-container\">\n <mwc-icon\n @click=${(e: Event) => {\n e.stopPropagation()\n this.toggleActive(font)\n }}\n >${font.active ? 'check_box' : 'check_box_outline_blank'}</mwc-icon\n >\n <mwc-icon\n @click=${(e: Event) => {\n e.stopPropagation()\n this.deleteFont(font)\n }}\n >delete</mwc-icon\n >\n </div>\n </div>\n `\n )}\n </div>\n `\n }\n\n async firstUpdated() {\n var list = this.renderRoot.querySelector('#main')\n\n pulltorefresh({\n container: this.renderRoot,\n scrollable: list,\n refresh: () => {\n return this.refresh()\n }\n })\n\n /* for headroom */\n this.main.addEventListener('scroll', e => {\n const target = e.target as HTMLElement\n this.showGotoTop = target.scrollTop !== 0\n })\n\n await this.requestUpdate()\n\n var originPaddingTop = parseFloat(getComputedStyle(this.main, null).getPropertyValue('padding-top'))\n this.main.style.paddingTop = this.filter.clientHeight + originPaddingTop + 'px'\n var headroom = new Headroom(this.filter, {\n scroller: this.main\n })\n headroom.init()\n }\n\n stateChanged(state: any) {\n this.fonts = state.font\n }\n\n updated(changes: PropertyValues<this>) {\n if (changes.has('fonts')) {\n this.creationCard.reset()\n }\n }\n\n async refresh() {\n return store.dispatch(actionUpdateFontList() as any)\n }\n\n async toggleActive(font: { id: string; active: boolean }) {\n try {\n await updateFont({ id: font.id, active: !font.active })\n this.refresh()\n } catch (e) {\n console.error(e)\n }\n }\n\n async onCreateFont(e: CustomEvent) {\n try {\n await createFont(e.detail)\n this.refresh()\n } catch (e) {\n console.error(e)\n }\n }\n\n async deleteFont(font: { id: string }) {\n try {\n await deleteFont(font.id)\n this.refresh()\n } catch (e) {\n console.error(e)\n }\n }\n\n onClickSelect(font: any) {\n this.dispatchEvent(\n new CustomEvent('font-selected', {\n composed: true,\n bubbles: true,\n detail: {\n font\n }\n })\n )\n }\n}\n"]}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as client from './graphql-client';
|
|
1
|
+
import * as client from './font-graphql-client';
|
|
2
2
|
export const UPDATE_FONT_LIST = 'UPDATE_FONT_LIST';
|
|
3
3
|
export const CLEAR_FONT_LIST = 'CLEAR_FONT_LIST';
|
|
4
4
|
export const actionUpdateFontList = (listParams) => async (dispatch) => {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"redux-font-actions.js","sourceRoot":"","sources":["../../src/redux-font-actions.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,MAAM,
|
|
1
|
+
{"version":3,"file":"redux-font-actions.js","sourceRoot":"","sources":["../../src/redux-font-actions.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,MAAM,uBAAuB,CAAA;AAE/C,MAAM,CAAC,MAAM,gBAAgB,GAAG,kBAAkB,CAAA;AAClD,MAAM,CAAC,MAAM,eAAe,GAAG,iBAAiB,CAAA;AAEhD,MAAM,CAAC,MAAM,oBAAoB,GAC/B,CAAC,UAAgE,EAAE,EAAE,CAAC,KAAK,EAAE,QAAa,EAAE,EAAE;IAC5F,IAAI;QACF,MAAM,KAAK,GAAG,MAAM,MAAM,CAAC,aAAa,CAAC,UAAU,IAAI,EAAE,OAAO,EAAE,EAAE,EAAE,CAAC,CAAA;QAEvE,QAAQ,CAAC;YACP,IAAI,EAAE,gBAAgB;YACtB,IAAI,EAAE,KAAK,IAAI,KAAK,CAAC,KAAK;SAC3B,CAAC,CAAA;KACH;IAAC,OAAO,KAAK,EAAE;QACd,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC,CAAA;QACpB,QAAQ,CAAC;YACP,IAAI,EAAE,eAAe;SACtB,CAAC,CAAA;KACH;AACH,CAAC,CAAA","sourcesContent":["import * as client from './font-graphql-client'\n\nexport const UPDATE_FONT_LIST = 'UPDATE_FONT_LIST'\nexport const CLEAR_FONT_LIST = 'CLEAR_FONT_LIST'\n\nexport const actionUpdateFontList =\n (listParams?: { sortings?: any; filters?: any; pagination?: any }) => async (dispatch: any) => {\n try {\n const fonts = await client.fetchFontList(listParams || { filters: [] })\n\n dispatch({\n type: UPDATE_FONT_LIST,\n list: fonts && fonts.items\n })\n } catch (error) {\n console.error(error)\n dispatch({\n type: CLEAR_FONT_LIST\n })\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.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.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/@material/mwc-icon/node_modules/lit/index.d.ts","../../../node_modules/@material/mwc-icon/mwc-icon.d.ts","../../../node_modules/@material/base/foundation.d.ts","../../../node_modules/@material/mwc-base/node_modules/lit/index.d.ts","../../../node_modules/@material/mwc-base/utils.d.ts","../../../node_modules/@material/base/types.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/node_modules/lit/index.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/@material/mwc-icon-button/node_modules/lit/index.d.ts","../../../node_modules/@material/mwc-icon-button/mwc-icon-button-base.d.ts","../../../node_modules/@material/mwc-icon-button/mwc-icon-button.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-file-selector.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/font-creation-card.ts","../../../node_modules/redux/index.d.ts","../../../node_modules/pwa-helpers/connect-mixin.d.ts","../../headroom/dist/src/headroom.d.ts","../../headroom/dist/src/index.d.ts","../../pull-to-refresh/dist/src/pull-to-refresh-control.d.ts","../../pull-to-refresh/dist/src/pull-to-refresh.d.ts","../../pull-to-refresh/dist/src/index.d.ts","../../../node_modules/pwa-helpers/lazy-reducer-enhancer.d.ts","../../shell/dist/src/store.d.ts","../../shell/dist/src/actions/app.d.ts","../../shell/dist/src/actions/route.d.ts","../../shell/dist/src/actions/index.d.ts","../../shell/dist/src/app/pages/page-view.d.ts","../../shell/dist/src/index.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","../../graphql/dist/src/gql-context.d.ts","../../../node_modules/graphql/version.d.ts","../../../node_modules/graphql/jsutils/maybe.d.ts","../../../node_modules/graphql/language/source.d.ts","../../../node_modules/graphql/language/tokenkind.d.ts","../../../node_modules/graphql/language/ast.d.ts","../../../node_modules/graphql/language/directivelocation.d.ts","../../../node_modules/graphql/jsutils/promiseorvalue.d.ts","../../../node_modules/graphql/jsutils/path.d.ts","../../../node_modules/graphql/type/definition.d.ts","../../../node_modules/graphql/type/directives.d.ts","../../../node_modules/graphql/type/schema.d.ts","../../../node_modules/graphql/language/location.d.ts","../../../node_modules/graphql/error/graphqlerror.d.ts","../../../node_modules/graphql/error/formaterror.d.ts","../../../node_modules/graphql/execution/execute.d.ts","../../../node_modules/graphql/graphql.d.ts","../../../node_modules/graphql/type/scalars.d.ts","../../../node_modules/graphql/type/introspection.d.ts","../../../node_modules/graphql/type/validate.d.ts","../../../node_modules/graphql/type/index.d.ts","../../../node_modules/graphql/language/printlocation.d.ts","../../../node_modules/graphql/language/kinds.d.ts","../../../node_modules/graphql/language/lexer.d.ts","../../../node_modules/graphql/language/parser.d.ts","../../../node_modules/graphql/language/printer.d.ts","../../../node_modules/graphql/language/visitor.d.ts","../../../node_modules/graphql/language/predicates.d.ts","../../../node_modules/graphql/language/index.d.ts","../../../node_modules/graphql/execution/values.d.ts","../../../node_modules/graphql/execution/index.d.ts","../../../node_modules/graphql/subscription/subscribe.d.ts","../../../node_modules/graphql/subscription/index.d.ts","../../../node_modules/graphql/utilities/typeinfo.d.ts","../../../node_modules/graphql/validation/validationcontext.d.ts","../../../node_modules/graphql/validation/validate.d.ts","../../../node_modules/graphql/validation/specifiedrules.d.ts","../../../node_modules/graphql/validation/rules/executabledefinitionsrule.d.ts","../../../node_modules/graphql/validation/rules/fieldsoncorrecttyperule.d.ts","../../../node_modules/graphql/validation/rules/fragmentsoncompositetypesrule.d.ts","../../../node_modules/graphql/validation/rules/knownargumentnamesrule.d.ts","../../../node_modules/graphql/validation/rules/knowndirectivesrule.d.ts","../../../node_modules/graphql/validation/rules/knownfragmentnamesrule.d.ts","../../../node_modules/graphql/validation/rules/knowntypenamesrule.d.ts","../../../node_modules/graphql/validation/rules/loneanonymousoperationrule.d.ts","../../../node_modules/graphql/validation/rules/nofragmentcyclesrule.d.ts","../../../node_modules/graphql/validation/rules/noundefinedvariablesrule.d.ts","../../../node_modules/graphql/validation/rules/nounusedfragmentsrule.d.ts","../../../node_modules/graphql/validation/rules/nounusedvariablesrule.d.ts","../../../node_modules/graphql/validation/rules/overlappingfieldscanbemergedrule.d.ts","../../../node_modules/graphql/validation/rules/possiblefragmentspreadsrule.d.ts","../../../node_modules/graphql/validation/rules/providedrequiredargumentsrule.d.ts","../../../node_modules/graphql/validation/rules/scalarleafsrule.d.ts","../../../node_modules/graphql/validation/rules/singlefieldsubscriptionsrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueargumentnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniquedirectivesperlocationrule.d.ts","../../../node_modules/graphql/validation/rules/uniquefragmentnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueinputfieldnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueoperationnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniquevariablenamesrule.d.ts","../../../node_modules/graphql/validation/rules/valuesofcorrecttyperule.d.ts","../../../node_modules/graphql/validation/rules/variablesareinputtypesrule.d.ts","../../../node_modules/graphql/validation/rules/variablesinallowedpositionrule.d.ts","../../../node_modules/graphql/validation/rules/loneschemadefinitionrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueoperationtypesrule.d.ts","../../../node_modules/graphql/validation/rules/uniquetypenamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueenumvaluenamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniquefielddefinitionnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniquedirectivenamesrule.d.ts","../../../node_modules/graphql/validation/rules/possibletypeextensionsrule.d.ts","../../../node_modules/graphql/validation/rules/custom/nodeprecatedcustomrule.d.ts","../../../node_modules/graphql/validation/rules/custom/noschemaintrospectioncustomrule.d.ts","../../../node_modules/graphql/validation/index.d.ts","../../../node_modules/graphql/error/syntaxerror.d.ts","../../../node_modules/graphql/error/locatederror.d.ts","../../../node_modules/graphql/error/index.d.ts","../../../node_modules/graphql/utilities/getintrospectionquery.d.ts","../../../node_modules/graphql/utilities/getoperationast.d.ts","../../../node_modules/graphql/utilities/getoperationroottype.d.ts","../../../node_modules/graphql/utilities/introspectionfromschema.d.ts","../../../node_modules/graphql/utilities/buildclientschema.d.ts","../../../node_modules/graphql/utilities/buildastschema.d.ts","../../../node_modules/graphql/utilities/extendschema.d.ts","../../../node_modules/graphql/utilities/lexicographicsortschema.d.ts","../../../node_modules/graphql/utilities/printschema.d.ts","../../../node_modules/graphql/utilities/typefromast.d.ts","../../../node_modules/graphql/utilities/valuefromast.d.ts","../../../node_modules/graphql/utilities/valuefromastuntyped.d.ts","../../../node_modules/graphql/utilities/astfromvalue.d.ts","../../../node_modules/graphql/utilities/coerceinputvalue.d.ts","../../../node_modules/graphql/utilities/concatast.d.ts","../../../node_modules/graphql/utilities/separateoperations.d.ts","../../../node_modules/graphql/utilities/stripignoredcharacters.d.ts","../../../node_modules/graphql/utilities/typecomparators.d.ts","../../../node_modules/graphql/utilities/assertvalidname.d.ts","../../../node_modules/graphql/utilities/findbreakingchanges.d.ts","../../../node_modules/graphql/utilities/typedquerydocumentnode.d.ts","../../../node_modules/graphql/utilities/finddeprecatedusages.d.ts","../../../node_modules/graphql/utilities/index.d.ts","../../../node_modules/graphql/index.d.ts","../../../node_modules/ts-invariant/lib/invariant.d.ts","../../../node_modules/@apollo/client/utilities/globals/dev.d.ts","../../../node_modules/@apollo/client/utilities/globals/maybe.d.ts","../../../node_modules/@apollo/client/utilities/globals/global.d.ts","../../../node_modules/@apollo/client/utilities/globals/index.d.ts","../../../node_modules/@apollo/client/utilities/graphql/directives.d.ts","../../../node_modules/@apollo/client/utilities/graphql/fragments.d.ts","../../../node_modules/@apollo/client/utilities/graphql/getfromast.d.ts","../../../node_modules/@apollo/client/utilities/graphql/storeutils.d.ts","../../../node_modules/@apollo/client/utilities/graphql/transform.d.ts","../../../node_modules/@graphql-typed-document-node/core/dist/index.d.ts","../../../node_modules/@wry/trie/lib/trie.d.ts","../../../node_modules/@apollo/client/cache/core/types/cache.d.ts","../../../node_modules/@apollo/client/cache/inmemory/entitystore.d.ts","../../../node_modules/@apollo/client/cache/inmemory/types.d.ts","../../../node_modules/@apollo/client/cache/inmemory/fixpolyfills.d.ts","../../../node_modules/@apollo/client/cache/inmemory/reactivevars.d.ts","../../../node_modules/@apollo/client/cache/inmemory/inmemorycache.d.ts","../../../node_modules/@apollo/client/cache/inmemory/object-canon.d.ts","../../../node_modules/@apollo/client/cache/inmemory/readfromstore.d.ts","../../../node_modules/@apollo/client/cache/inmemory/writetostore.d.ts","../../../node_modules/@apollo/client/cache/inmemory/policies.d.ts","../../../node_modules/@apollo/client/cache/core/types/common.d.ts","../../../node_modules/@apollo/client/cache/core/types/dataproxy.d.ts","../../../node_modules/@apollo/client/cache/core/cache.d.ts","../../../node_modules/@apollo/client/cache/inmemory/helpers.d.ts","../../../node_modules/@apollo/client/cache/index.d.ts","../../../node_modules/@apollo/client/utilities/policies/pagination.d.ts","../../../node_modules/zen-observable-ts/module.d.ts","../../../node_modules/@apollo/client/node_modules/symbol-observable/index.d.ts","../../../node_modules/@apollo/client/utilities/observables/observable.d.ts","../../../node_modules/@apollo/client/utilities/common/objects.d.ts","../../../node_modules/@apollo/client/utilities/common/mergedeep.d.ts","../../../node_modules/@apollo/client/utilities/common/clonedeep.d.ts","../../../node_modules/@apollo/client/utilities/common/maybedeepfreeze.d.ts","../../../node_modules/@apollo/client/utilities/observables/iteration.d.ts","../../../node_modules/@apollo/client/utilities/observables/asyncmap.d.ts","../../../node_modules/@apollo/client/utilities/observables/concast.d.ts","../../../node_modules/@apollo/client/utilities/observables/subclassing.d.ts","../../../node_modules/@apollo/client/utilities/common/arrays.d.ts","../../../node_modules/@apollo/client/utilities/common/errorhandling.d.ts","../../../node_modules/@apollo/client/utilities/common/canuse.d.ts","../../../node_modules/@apollo/client/utilities/common/compact.d.ts","../../../node_modules/@apollo/client/utilities/common/makeuniqueid.d.ts","../../../node_modules/@apollo/client/utilities/common/stringifyfordisplay.d.ts","../../../node_modules/@apollo/client/utilities/common/mergeoptions.d.ts","../../../node_modules/@apollo/client/utilities/types/isstrictlyany.d.ts","../../../node_modules/@apollo/client/utilities/index.d.ts","../../../node_modules/@apollo/client/link/core/types.d.ts","../../../node_modules/@apollo/client/link/core/apollolink.d.ts","../../../node_modules/@apollo/client/link/core/empty.d.ts","../../../node_modules/@apollo/client/link/core/from.d.ts","../../../node_modules/@apollo/client/link/core/split.d.ts","../../../node_modules/@apollo/client/link/core/concat.d.ts","../../../node_modules/@apollo/client/link/core/execute.d.ts","../../../node_modules/@apollo/client/link/core/index.d.ts","../../../node_modules/@apollo/client/link/http/parseandcheckhttpresponse.d.ts","../../../node_modules/@apollo/client/link/http/serializefetchparameter.d.ts","../../../node_modules/@apollo/client/link/http/selecthttpoptionsandbody.d.ts","../../../node_modules/@apollo/client/link/http/checkfetcher.d.ts","../../../node_modules/@apollo/client/link/http/createsignalifsupported.d.ts","../../../node_modules/@apollo/client/link/http/selecturi.d.ts","../../../node_modules/@apollo/client/link/http/createhttplink.d.ts","../../../node_modules/@apollo/client/link/http/httplink.d.ts","../../../node_modules/@apollo/client/link/http/rewriteuriforget.d.ts","../../../node_modules/@apollo/client/link/http/index.d.ts","../../../node_modules/@apollo/client/core/networkstatus.d.ts","../../../node_modules/@apollo/client/link/utils/fromerror.d.ts","../../../node_modules/@apollo/client/link/utils/topromise.d.ts","../../../node_modules/@apollo/client/link/utils/frompromise.d.ts","../../../node_modules/@apollo/client/link/utils/throwservererror.d.ts","../../../node_modules/@apollo/client/link/utils/validateoperation.d.ts","../../../node_modules/@apollo/client/link/utils/createoperation.d.ts","../../../node_modules/@apollo/client/link/utils/transformoperation.d.ts","../../../node_modules/@apollo/client/link/utils/index.d.ts","../../../node_modules/@apollo/client/errors/index.d.ts","../../../node_modules/@apollo/client/core/queryinfo.d.ts","../../../node_modules/@apollo/client/core/localstate.d.ts","../../../node_modules/@apollo/client/core/types.d.ts","../../../node_modules/@apollo/client/core/watchqueryoptions.d.ts","../../../node_modules/@apollo/client/core/querymanager.d.ts","../../../node_modules/@apollo/client/core/observablequery.d.ts","../../../node_modules/@apollo/client/core/apolloclient.d.ts","../../../node_modules/graphql-tag/lib/index.d.ts","../../../node_modules/@apollo/client/core/index.d.ts","../../../node_modules/@types/react/global.d.ts","../../../node_modules/@types/react/node_modules/csstype/index.d.ts","../../../node_modules/@types/prop-types/index.d.ts","../../../node_modules/@types/scheduler/tracing.d.ts","../../../node_modules/@types/react/index.d.ts","../../../node_modules/@apollo/client/react/context/apolloconsumer.d.ts","../../../node_modules/@apollo/client/react/ssr/getdatafromtree.d.ts","../../../node_modules/@apollo/client/react/ssr/rendertostringwithdata.d.ts","../../../node_modules/@apollo/client/react/types/types.d.ts","../../../node_modules/@apollo/client/react/ssr/renderpromises.d.ts","../../../node_modules/@apollo/client/react/ssr/index.d.ts","../../../node_modules/@apollo/client/react/context/apollocontext.d.ts","../../../node_modules/@apollo/client/react/context/apolloprovider.d.ts","../../../node_modules/@apollo/client/react/context/index.d.ts","../../../node_modules/@apollo/client/react/hooks/useapolloclient.d.ts","../../../node_modules/@apollo/client/react/hooks/uselazyquery.d.ts","../../../node_modules/@apollo/client/react/hooks/usemutation.d.ts","../../../node_modules/@apollo/client/react/hooks/usequery.d.ts","../../../node_modules/@apollo/client/react/hooks/usesubscription.d.ts","../../../node_modules/@apollo/client/react/hooks/usereactivevar.d.ts","../../../node_modules/@apollo/client/react/hooks/index.d.ts","../../../node_modules/@apollo/client/react/parser/index.d.ts","../../../node_modules/@apollo/client/react/index.d.ts","../../../node_modules/@apollo/client/index.d.ts","../../graphql/dist/src/graphql-client.d.ts","../../graphql/dist/src/json-to-grqphql-query.d.ts","../../graphql/dist/src/index.d.ts","../src/graphql-client.ts","../src/redux-font-actions.ts","../src/font-selector.ts","../../layout/dist/src/initializer.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/ox-floating-overlay.d.ts","../../popup/dist/src/open-popup.d.ts","../../popup/dist/src/index.d.ts","../../../node_modules/@material/mwc-button/node_modules/lit/index.d.ts","../../../node_modules/lit-html/directives/class-map.d.ts","../../../node_modules/@material/mwc-button/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","../../layout/dist/src/layouts/ox-snack-bar.d.ts","../../layout/dist/src/components/ox-resize-splitter.d.ts","../../layout/dist/src/layouts/ox-header-bar.d.ts","../../layout/dist/src/layouts/ox-nav-bar.d.ts","../../layout/dist/src/layouts/ox-aside-bar.d.ts","../../layout/dist/src/layouts/ox-footer-bar.d.ts","../../layout/dist/src/actions/layout.d.ts","../../layout/dist/src/actions/snackbar.d.ts","../../layout/dist/src/index.d.ts","../src/ox-font-selector.ts","../../property-editor/dist/src/types.d.ts","../../property-editor/dist/src/ox-property-editor.d.ts","../../property-editor/dist/src/index.d.ts","../src/ox-property-editor-font-selector.ts","../../../node_modules/@types/webfontloader/index.d.ts","../src/redux-font-reducers.ts","../src/index.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/test.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":"f5c28122bee592cfaf5c72ed7bcc47f453b79778ffa6e301f45d21a0970719d4","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3f149f903dd20dfeb7c80e228b659f0e436532de772469980dbd00702cc05cc1","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","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":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"cd483c056da900716879771893a3c9772b66c3c88f8943b4205aec738a94b1d0","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"c37f8a49593a0030eecb51bbfa270e709bec9d79a6cc3bb851ef348d4e6b26f8","affectsGlobalScope":true},"14a84fbe4ec531dcbaf5d2594fd95df107258e60ae6c6a076404f13c3f66f28e","6e2c5a9358c2be6791713f778c3af2d3357b8665d881e22f50b3aa861a2a9717","1e5743b25a63fd34ffbae89adcbf248ee17db6ed08d90079ffa93803c3e80d2a","13bb750b495c48fd60d7b5e09f65d4a7b010ab7e09a8943a6d54511e7d184f84","2fcd2d22b1f30555e785105597cd8f57ed50300e213c4f1bbca6ae149f782c38",{"version":"bb4248c7f953233ac52332088fac897d62b82be07244e551d87c5049600b6cf7","affectsGlobalScope":true},"3f30c6b57bf5eb7a7d4298506b78b18d428a39a409e1eadd93a3fdd0299d2687","8be48c7828a22d50f128f317cdd8ac25ef0ee54c877b8b5c464887234f619783","eba7cf33380cc3a3cf614faf67300e14d0bdff9ea6c5cd6f4b040b1756a48ab1","f07a77a7fb1d49aa2b61cb68bf712a083487acd7130d20223a83de03af0c257d",{"version":"27b285e901600242883d62a5fff9f5d262c6fa128b6e6c6963f981f2630a957e","affectsGlobalScope":true},"a0667520a6521c12128fc28cbd5b2af58eef11c5b2a7441e0f0d47f50bf6c8e3","f07a77a7fb1d49aa2b61cb68bf712a083487acd7130d20223a83de03af0c257d","0dcf4c2bf1bb547e2ae5b8dce4656a56fbd15e3401ff5236ea0b93b6c60f9249","820c26194ad4089bc503b02bbedbd86a865e9c8a05c58ef88c8d19d9c019712a","790b453e1b76814112c3870d6e12f5db992d3194fdb3529445317dd75cb538be","d375de88ab19f6c105a65fc89eca1ae782362c5c395283b0c85ef39c7b835dfe","aeda2fffbc651fe1fa60b913d45f291f5544c4840206cb3b1badc16d9f01a0f0","7b3c1d688dcb8645b5a6c37bce5b047da92b4c298ed8709e03e987e0efb035b1","f07a77a7fb1d49aa2b61cb68bf712a083487acd7130d20223a83de03af0c257d","29c64e1acb5b73f08a60e71154c65c8a34f885f1f2cc55ffa06dfd244c058883",{"version":"7d176f155e5f6fc9756ddcc1a6d3eb2673030a066e2b7846dfc81b5271f3e269","affectsGlobalScope":true},"024fea9ee598cfe747f18340ad74e4ea428fc2a7988250ff9fcfce5673b7d422","aea18a267a0770c365cc390ad0a0b9725ed7a4540e9a96319b0f5094ee0ca124","f07a77a7fb1d49aa2b61cb68bf712a083487acd7130d20223a83de03af0c257d","a5a7c7d197c7b1918bddb0dd30bf8979a38828b24467ec45db093bf4621507ef",{"version":"afcd875785333f656f79bf1b3a445ceecc6aaf8e2b7cde59309a8778f41de613","affectsGlobalScope":true},"f07a77a7fb1d49aa2b61cb68bf712a083487acd7130d20223a83de03af0c257d","97c58f6db61d45712d91d2260994817ae2b568bbb37cc280013079b6b5d2232d","ac388c7c7a262213a3700451bc921e382a93fb27c0252c34ccf03540b4ce044b","1da789e534bc558808021dd64abf33a91a68e422bbf28aeec236bd74df640401","fb0107c83e2e0e75b77dacd0c3c6c3ab6844e98dce2a8f858c6f0a57c12136a6","0a478dcb6e6bd8a5d871165659c79cee7b8c3b7a87289118d22e1a04d171e252","e385eb01000d045ea07cea09c488f66e051709a9ac460bf271623f9984e0c419","bf69beba89702c85d84546269e0d4e8b128d32e26b314ee9b501b0b32c82490b","46f3a421b048670d16a3c02589261f17c1cea687f2602eed31e1335b53aed785","4bcb813ea56182beaaab1e8274524eb9f1449b0d8e79efc4a0399de09e43f816","c784eab1cf838d9d6527bce3d9f2d373145606666b68f7610291a7adf6e6bda9","f0380f581cb015778c0fe51e95b5b7f6dae237280654558469b2486c1572268a",{"version":"1cedf457fc86fac950c3200d6d450195cdd8b1095bcfd55189090a4bcde7b3ff","signature":"12ad9329886b0764414ac0c3a50cc4d68b9d0c43b1b555f0d2af5e5027b967ea"},"fbfa634e3741c9b9db36bf081b78365170b31650c7d2f8b9e8d631c7b9bb5bd8","0f81a53d54fd2b4ae2bf60067d616de99884bda21cb5784d942089d52319fb97","7b542379501867f7d2418681fbea38f75c756c2dd67e00e14ab1e125ae604095","29dca1b5f0cac95b675f86c7846f9d587ed47cc46609dd00d152bcb37683b069","a616e1b4eed03c1feb2a6fba721e5cbcb9c23cbe29c1858949a361f80719c0e8","48ba49f8bfce8c08ad1e7e54f0b85da9db7317ca76835d1c2640567e3fbd50c6",{"version":"e84eae78d66683004da65fb65dac1ed1b12415fc74a98a37dec902a5a46d6e44","signature":"bf865da40b7c88af30ccd782cda30cb26ac07e34db2f8e2de1a7ff18415140d6"},{"version":"fd624f7d7b264922476685870f08c5e1c6d6a0f05dee2429a9747b41f6b699d4","affectsGlobalScope":true},"23c05cc4d97aa608b5ea8badadb4e1b0c4e306ed5d651c5d1760552e91d1ad92","769c966ef166205a08c0382a298a6c5877951599d805931a963ae5650ee46391","35c1202e93852c1c233191971b8c4aefe5d3f9df287991585fe305078c0880e6","690a59ec8ef431839c447cd88fbb0bd0ce59c037736d8748737d4e0f2ed57077","4a2a6bd6a36b058effc58d1aab136cdbd66188773470885a4b414098a0d76821","b12f96f442196be954b8fa982f179527fff05a796962fecfb6e12b0a2c1b6867","701978f3975f96e76e3ffc2e1762e3a97e3d323812049fb6fdfd559579b89708",{"version":"4ab17f80ced148d509345cee706b2b85941515dd76e32cf47118bcdf6a4bd56a","affectsGlobalScope":true},"641089f0b8094ef74b9d4b3364d5dec1592d5e3b8a51c1ba491bc8872049e79a","6d0c23f8c9efcd67b96bae7e7140cd9fdfeacc314c79220f48aaa5086585e31d","0dd5f5946c922d5bcf94d0b088bfed3f6a4dd3331e9fce9423d0adbb60c889c1","6bf72b2541469cac7a7882468d25a04fdff489625452ff7d3e670c764e5a9ba1","5257b95e47714b754c367ce742ada7042aade5bf8c88bc7dd5a23194e3a50fb0","cf93fb9208a01c80f0fad245c4360356e5de6c2384b7641acf0b9cc2f5c42448","336398b0efaf964124e636a9b29c4edd5870aee79ac64bf87be58a9d66b7c048","571bc65ec37ba124e762bb822e14a2b8502dc684e356be8feaccbd6b9cadd023","2bbbefc1235500bdb5091f240dc8cba861a95342272f7d11b7574a0d2ef4f85e","7cd455fc4c4818f19263d73b29c59f3fb5fd54b45a6ab83ca3eb3661281db56b","1c6b9b5501774a2ece6574be8e26092800e3f1f836f8c179b4f9fdd271a620f8","0929ec89582904044a56ca8220114b7256450a197da22eb5c9b630be69a41372","7d54d48a4365f355a7759b1e29f43dea9163a9445d3f26e1234dea0af3e6a16d","fd179d7b68260caf075aaabe202dfd39622403405beec3c7a697dec1df338cb2","d086d18c6de38fff9261952724c77cfb8915e09d8e927133565f368ae3f80f6d","115d60d2b07ac7d513543b5e86e13bbf9a9524faf8bdf4985bd7a08815b46406","4a1545bdbccec0209a67da02f760fad629deedbe7d8ac9f55c93c82f95ff5449","7b52c21bd6397ca26df3b7863fa2d5014aa4bbf5621377769726bbd59956e6bc","6b93d6b362ef33a455a7852f7891a6023a8a2bbb03a81cf84bb0f2b627673148","641b9da0622e0225740b5a55f47af9f23f01bf8f4dcbfb81128c16b585900717","5534c99590ae8b633509d9e4d2e1a7bf6511cb7fd1710c36d7723c2f9486aeba","431666f207d18bf924ef0c3b8e1ffabe4e050becb25a82feb9d57355a55ec43d","3ace48f46b43fec335799729ecba491fba8478ef911bbaba4e64ae91ac284082","0da6adbb172817b7101eb1fc5a93310d5b140ac7c3678e3f8891d6177d1f2ce8","95210bf2a09475e9e19fe532fdc2562dced3536fc50f92aad88466950ff11160","912e51e547d6297d2dc7611148c27ed51dbfc544e35298bc30d846e0ae51c376","032aa0bbc88640270f29cfee50f0857ebd903dee14626eb9ec52043d75765173","d24cd8c79f8eb91b85d4a61e75188504f0d2dcd6ab8ebb87ac22a8ba0ec200b2","70055bc7cbe14541919f4b9e4c488b31cc901fa8defa32827ca3ba955a409762","155dc0abafc201d20cb2c4c54d631e13cf286f5a757fff975dc2dd7e196380fe","256eb1263ff0eae669dd39371245c70e082437ebd01dac855dda8ef5bc5a1330","b56adcca0e4ea4e2ff1a527006c90a7eecf5c0637f10b7232d5a6ffb40e1a47e","92910a77d5284b3bb6fb8fa17209d7128619b23a05d8c38b63dbe7b102552145","3084564f4782aacb5f60dee152f260a73b7ec7093432626814d019d2f871b1e9","67aaa92c35872e8ac9ca6092e0010db368656740e28e4486c2cf8064e536d057","04b00c8e04b88f9dd0aefaec6b8c42fa4d1ffdfd9a73131cb6d96b185978d536","17eab666f34227a634a3e24041ea06a7f52cd0216411de7dea6bccaef7ab62ac","1d8dc736a80d377b4ce3b78568038c796485e604cb9c5c664ac5718a5fb63c41","9df9a424cba33791a9f05592ce73c61a6ea6cd0e8d02b5d634601d169e28229c","1a1cfc77cc8eb4bf26f01d2da8059920873646a67cb359e41d5b0842cd423271","4d33127708c239d63baa8c5bdf6f23e50e4a40527bce36e5511bf6d655c873f3","2626836cf152b2231a1d800779a594695b029c19bd49a150e5e994f788a8d9e1","8315d8694e8042084de91475cdb9cc307e50c3b4154776294c899eb7e47bbd09","9fce90d4533619eb5754806401668fa487fbdf0efeeb30c43299aef5a0b5c552","a0aba12f2b210e2151aa6ff772c4c0e1115d437306e1942d7b71f0b45c48ccf3","3b59126bda683d0720973054280a28f57af77498b081985b15779fe85dc96f77","fadd926f5d4644bf9e3161c69104c9f5246e5a5cffbf9076399c3b086ee7f0d3","da2266dd4ecebf71026539d95e36674563a06f869a53ae8e837d512161013dee","e4b3c4ec3ccd3fbe8ed62f6eb3b39c9f0ad574a35eafd1a31077c1e8dd29e93d","4dbbbf7f7b59aa88c2dda60aed5a06c5a57f29b6f931f70ac53bf6cc8aac1cef","8da32928f6184ecfa071cb9aac8e886a640ec68000d72b1fc47a85b5778bdbba","c737d79aaa58f7b5225de26005f12cbfeb60d6e1c0799df85c372a5b3498b313","ccb092565dcf7e8e9eb07dabe8f77a257bb18d10745b78f09501a2826f0b9f7e","50001c90059bbb2d06aabb16ad94b44a9a3dbd0b76a7ad1fbceef53c67ed67ff","103cc813c979b72c032d57fd398bb8a7de019c009a0cd8968f90f149a21c7b09","85aeedbb5aaee4ebb373587871ef070586a3b76eedd345db9dfba6b76bb3d7c0","9fa580d16a5b066442f16778c2846ee169e7ba421f45cd841bcf6d44495b9b13","9cec7eef215c0e9a903104033b96bd6c14fb71dc8b6084c81c869c39acb84101","d204930d40cace62928e7318026791c1e0cef281a06eabde7a98ddddf57154dc","f96b8ea264d72de393165690a473893934773a21cbc29ebadf22a2bbb2e64df2","d2bb51b12f0a2f927774a9a9affed26f0cd925f440f2352c833c55f695b65890","239689e40d3935cd4f340798982febacca88f44ca353b503f654ccb4233370fb","19d4b8c121977c1ea5ad800579d5a4a69007796faa9a547add76a6e94ab91ab4","c70f356c83e8167cd33cc119e908d1d32a9736e8b9f130f8d88fd0d9d498831a","eb9d456c9ba78783d6044925a34d2edcc4ab519bc366e5b42f82fa714eb3d6ae","434ac011dacc3b2659595fbc0555800dd725e626b29cc83292abdb6517262e32","520da364d225aa51b0e7b7adb8fd1a7489a6f680f4bb37ca573024147de84100","aca1a7376ae8f37e0c2b9447633196e3e1671371193451bae8c1ff09e58bad1a","c1c25d86e86ac79472059cf4249b20e04e36f06ead16296a78df76561c9ab59d","c766a7f306fa53af2dacface548cb9590202209e19cd8677febbd66261837a7a","8c403008299cb52d4fb675e9a4cd732a52f1c4c39dba4b2d33a197192c343ea5","c37bf53cf0701fedc43913d79405dcab26450c5aa8afe8bd1b2b4a049da748ae","ebb6dcacb4caa1f40b085fda697f84860fcb74cf3bbb15d5a4f5e0dc27edc6c8","5191da1f2d2e5d8aa799ec10e571e434dc544e9a3e600eeb7dce881f88c3146a","ecf8bb458fd8aa581d044827f214f4c108bd93a32140bd2ed29ca6f2af1bf72f","544e42686ffda36f20b22830f1c1ae966ab1ba4b1f1e6bc68dc6c51d2ace867b","19e18f2211b420eef79412c0bc407119617a7e7699af24d3c70d7d88ee14b2c2","57eb3245f592f2382e2f79b5bdcd3684ba5a21bc0b411de82ef8101284aeb213","74e6286c0c9e2336ac18e6103a82e90a781985604418ff37a695bf9e91148577","53b7b0ad34feb6667b7aa137afb2f87316e8eb2c15d6327355353224fe47b55b","5b581648b2a40a6f970cd938b57270e5e2febf41bfb2813d3176a4ccd9e8fcd5","e74d4b1989725bbdd6ba672055b4e769d3eb90f294d99a683997d1fa6dd3cad5","04017eca924a3c90094ebc57fdc0d60d1c37a8592c988af07926e341fe91fc0b","08b1e0a48d64af7ea99e7911db1a540ebcfef468b4a62c589c40e2de630d786e","f473e9a749dd87ab056d387c4454faba9d21c921b744afbcf9b989043273d44f","cd674d3401bf5b290da4a5e31890305ba67a378b2c01aa8da6ac73feb0685f50","01a1038d946f7820cfb6136f103dc282e3d2cbe8ad2ea244bbe1c15a94727cfb","6123fa53525865f0f96b5e59f98bf56aba6ba4acaa171ec23676d13bc0b77020","19f96045ebaef51fbea86ab5d00f98fd18381eaf54aefe4a6d4d1cd02b866e7d","9ef452a63549b5d29f8c0a8ad8af73e33d23f388b9f34992b8ea9b8c80e2e219","44faba923fbff252b227ab2222946cc55ab7a8d2c941e56afa7d5f4dc38bebbc","005605697e492ea72f9fc309fa31ee8587e0478bbfc9bb72676559dab2f39339","a1c1195f9dd70a8de22947a275074d1c30571c61f762518291e748a7e644ac9e","f2949ec3b920d10267dff3f4803b3db920f81401182af62740a41e76cc26d8f6","23cfdfc12051eef1bddaff6d95cbda090174b36fb105c7d263acdadb76da1577","ffee2f0960a86ceada047cffc3404363bf9e7783e30848199c4d90cb210123dd","e004995dfdf9fd1a97f47cdc6b74ba0f1da186736eac03c6856412661ac6a6d4","36a29c4843b36ccf4b6f0ed12763414a3516f0176563747b99c016ab3a570922","8ce2616be99a635b1346deef302d68969006b044fc82d6992abb432a4956dc6a","ad73903fb76951a5cd4c4e91d9eed60fb9b0114b1477c2da5c55691dd78cdfe6","9db5c31039049a999fe86ec606d07f9fe0074cf9289400c8f7a5f7ffb5719e9f","ccd23805724c86c86eccc2a73e9f1438c7b0a6e08647c0f54f6c2b3f505026a5","101c66c0a04753be2f1604483f98e1f072d1a95418345d3a7593de7ddfd92fc9","ec007e489e7403a1b46f85392a94fef09533a2bb12f9b98e9d433871aac66b5a","8b26b547fc41921b66353c05c2dbdbdb1dc8d0b60a9ea60f912787818bb9c42c","dbce3e1a32c2696ee8f056b92d2442fc0370f7e3d8d95dddc88cdc8d3ca03454","15ac98e72a64754e1a2c673e630f0c3e6dc163ec18ebf326f7f88f45bb80f526","e4188659bc53e80d6c46cf76e5bdc2968a137166f1e5a853088fc6a0aed4f52b","ea3882010173f50840078eb0e7b013a8a1d9d2b23dbe1725fb0e8350c9abd856","85968e53cc97754877d8b409ca3815b1c0f1c4317d41d47b7975a31e8f3a5bf4","b318a3e94029ffc01f1a3eb1797647bf7487a2a179d4da963043c42fdaf0b4f5","05f82884018fbd03c6512b56d11a712c0282dd1df6338473a2ca5bcacffa8fb9","200a7b7eb3163da4327412c650e43fbe66c73604a23a694f95ede53c250bfc3b","f254a186c5fc9355b388d5e1643b9f85cb3a84c03d48b0ce7297a352db0b367d","a960dc35ca7a0854d06432d698547debe3a4760438deea197fde8a3ff2101180","5b3386f2d01b9af3d84e1854845ef04b26f742c6337fd0e855a987333f8240df","45f238c699f946ac07f7e7eb7f1ae65b7da6323b8146a7cf5b3fd775b8c00b11","fd7059d47830c465f3a32f1928bd61f7ccb62dac8089ecea0c5b2b365afd9b64","f26f3b22a0ce930bf8e6eb27806db849f616784527a93269c2e3861e875815e8","2c309164cb0e2c526d1d275589679024e669a77ada61d5ec7a3ec93b8cbd542c","353ff6badc7a53ba2487f4eb074bd5d0b41db4984134e507b1f6f766780b82fb","55ac490a5bdc6da1941875c26371e1e94a73b0593ae26509df4c0b6616ad674f","233fc0209343fa04c2a458537b4aaed00bed49f5db212a1fe5200dcee6e2fa4e","b830de197c8889ab5f03fc2211c2e1cee4478c4a5ceb05af2eaea23d9af3af0a","b62564be4535552ed34c9cececa78a0da7dd5447351e195e8cefaada1ba21129","4c9d4f0962f0caf85200c783d97f7049c5e58a48c6a5825e51fc6f0b974b0e9d","d737fc71b51b3e6c591e3edba25062644bbc95696240460adf5c9109df763fe5","b3dec0879e876086c6bd5d93b671bf3a034da7712ea60b6e815f1de987df060a","50134fabe24e7eb552897d84d2eaefc923d7577a5fef9427e268c469d8cdc7e1","00d3b08e4ea2d4d02e180810c9f6b03be1977d9d2ea5389141d3363efcd58f3c","5c7b4d69e9d49382954fb7c46b9e368b517b11a5f55f34e66b8fd9951fed6d34","47ca4f700d7cbd844259cb0fb35fbe484fdef7b794a6c60c3c8dfe02ad4be3b2","a34a4b7870a629ef38a8912c8ed915d7300fc555ebb75eaae4e1c502222628bb","f91a4509eb86e40562a7befcfbe7fe10776612196f44a4c9e0aada159b903b6d","f8555900075ce2073dedb0818960ea42b52d18e5729b44a6dc75c43bbd088ed1","dbd825417d2051294de6b53445bef43b0527e200d78e1a8ae6cfaf818da50278","c2bbb1290dfda842dc0b66a9d50da29972b5bcafd3d4b124a74cef3d3d2af610","efba682f8523e9957fe6a8c0a2630b2e24f45d53e448cd60500269e5cbf3d251","b2c46988d6d7d3d0da5cc2fa0c80e8a4adcb309071d4264ba6d30f2d67cd642c","ab218a7d41436bd2cae6bcbf7371bc9321786471de9997816e549184c3bdc335","9b51dd74a388c13e157c457cc39d59dc2aae2134f6a21cc6b695219932cb8817",{"version":"db06f4cdf70e3689f0cd5a96a6836f34024ad61e8dd01473560ebbcae09c532b","affectsGlobalScope":true},"6c71a186369074378653c84fe944b269db54501e33e790791d59a106482aae86","41db1e358120ce74584d9cf596344db2702f305b649c6c8c55ad4e27c440eaf1","ffb162ad0b1e5c1d9882a81a6af2ee94db93dc4f9fcfeb5e5a7a1025a40c1a24","d18cafabd6456b23ebcf11198c9c056a56361facb07977c653cce50a6ba184f9","29cce97240f57803d3ebbd2dce484634ff8646088287203d461dd97ae29cc692","29bfbafb7d1b80882c83b108f5242bd78aaad7fefc464fda5f571ffe6d8c5a99","a93475d7baca260e4db85215cfa6e59b2357e1f526b056b18ed9c4493e7b80c3","eaed3a7faeb31229dc14e0c13c30b7ce6ee625be2c684e13dbaf46f19b5cad50","820a5ca18bb09bc50ebd1856794e9dfbc5a7f855f610e6f9d59cbe3b9e1a7c8f","364524cd4d5db23c9d6aaaa9a8fb2f6d067fb39122728b78efed43055677bdbe","746b1ad552967231e762f8742671ad1f700e3dc3e259aa5def3a1f7f31135aff","e11cf956b17e2f7287e14c05d3790f34afc54d1d54b4c74b69b8c1849109feed","3e79b1b6beb23ce850766d185e632d24442afbd54667891c2e052c3ba93062d1","25978fa21b2728d3277888d33df9272738605df94140b4b0c883cf352ec31ca6","c9e5c708eb84894b985071080652da531d4b27ca8cb60963521270239cfe8c20","37d03426db10f974cc01937c9d121c99d9272ffa801d18fe90c4c91c6c98311b","89561071bc9d84d0d763b929dc34b0920365cd79d5f2a264b4b22a1f211c61d4","d762a442207965c55ed3185731d4a66fafdc0262c623d16ffb214acac18e3b4a","63d3ddfad484b1e3c3e4a3890fa312721064c8570c437081e597b8941a9b0be3","074d0c29700bd9667bc549f460ce2097132e13b2cfafac16be9dbe38756adc17","d20248b40c769f2957741b1fde5580cb2d4cb4c28651f7fd250eb02fa6c98f09","514791e8c0e59bd61576e76f61db12272e949bab76a3af11ccedfb75be3d4794","ad17364042b079f3c14b7d29eac304bcfe25cceb3565b4973f387bf1d5d27782","fccb69b68f78d7fbba625c31a5622a0682dbf8e88b51fd03ea50e721ca596296","2daed8a6f384d9bbfda7a08ad51f194ea391e1a4a581ab8c6af08822d2e1d86e","2f2dca6bd4f2f67a44848a53407e8b19ad36d0fe78b938b612494794d15e4139","b7ebd94ed755d68d46fdb6f1e3c031eb72c8942a08dc9bf4afbc5586d3efbb27","ff5fad599a44994948615b02ab9a4b10215fb631ecbc4d6e0fc8943ba8452d5a","363ae6ba6e8903b1972f9d9b9a57e69df939b2b7294a760ea4bccf2756e48f74","59e117fad3dc25be31325b8595d65e4fad0a323519b244f7095735b29740798e","3245a023245b2174422c427b2826ec5d28e689665b32dfe717b9921f13503c40","ba1380651f4f31c52a3b68dfbd2e820de6bb64de494930b6e990e99f1296edc9","e4dca3b5d2b2f31cfbbeeeefa2a5d2e909c61c00f17aa7be9fc396170981e368","131fdc917c4eec9e3b03d1ccd9a1154ca03cce5c9b3abc5e12677a5234c1ece8","e32e499cdb189c52a79433d0715e822419b6581199df2e93974378269ea7d528","b0b83a5d3e15193408b4145b8e27ffea7666c0a163e9f5f7e95ef960363d9fe1","c754af99b43287268ab8d94c69f0f9005ef3b029a0d35001d2af3297f8cf9f28","dfa584f5099cb5deee0c65137055b520473a23d9e20041bcbc107f2e9592cf14","f5800d0a2b11c8338d1205543f7352850deb101ba2372eb395839a60f9132d94","228700f3848072c320cf259ad6092013128639fd4f28d50a009f7409329865aa","3e7f64156b20e71249be6e8ce2f4ec5eaf265bd82156b75623a9c1044b11ddf5","70d7baad641e61f0e2f32dfb089aae0ffee36080ba0d1405c8be8b740421ea92","0e96ef72a2d31523a5eed98ceccd861e08ec69469fc269e7248e45c4fc66bcf8","6e83430621d62e7a87b205819bcb5ed54bc356e83f20a8654f12e3d43613acce","c18aa3cdf4ca66da764a7bb6a51118674cfcfe18b7dae7024b5080d03fb9e5a5","e20cf252e9c517654604ac4ceea19a0fc1259f24cc89c5e656ea33faa523aedb","95fe56d192ce6f1ca4948005eb47d0cfb68bd6227346a9aa12e7b838c553557e","b1f1ebc4e1589420d6a0586b1d8612802efd03f8a54b375fd1917fdf5a637581","95328498dcf755c3919f360e07c000018c1b54da1bbcc2b36c993364148fc00e","a5a16e2cf88ada37ed679ba577123f9711dc3ae44eb9edd6a4b91a0b896f1b07","66f9b646daa404710fa555328e9f161c87120a7b2c9dd2c5ef034acf8615b316","19cef1c1bd6bc0a7a0f67902cb46deb38371207ede06e87fe1df0d7c48dd7b3a","9b482c62894ce3717b901074eba991994a31aa8fa42f8e0df11a3d7302154303","5dcd41aeb5f7119177adab46147589a1618f2b35bd976e6c3a20ec328f58d1bd","18093dd86562c6177af8fb0a5d711ce38a642a944c2f2ba8f876fa7d53aba928",{"version":"bbdf156fea2fabed31a569445835aeedcc33643d404fcbaa54541f06c109df3f","affectsGlobalScope":true},"ba7617784f6b9aeac5e20c5eea869bbc3ef31b905f59c796b0fd401dae17c111","6a386ff939f180ae8ef064699d8b7b6e62bc2731a62d7fbf5e02589383838dea","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"0bca3a2542a695559b16feba84fffa590ec45eb64f2bbe0ee5e303f7bade01b1","affectsGlobalScope":true},"24b77ccef75bd2bd25deb2acfc4723b75d171ed92fe18178b3457073e592a90a","061febff29c5d278119380274e549c882f294b14b2d27e7e8d6b5085797e6a60","5673d28d9adb6209ba1120bfd5bacbfd27e50df4167eb7b7576c6a38f6d82049","0cbaf146205362864870bb5771dd48561d5f8ed5430a7c14bcb03b9077bdd2ed","fb17e6f5c2e6225822052b596c2ccd0888bc6922a9678394b66ec71875830da2","62c8953f06da3b62d7c6b52bc4d47a04c16484ee8f69aedb85ef35737719d1fe","2771f18413bee37bc63b861f663a843947c86ccfc858e2d0cd83a62c6f1da1af","31ac42673f115c2a476cdb344626de64627dc12fc4212d963b0426bab3ec9610","bf233e782dbbf53cc572be908504bf4c075459cef8af4b81a6b56de19e966946","17708f8c8f046446915bea2dd0ab7daeb27716fed357d7253e049630e1f35216","2e24db9d5d15503950332d50f520eaaf694a1a2bdc44a2c576a5558e3445aa6f","217199191521b6913e6778f0fd8c8c5dbeaa2948cbda7f64d12c048be9a69234","9e2114edeff3eb8f6be38585a6c9cb36533e1e9f17aa97eb42f95ae6bf88705e","327dce4f7a8a708865565ef6ed316c727072c498a5f6c9fe0097969ff2789980","633c8d4a118ecb39643de5c1220eb9ae464531af9b49bde0457ad4332f26d438","d424df4b3e74363be2c8e33f5f3aac859120d4b62b7243af1a3c1d15d7106fc2","696cfd8e9589d34ddedc239183efa681cfbf47110722abea5568288f4da55c44","9500809b0594a0597c1699829b1d59717a12c37d8d767759f063d4a3c622d7fa","a47553afcd47d59dc10b5b3b0e6f0c607db4f8b81a3c7acda13326572837a79f","00332cbc648e4e58f69e887d56d95bdbc10be6ace767eaefe4af70a4faad9665","3a33dc0aaca86bfc68a58b603aeada539a0e47bce983d88473c7076318b91c9f","e30056a44fcf06d1124d8b0d370a67e4f0d65f81563614f0aecdecc07c7ccdb1",{"version":"a1035aec1036ece8dc003205782b82383ba92510a633c2fa0e2deff0259ca353","signature":"44675e7025fe8e0aba9d9bf727d3a7c1636aa438994f585c0a8bb6b1cb1dd871"},{"version":"7fe42013fbee25bb06676a40c2e7d2779fd746cd532259f33b676807eb3694bb","signature":"bd37687f12187ddee43eeca6ead3450afb208ad08c2d8c81ffae934c3dc84bd8"},{"version":"853fbf27962faf6c727c723a67b068842f8aa8956778b3b15df27a17b99db0c8","signature":"bc5751041df5f2d3734a4a5b43583f3c1f257fd19321d1bcc8d8607e18e32d32"},"60997095f458b8c2c94af5759c796d9d17678e740a41a04c3e518c14c47f2ee7","b19e95136dd01ce850d7f05e05d594afecc4510fd1b44cdc049e4b7ce4d18e35","415ae3a9be423d2db81b7e16a6c053c83d3f83b1af03a2827aea3de084b70742","79be55362c82b8aa2f5dc063b51dbbc8f38f009d81c494aac4f671ff23fefb86","10cbee260a09cb62cc5516ea65aa7504f21ec98048a324e789d04d40d9057513","4d50db18bdcae4a401e888ac0f6b456d44405a860d38b90773158e2f11b1aa24","2fa8eeba1b6d29551683794e35cc3ea7bf2351f425f5023f0c1db691f551010c","73b33f358af52e1fa1942be3b8262e3c97ef189370feea3f43acfd883c1f8639","f07a77a7fb1d49aa2b61cb68bf712a083487acd7130d20223a83de03af0c257d","147cb5b590b77c8c58e4ef0af1ff11ee90ee2b34262816df0665b6ff8fd50aad","6e0575b628aedce5db38c17569e5c909beead07f9052fe7944fb8bfccc3db92e","ae1351ed65b27a2b29a70a238024c957910e944aabbffce286099ed2b04f9baf",{"version":"3c19b3fb2f88bbd8f103fe2de0d6c0700dd9bf6678553f6db803162620b49e27","affectsGlobalScope":true},"67eee3f60d04105614d4bed2b3eef28dc7a3a746dcf59dffcc4254d7fd023762","628e5558b3df3fff39a900912739dffd7da24afb87821adffdc2df20cf834c52","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","ab5812bd79ae1dc511fd9e24271a7583ea9cfbba0982a72e3f076796f6ebb034","c44f30a25bfb7a67ca410fbf603979501133e5b5bd8741ecb389e60503a1cb82","62358f906a13ad95a4d41a589c4ef4c0edfd4cf313ba0cff057b5ac0bd5c2f06",{"version":"87ad2b857e68151fff37d8ced05814af6ec122cfeff25e5112fc7014eaa45b20","signature":"d07f1e592e0663a70d0eec9f3f74ada99df2f867384ca91e1870f61e83b5d088"},"7a286c7ce1f424de104823da3c89ebe10847fb084b98f55e175040ffefb727d1","fbda38155a615eafbfd0b5d5165ebb91873084ca1bff6f865aaaec11f0ca2395","4b19ef22586a488de7412e25b5490ace2562e86cfdb3e1c9a22cad11ecb9fd5e",{"version":"7fd7344eed23a0dba5a2651fabdc5e0db707008b2383b4b149af86966d508394","signature":"84921acdf0983e70391ef4f877620bfe61de9b1907ed5242da67a6943fc753e6"},"bb3378facb78384a76536ebbc67b36c808b4781a595fc80f41d80041af0b9b12",{"version":"8a0b51e85253c3146a320009bfe0b2aa157784e395f7d2c269c2b81cdb1eae3a","signature":"7f3d12b126981064b5af1762215ecfcd239afa7cd6ec6e02a461aba46d7b1d03"},{"version":"e65fde7a73ee5aaf8c57c422d07a0f501a614aebc48bb6ec9e818a427179c70b","signature":"18eda1c68b0e5225722d5d20a100bb685f14b0f5d5e5d74b64d8a44634610316"},"9122ed7070e054b73ebab37c2373a196def2d90e7d1a9a7fcd9d46b0e51fae78","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"77f0b5c6a193a699c9f7d7fb0578e64e562d271afa740783665d2a827104a873","affectsGlobalScope":true},"21a167fec8f933752fb8157f06d28fab6817af3ad9b0bdb1908a10762391eab9",{"version":"3e4624c306340ad303cc536a07004e81336c3f088308a9e4a9f4c957a3cda2fd","affectsGlobalScope":true},"0c0cee62cb619aed81133b904f644515ba3064487002a7da83fd8aa07b1b4abd","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","025fc13211ed47d2798269017af3ec869122a050d5431a6ad3c1997900e65c58","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","75ecef44f126e2ae018b4abbd85b6e8a2e2ba1638ebec56cc64274643ce3567b","f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"249a2b90439cdfd51709539fbfa4dfe0791cbae6efce1e9b327ba8f8cd703f49","affectsGlobalScope":true},"40b991dc3365179e1365643589e168d7ea0588b4dd5bbb3a974ffefa7cb05e7f","bf057bb805c5e1c0e795ac7c759d40ebbe0e9894df9be3413bbdd8d1a2fc229e","74f2bb83d1ccf390f48681be57a30c09e85b4c7a801267746e382b2386fc667e","7bac475dcdd9f7e4e9da934d32c305bc889c4ce3c8ac0ef45a93a8d670fff607","5d357e7965026197a3152fa4e990fa7a4cbaf1578a17dff920ff1a71a325e198","8acf99b1c8682276a63ea5bb68433782715892726b97e4604a415e4e56bce41c",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"3b145a2351f5cf16abf999c8d5f4481c74dffdc54ec1e9a89992e2622e1226c5","a907bf91df26df2400858ef75f749498fb5cf00062bf90a737ac3949cc07978d","d270fd4b565eda11a0a737c181892316b7a1ace06c7988d0246219c3df11db06","70caef0271088abc5f5ae7ff6d84421d35bb192b690fbaa1b2ecf2b0ef01deb6",{"version":"59a638a504490fecaacf0020b9814b6abee37edb66047eb1ab9f7c2274bf1da0","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","d1a78a3c5708807e8de3e399f91df4797c62e44b02195eefc2209b2e713e54ee","8c4c1a64db28930732033c31418f817dcb9d09d706766707ae6d38f23faf0c53","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","12a70315c8281e46d65696086dd25827408e967b305a22276ae2779fe519e0fe","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","29d613c3964ea75b2b4e0d17098245c34529282e9cc72b7e4eeb2a7b12c27cb7",{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","a381f079c4804442f179d742fdb2e495fe28d67a47cac673485f75ae2e77aeca","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"bfe39beb986d2a2e512c091cbe924f1c415bc65de54de0e2f6a0dc6f84c183d9","affectsGlobalScope":true},"2af17363f8a062e3a8cd1b26030af0058b3f86e783f4fc6aa9f57247f240ebaa","06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","dfe08140492cdc135fb7fd9c4a652c05207b61a436906079b87da1d3111314bf","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa","089e1f8603cbc35ab977c8dcc662eb754b82fca32ed1dfb16bd682726c2d5432","8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"82fc37849846a3a0264047621d5beb6ce2ddeb2f83bdee2c79523af3c3282d97",{"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":5,"useDefineForClassFields":false},"fileIdsList":[[209,222,233,257,399],[232,233,234,399],[209,231,257,399],[209,220,232,399],[214,222,223,224,226,227,228,231,232,233,234,235,257,399],[221,222,224,231,232,257,399],[399],[209,224,231,257,399],[209,222,224,226,231,234,257,399],[214,399],[209,224,227,230,232,257,399],[294,399],[209,222,224,227,228,232,257,399],[209,223,231,232,234,257,399],[209,224,227,229,257,294,399],[209,236,257,265,275,287,288,289,291,399],[210,224,236,257,265,275,276,284,285,287,288,289,291,292,293,399],[209,236,257,265,288,292,399],[232,236,257,276,285,286,288,289,290,399],[209,236,257,265,276,285,288,289,290,291,399],[209,236,257,265,276,286,287,288,289,291,292,399],[209,220,236,257,265,276,285,286,287,289,291,399],[209,220,236,265,288,291,399],[209,214,275,284,399],[294,317,399],[257,258,399],[259,399],[214,258,259,260,261,262,263,264,399],[209,257,399],[214,265,268,399],[265,268,399],[214,266,267,268,269,270,271,272,273,274,399],[265,399],[268,399],[209,265,399],[257,399],[214,277,278,279,280,281,282,283,399],[294,299,399],[294,299,305,399],[214,300,306,307,399],[214,309,310,311,312,313,314,399],[209,220,294,303,399],[294,303,309,399],[209,214,220,294,303,399],[214,303,308,315,316,399],[209,399],[299,399],[301,302,304,399],[294,299,303,399],[209,220,257,265,285,294,299,399],[242,399],[241,399],[210,211,212,213,399],[209,216,399],[214,215,216,217,218,219,237,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,399],[240,399],[238,239,399],[236,399],[45,399],[70,399],[45,70,399],[45,70,78,399],[43,44,399],[51,53,55,56,399],[45,49,50,399],[51,52,63,64,65,335,399],[51,336,399],[334,399],[51,63,64,65,399],[51,67,399],[51,399],[51,55,57,59,60,399],[51,62,399],[55,399],[56,58,399],[53,59,399],[355,399],[358,399],[359,364,399],[360,370,371,378,387,398,399],[360,361,370,378,399],[362,399],[363,364,371,379,399],[364,387,395,399],[365,367,370,378,399],[366,399],[367,368,399],[369,370,399],[370,399],[370,371,372,387,398,399],[370,371,372,387,390,399],[399,403],[373,378,387,398,399],[370,371,373,374,378,387,395,398,399],[373,375,387,395,398,399],[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,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405],[370,376,399],[377,398,399],[367,370,378,387,399],[379,399],[380,399],[358,381,399],[382,397,399,403],[383,399],[384,399],[370,385,399],[385,386,399,401],[370,387,388,389,390,399],[387,389,399],[387,388,399],[390,399],[391,399],[370,393,394,399],[393,394,399],[364,378,387,395,399],[396,399],[378,397,399],[359,373,384,398,399],[364,399],[387,399,400],[399,401],[399,402],[359,364,370,372,381,387,398,399,401,403],[387,399,404],[295,296,297,298,399],[46,399],[115,293,399],[122,123,399],[112,113,115,122,399],[123,124,183,184,399],[112,115,123,399],[113,123,399],[112,115,117,118,119,121,123,124,399],[118,125,139,399],[112,115,119,120,121,123,399],[112,113,119,121,125,399],[111,126,130,138,140,142,182,185,208,399],[113,114,399],[113,114,115,116,122,131,132,133,134,135,136,137,399],[113,114,115,399],[113,399],[112,113,114,115,133,209,399],[115,399],[113,115,122,399],[112,115,399],[141,399],[112,115,119,121,125,399],[112,115,117,118,121,399],[112,115,116,119,399],[118,119,120,121,127,128,129,399],[119,399],[112,115,119,120,399],[121,123,399],[123,399],[112,115,119,399],[113,115,121,134,399],[121,186,399],[119,123,399],[112,115,121,399],[121,399],[115,121,123,399],[112,116,399],[115,119,121,399],[143,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,399],[119,121,399],[112,115,119,120,121,136,399],[144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,399],[136,144,399],[144,399],[112,115,121,123,143,144,399],[112,115,119,120,121,123,136,143,399],[45,49,399],[49,399],[48,49,399],[47,48,399],[71,72,73,74,75,76,77,78,79,399],[89,399],[42,69,80,81,87,399],[42,69,80,87,88,90,92,95,102,109,322,323,399],[42,293,321,399],[42,323,324,347,351,353,399],[42,52,68,69,80,399],[42,52,69,80,87,324,346,399],[42,69,347,350,399],[42,322,399],[42,89,323,352,399],[294,318,399],[110,319,320,399],[91,399],[82,399],[83,84,85,86,399],[69,82,399],[49,69,399],[69,332,399],[325,332,338,340,341,342,343,344,345,399],[102,399],[339,399],[52,337,399],[326,327,328,329,331,399],[69,330,399],[49,52,69,399],[49,52,69,326,399],[49,69,326,399],[49,69,328,399],[348,349,399],[69,348,399],[94,399],[93,399],[98,99,399],[69,399],[97,100,101,399],[89,96,399],[103,104,105,106,107,108,399],[49,69,81],[49,69,88],[323,324,347,351,353],[49,52,68,69],[49,52,69,324],[49,347,350]],"referencedMap":[[234,1],[222,2],[232,3],[233,4],[236,5],[223,6],[225,7],[235,8],[227,9],[228,10],[231,11],[226,12],[229,13],[224,14],[230,15],[292,16],[294,17],[287,18],[276,7],[291,19],[286,20],[290,21],[288,22],[289,23],[285,24],[318,25],[259,26],[263,27],[260,27],[264,27],[261,27],[265,28],[262,27],[258,29],[269,7],[272,30],[270,7],[273,31],[275,32],[266,33],[274,34],[268,35],[271,33],[267,10],[282,33],[277,36],[279,36],[284,37],[280,7],[278,36],[283,33],[281,33],[239,7],[300,38],[306,39],[307,38],[308,40],[315,41],[309,12],[310,42],[311,42],[312,43],[314,12],[313,44],[317,45],[316,46],[301,47],[305,48],[304,49],[302,47],[303,50],[249,7],[251,7],[243,7],[252,51],[250,46],[253,7],[244,10],[242,52],[255,12],[241,7],[254,7],[211,7],[213,7],[214,53],[212,7],[215,46],[216,46],[217,46],[218,54],[219,46],[257,55],[246,56],[247,56],[245,56],[240,57],[248,56],[237,58],[256,7],[220,46],[43,7],[70,59],[71,60],[74,61],[72,61],[76,61],[79,62],[78,7],[77,61],[75,61],[73,60],[44,7],[45,63],[53,7],[56,7],[64,7],[57,64],[54,65],[55,7],[336,66],[337,67],[335,68],[333,65],[67,69],[68,70],[66,65],[52,71],[51,65],[62,72],[63,73],[61,65],[65,74],[59,75],[60,76],[58,7],[407,7],[355,77],[356,77],[358,78],[359,79],[360,80],[361,81],[362,82],[363,83],[364,84],[365,85],[366,86],[367,87],[368,87],[369,88],[370,89],[371,90],[372,91],[357,92],[405,7],[373,93],[374,94],[375,95],[406,96],[376,97],[377,98],[378,99],[379,100],[380,101],[381,102],[382,103],[383,104],[384,105],[385,106],[386,107],[387,108],[389,109],[388,110],[390,111],[391,112],[392,7],[393,113],[394,114],[395,115],[396,116],[397,117],[398,118],[399,119],[400,120],[401,121],[402,122],[403,123],[404,124],[297,7],[295,7],[299,125],[296,7],[298,7],[47,126],[46,7],[352,7],[221,7],[293,127],[124,128],[123,129],[185,130],[184,131],[183,132],[125,133],[140,134],[139,135],[126,136],[209,137],[112,7],[118,7],[117,7],[115,138],[116,7],[138,139],[132,7],[133,140],[122,141],[134,142],[137,143],[135,143],[131,144],[113,7],[114,7],[136,145],[142,146],[141,147],[119,148],[120,149],[130,150],[128,151],[127,151],[121,152],[129,153],[204,154],[198,155],[191,156],[190,157],[199,158],[200,143],[192,159],[205,160],[207,161],[186,162],[187,145],[188,163],[208,164],[189,157],[193,160],[194,165],[201,143],[202,141],[203,165],[206,143],[195,163],[143,166],[196,155],[197,145],[182,167],[180,168],[181,168],[147,168],[148,168],[149,168],[150,168],[151,168],[152,168],[153,168],[154,168],[173,168],[155,168],[156,168],[157,168],[158,168],[159,168],[160,168],[179,168],[161,168],[162,168],[163,168],[164,168],[178,168],[165,168],[176,168],[177,168],[166,168],[167,168],[168,168],[174,168],[175,168],[169,168],[170,168],[171,168],[172,168],[146,169],[145,170],[144,171],[111,7],[82,7],[50,172],[48,173],[334,174],[49,175],[80,176],[69,65],[90,177],[96,177],[89,7],[210,7],[42,7],[8,7],[10,7],[9,7],[2,7],[11,7],[12,7],[13,7],[14,7],[15,7],[16,7],[17,7],[18,7],[3,7],[4,7],[22,7],[19,7],[20,7],[21,7],[23,7],[24,7],[25,7],[5,7],[26,7],[27,7],[28,7],[29,7],[6,7],[30,7],[31,7],[32,7],[33,7],[7,7],[34,7],[39,7],[40,7],[35,7],[36,7],[37,7],[38,7],[1,7],[41,7],[238,7],[88,178],[324,179],[322,180],[354,181],[81,182],[347,183],[351,184],[323,185],[353,186],[110,7],[319,187],[321,188],[320,7],[91,7],[92,189],[83,190],[87,191],[84,192],[86,193],[85,193],[344,194],[345,177],[339,193],[346,195],[325,196],[342,197],[343,197],[340,197],[341,197],[338,198],[332,199],[331,200],[330,201],[327,202],[328,203],[329,204],[326,193],[350,205],[349,206],[348,7],[95,207],[93,193],[94,208],[98,7],[100,209],[99,7],[101,210],[102,211],[97,212],[107,7],[108,210],[103,210],[109,213],[104,210],[105,210],[106,210]],"exportedModulesMap":[[234,1],[222,2],[232,3],[233,4],[236,5],[223,6],[225,7],[235,8],[227,9],[228,10],[231,11],[226,12],[229,13],[224,14],[230,15],[292,16],[294,17],[287,18],[276,7],[291,19],[286,20],[290,21],[288,22],[289,23],[285,24],[318,25],[259,26],[263,27],[260,27],[264,27],[261,27],[265,28],[262,27],[258,29],[269,7],[272,30],[270,7],[273,31],[275,32],[266,33],[274,34],[268,35],[271,33],[267,10],[282,33],[277,36],[279,36],[284,37],[280,7],[278,36],[283,33],[281,33],[239,7],[300,38],[306,39],[307,38],[308,40],[315,41],[309,12],[310,42],[311,42],[312,43],[314,12],[313,44],[317,45],[316,46],[301,47],[305,48],[304,49],[302,47],[303,50],[249,7],[251,7],[243,7],[252,51],[250,46],[253,7],[244,10],[242,52],[255,12],[241,7],[254,7],[211,7],[213,7],[214,53],[212,7],[215,46],[216,46],[217,46],[218,54],[219,46],[257,55],[246,56],[247,56],[245,56],[240,57],[248,56],[237,58],[256,7],[220,46],[43,7],[70,59],[71,60],[74,61],[72,61],[76,61],[79,62],[78,7],[77,61],[75,61],[73,60],[44,7],[45,63],[53,7],[56,7],[64,7],[57,64],[54,65],[55,7],[336,66],[337,67],[335,68],[333,65],[67,69],[68,70],[66,65],[52,71],[51,65],[62,72],[63,73],[61,65],[65,74],[59,75],[60,76],[58,7],[407,7],[355,77],[356,77],[358,78],[359,79],[360,80],[361,81],[362,82],[363,83],[364,84],[365,85],[366,86],[367,87],[368,87],[369,88],[370,89],[371,90],[372,91],[357,92],[405,7],[373,93],[374,94],[375,95],[406,96],[376,97],[377,98],[378,99],[379,100],[380,101],[381,102],[382,103],[383,104],[384,105],[385,106],[386,107],[387,108],[389,109],[388,110],[390,111],[391,112],[392,7],[393,113],[394,114],[395,115],[396,116],[397,117],[398,118],[399,119],[400,120],[401,121],[402,122],[403,123],[404,124],[297,7],[295,7],[299,125],[296,7],[298,7],[47,126],[46,7],[352,7],[221,7],[293,127],[124,128],[123,129],[185,130],[184,131],[183,132],[125,133],[140,134],[139,135],[126,136],[209,137],[112,7],[118,7],[117,7],[115,138],[116,7],[138,139],[132,7],[133,140],[122,141],[134,142],[137,143],[135,143],[131,144],[113,7],[114,7],[136,145],[142,146],[141,147],[119,148],[120,149],[130,150],[128,151],[127,151],[121,152],[129,153],[204,154],[198,155],[191,156],[190,157],[199,158],[200,143],[192,159],[205,160],[207,161],[186,162],[187,145],[188,163],[208,164],[189,157],[193,160],[194,165],[201,143],[202,141],[203,165],[206,143],[195,163],[143,166],[196,155],[197,145],[182,167],[180,168],[181,168],[147,168],[148,168],[149,168],[150,168],[151,168],[152,168],[153,168],[154,168],[173,168],[155,168],[156,168],[157,168],[158,168],[159,168],[160,168],[179,168],[161,168],[162,168],[163,168],[164,168],[178,168],[165,168],[176,168],[177,168],[166,168],[167,168],[168,168],[174,168],[175,168],[169,168],[170,168],[171,168],[172,168],[146,169],[145,170],[144,171],[111,7],[82,7],[50,172],[48,173],[334,174],[49,175],[80,176],[69,65],[90,177],[96,177],[89,7],[210,7],[42,7],[8,7],[10,7],[9,7],[2,7],[11,7],[12,7],[13,7],[14,7],[15,7],[16,7],[17,7],[18,7],[3,7],[4,7],[22,7],[19,7],[20,7],[21,7],[23,7],[24,7],[25,7],[5,7],[26,7],[27,7],[28,7],[29,7],[6,7],[30,7],[31,7],[32,7],[33,7],[7,7],[34,7],[39,7],[40,7],[35,7],[36,7],[37,7],[38,7],[1,7],[41,7],[238,7],[88,214],[324,215],[354,216],[81,217],[347,218],[351,219],[110,7],[319,187],[321,188],[320,7],[91,7],[92,189],[83,190],[87,191],[84,192],[86,193],[85,193],[344,194],[345,177],[339,193],[346,195],[325,196],[342,197],[343,197],[340,197],[341,197],[338,198],[332,199],[331,200],[330,201],[327,202],[328,203],[329,204],[326,193],[350,205],[349,206],[348,7],[95,207],[93,193],[94,208],[98,7],[100,209],[99,7],[101,210],[102,211],[97,212],[107,7],[108,210],[103,210],[109,213],[104,210],[105,210],[106,210]],"semanticDiagnosticsPerFile":[234,222,232,233,236,223,225,235,227,228,231,226,229,224,230,292,294,287,276,291,286,290,288,289,285,318,259,263,260,264,261,265,262,258,269,272,270,273,275,266,274,268,271,267,282,277,279,284,280,278,283,281,239,300,306,307,308,315,309,310,311,312,314,313,317,316,301,305,304,302,303,249,251,243,252,250,253,244,242,255,241,254,211,213,214,212,215,216,217,218,219,257,246,247,245,240,248,237,256,220,43,70,71,74,72,76,79,78,77,75,73,44,45,53,56,64,57,54,55,336,337,335,333,67,68,66,52,51,62,63,61,65,59,60,58,407,355,356,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,357,405,373,374,375,406,376,377,378,379,380,381,382,383,384,385,386,387,389,388,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,297,295,299,296,298,47,46,352,221,293,124,123,185,184,183,125,140,139,126,209,112,118,117,115,116,138,132,133,122,134,137,135,131,113,114,136,142,141,119,120,130,128,127,121,129,204,198,191,190,199,200,192,205,207,186,187,188,208,189,193,194,201,202,203,206,195,143,196,197,182,180,181,147,148,149,150,151,152,153,154,173,155,156,157,158,159,160,179,161,162,163,164,178,165,176,177,166,167,168,174,175,169,170,171,172,146,145,144,111,82,50,48,334,49,80,69,90,96,89,210,42,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,34,39,40,35,36,37,38,1,41,238,88,324,322,354,81,347,351,323,353,110,319,321,320,91,92,83,87,84,86,85,344,345,339,346,325,342,343,340,341,338,332,331,330,327,328,329,326,350,349,348,95,93,94,98,100,99,101,102,97,107,108,103,109,104,105,106]},"version":"4.7.4"}
|
|
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.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.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/@material/mwc-icon/mwc-icon.d.ts","../../../node_modules/@material/base/foundation.d.ts","../../../node_modules/@material/mwc-base/utils.d.ts","../../../node_modules/@material/base/types.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/@material/mwc-icon-button/mwc-icon-button-base.d.ts","../../../node_modules/@material/mwc-icon-button/mwc-icon-button.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-file-selector.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/font-creation-card.ts","../../graphql/dist/src/gql-context.d.ts","../../../node_modules/graphql/version.d.ts","../../../node_modules/graphql/jsutils/maybe.d.ts","../../../node_modules/graphql/language/source.d.ts","../../../node_modules/graphql/jsutils/objmap.d.ts","../../../node_modules/graphql/jsutils/path.d.ts","../../../node_modules/graphql/jsutils/promiseorvalue.d.ts","../../../node_modules/graphql/language/kinds.d.ts","../../../node_modules/graphql/language/tokenkind.d.ts","../../../node_modules/graphql/language/ast.d.ts","../../../node_modules/graphql/language/location.d.ts","../../../node_modules/graphql/error/graphqlerror.d.ts","../../../node_modules/graphql/language/directivelocation.d.ts","../../../node_modules/graphql/type/directives.d.ts","../../../node_modules/graphql/type/schema.d.ts","../../../node_modules/graphql/type/definition.d.ts","../../../node_modules/graphql/execution/execute.d.ts","../../../node_modules/graphql/graphql.d.ts","../../../node_modules/graphql/type/scalars.d.ts","../../../node_modules/graphql/type/introspection.d.ts","../../../node_modules/graphql/type/validate.d.ts","../../../node_modules/graphql/type/assertname.d.ts","../../../node_modules/graphql/type/index.d.ts","../../../node_modules/graphql/language/printlocation.d.ts","../../../node_modules/graphql/language/lexer.d.ts","../../../node_modules/graphql/language/parser.d.ts","../../../node_modules/graphql/language/printer.d.ts","../../../node_modules/graphql/language/visitor.d.ts","../../../node_modules/graphql/language/predicates.d.ts","../../../node_modules/graphql/language/index.d.ts","../../../node_modules/graphql/execution/subscribe.d.ts","../../../node_modules/graphql/execution/values.d.ts","../../../node_modules/graphql/execution/index.d.ts","../../../node_modules/graphql/subscription/index.d.ts","../../../node_modules/graphql/utilities/typeinfo.d.ts","../../../node_modules/graphql/validation/validationcontext.d.ts","../../../node_modules/graphql/validation/validate.d.ts","../../../node_modules/graphql/validation/specifiedrules.d.ts","../../../node_modules/graphql/validation/rules/executabledefinitionsrule.d.ts","../../../node_modules/graphql/validation/rules/fieldsoncorrecttyperule.d.ts","../../../node_modules/graphql/validation/rules/fragmentsoncompositetypesrule.d.ts","../../../node_modules/graphql/validation/rules/knownargumentnamesrule.d.ts","../../../node_modules/graphql/validation/rules/knowndirectivesrule.d.ts","../../../node_modules/graphql/validation/rules/knownfragmentnamesrule.d.ts","../../../node_modules/graphql/validation/rules/knowntypenamesrule.d.ts","../../../node_modules/graphql/validation/rules/loneanonymousoperationrule.d.ts","../../../node_modules/graphql/validation/rules/nofragmentcyclesrule.d.ts","../../../node_modules/graphql/validation/rules/noundefinedvariablesrule.d.ts","../../../node_modules/graphql/validation/rules/nounusedfragmentsrule.d.ts","../../../node_modules/graphql/validation/rules/nounusedvariablesrule.d.ts","../../../node_modules/graphql/validation/rules/overlappingfieldscanbemergedrule.d.ts","../../../node_modules/graphql/validation/rules/possiblefragmentspreadsrule.d.ts","../../../node_modules/graphql/validation/rules/providedrequiredargumentsrule.d.ts","../../../node_modules/graphql/validation/rules/scalarleafsrule.d.ts","../../../node_modules/graphql/validation/rules/singlefieldsubscriptionsrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueargumentnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniquedirectivesperlocationrule.d.ts","../../../node_modules/graphql/validation/rules/uniquefragmentnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueinputfieldnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueoperationnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniquevariablenamesrule.d.ts","../../../node_modules/graphql/validation/rules/valuesofcorrecttyperule.d.ts","../../../node_modules/graphql/validation/rules/variablesareinputtypesrule.d.ts","../../../node_modules/graphql/validation/rules/variablesinallowedpositionrule.d.ts","../../../node_modules/graphql/validation/rules/loneschemadefinitionrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueoperationtypesrule.d.ts","../../../node_modules/graphql/validation/rules/uniquetypenamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueenumvaluenamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniquefielddefinitionnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueargumentdefinitionnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniquedirectivenamesrule.d.ts","../../../node_modules/graphql/validation/rules/possibletypeextensionsrule.d.ts","../../../node_modules/graphql/validation/rules/custom/nodeprecatedcustomrule.d.ts","../../../node_modules/graphql/validation/rules/custom/noschemaintrospectioncustomrule.d.ts","../../../node_modules/graphql/validation/index.d.ts","../../../node_modules/graphql/error/syntaxerror.d.ts","../../../node_modules/graphql/error/locatederror.d.ts","../../../node_modules/graphql/error/index.d.ts","../../../node_modules/graphql/utilities/getintrospectionquery.d.ts","../../../node_modules/graphql/utilities/getoperationast.d.ts","../../../node_modules/graphql/utilities/getoperationroottype.d.ts","../../../node_modules/graphql/utilities/introspectionfromschema.d.ts","../../../node_modules/graphql/utilities/buildclientschema.d.ts","../../../node_modules/graphql/utilities/buildastschema.d.ts","../../../node_modules/graphql/utilities/extendschema.d.ts","../../../node_modules/graphql/utilities/lexicographicsortschema.d.ts","../../../node_modules/graphql/utilities/printschema.d.ts","../../../node_modules/graphql/utilities/typefromast.d.ts","../../../node_modules/graphql/utilities/valuefromast.d.ts","../../../node_modules/graphql/utilities/valuefromastuntyped.d.ts","../../../node_modules/graphql/utilities/astfromvalue.d.ts","../../../node_modules/graphql/utilities/coerceinputvalue.d.ts","../../../node_modules/graphql/utilities/concatast.d.ts","../../../node_modules/graphql/utilities/separateoperations.d.ts","../../../node_modules/graphql/utilities/stripignoredcharacters.d.ts","../../../node_modules/graphql/utilities/typecomparators.d.ts","../../../node_modules/graphql/utilities/assertvalidname.d.ts","../../../node_modules/graphql/utilities/findbreakingchanges.d.ts","../../../node_modules/graphql/utilities/typedquerydocumentnode.d.ts","../../../node_modules/graphql/utilities/index.d.ts","../../../node_modules/graphql/index.d.ts","../../../node_modules/ts-invariant/lib/invariant.d.ts","../../../node_modules/@apollo/client/utilities/globals/dev.d.ts","../../../node_modules/@apollo/client/utilities/globals/maybe.d.ts","../../../node_modules/@apollo/client/utilities/globals/global.d.ts","../../../node_modules/@apollo/client/utilities/globals/index.d.ts","../../../node_modules/@apollo/client/utilities/graphql/directives.d.ts","../../../node_modules/@apollo/client/utilities/graphql/fragments.d.ts","../../../node_modules/@apollo/client/utilities/graphql/getfromast.d.ts","../../../node_modules/@apollo/client/utilities/graphql/storeutils.d.ts","../../../node_modules/@apollo/client/utilities/graphql/transform.d.ts","../../../node_modules/@graphql-typed-document-node/core/dist/index.d.ts","../../../node_modules/@wry/trie/lib/trie.d.ts","../../../node_modules/@apollo/client/cache/core/types/cache.d.ts","../../../node_modules/@apollo/client/cache/inmemory/entitystore.d.ts","../../../node_modules/@apollo/client/cache/inmemory/types.d.ts","../../../node_modules/@apollo/client/cache/inmemory/fixpolyfills.d.ts","../../../node_modules/@apollo/client/cache/inmemory/reactivevars.d.ts","../../../node_modules/@apollo/client/cache/inmemory/inmemorycache.d.ts","../../../node_modules/@apollo/client/cache/inmemory/object-canon.d.ts","../../../node_modules/@apollo/client/cache/inmemory/readfromstore.d.ts","../../../node_modules/@apollo/client/cache/inmemory/writetostore.d.ts","../../../node_modules/@apollo/client/cache/inmemory/policies.d.ts","../../../node_modules/@apollo/client/cache/core/types/common.d.ts","../../../node_modules/@apollo/client/cache/core/types/dataproxy.d.ts","../../../node_modules/@apollo/client/cache/core/cache.d.ts","../../../node_modules/@apollo/client/cache/inmemory/helpers.d.ts","../../../node_modules/@apollo/client/cache/index.d.ts","../../../node_modules/@apollo/client/utilities/policies/pagination.d.ts","../../../node_modules/zen-observable-ts/module.d.ts","../../../node_modules/@apollo/client/node_modules/symbol-observable/index.d.ts","../../../node_modules/@apollo/client/utilities/observables/observable.d.ts","../../../node_modules/@apollo/client/utilities/common/objects.d.ts","../../../node_modules/@apollo/client/utilities/common/mergedeep.d.ts","../../../node_modules/@apollo/client/utilities/common/clonedeep.d.ts","../../../node_modules/@apollo/client/utilities/common/maybedeepfreeze.d.ts","../../../node_modules/@apollo/client/utilities/observables/iteration.d.ts","../../../node_modules/@apollo/client/utilities/observables/asyncmap.d.ts","../../../node_modules/@apollo/client/utilities/observables/concast.d.ts","../../../node_modules/@apollo/client/utilities/observables/subclassing.d.ts","../../../node_modules/@apollo/client/utilities/common/arrays.d.ts","../../../node_modules/@apollo/client/utilities/common/errorhandling.d.ts","../../../node_modules/@apollo/client/utilities/common/canuse.d.ts","../../../node_modules/@apollo/client/utilities/common/compact.d.ts","../../../node_modules/@apollo/client/utilities/common/makeuniqueid.d.ts","../../../node_modules/@apollo/client/utilities/common/stringifyfordisplay.d.ts","../../../node_modules/@apollo/client/utilities/common/mergeoptions.d.ts","../../../node_modules/@apollo/client/utilities/types/isstrictlyany.d.ts","../../../node_modules/@apollo/client/utilities/index.d.ts","../../../node_modules/@apollo/client/link/core/types.d.ts","../../../node_modules/@apollo/client/link/core/apollolink.d.ts","../../../node_modules/@apollo/client/link/core/empty.d.ts","../../../node_modules/@apollo/client/link/core/from.d.ts","../../../node_modules/@apollo/client/link/core/split.d.ts","../../../node_modules/@apollo/client/link/core/concat.d.ts","../../../node_modules/@apollo/client/link/core/execute.d.ts","../../../node_modules/@apollo/client/link/core/index.d.ts","../../../node_modules/@apollo/client/link/http/parseandcheckhttpresponse.d.ts","../../../node_modules/@apollo/client/link/http/serializefetchparameter.d.ts","../../../node_modules/@apollo/client/link/http/selecthttpoptionsandbody.d.ts","../../../node_modules/@apollo/client/link/http/checkfetcher.d.ts","../../../node_modules/@apollo/client/link/http/createsignalifsupported.d.ts","../../../node_modules/@apollo/client/link/http/selecturi.d.ts","../../../node_modules/@apollo/client/link/http/createhttplink.d.ts","../../../node_modules/@apollo/client/link/http/httplink.d.ts","../../../node_modules/@apollo/client/link/http/rewriteuriforget.d.ts","../../../node_modules/@apollo/client/link/http/index.d.ts","../../../node_modules/@apollo/client/core/networkstatus.d.ts","../../../node_modules/@apollo/client/link/utils/fromerror.d.ts","../../../node_modules/@apollo/client/link/utils/topromise.d.ts","../../../node_modules/@apollo/client/link/utils/frompromise.d.ts","../../../node_modules/@apollo/client/link/utils/throwservererror.d.ts","../../../node_modules/@apollo/client/link/utils/validateoperation.d.ts","../../../node_modules/@apollo/client/link/utils/createoperation.d.ts","../../../node_modules/@apollo/client/link/utils/transformoperation.d.ts","../../../node_modules/@apollo/client/link/utils/index.d.ts","../../../node_modules/@apollo/client/errors/index.d.ts","../../../node_modules/@apollo/client/core/queryinfo.d.ts","../../../node_modules/@apollo/client/core/localstate.d.ts","../../../node_modules/@apollo/client/core/types.d.ts","../../../node_modules/@apollo/client/core/watchqueryoptions.d.ts","../../../node_modules/@apollo/client/core/querymanager.d.ts","../../../node_modules/@apollo/client/core/observablequery.d.ts","../../../node_modules/@apollo/client/core/apolloclient.d.ts","../../../node_modules/graphql-tag/lib/index.d.ts","../../../node_modules/@apollo/client/core/index.d.ts","../../../node_modules/@types/react/global.d.ts","../../../node_modules/@types/react/node_modules/csstype/index.d.ts","../../../node_modules/@types/prop-types/index.d.ts","../../../node_modules/@types/scheduler/tracing.d.ts","../../../node_modules/@types/react/index.d.ts","../../../node_modules/@apollo/client/react/context/apolloconsumer.d.ts","../../../node_modules/@apollo/client/react/ssr/getdatafromtree.d.ts","../../../node_modules/@apollo/client/react/ssr/rendertostringwithdata.d.ts","../../../node_modules/@apollo/client/react/types/types.d.ts","../../../node_modules/@apollo/client/react/ssr/renderpromises.d.ts","../../../node_modules/@apollo/client/react/ssr/index.d.ts","../../../node_modules/@apollo/client/react/context/apollocontext.d.ts","../../../node_modules/@apollo/client/react/context/apolloprovider.d.ts","../../../node_modules/@apollo/client/react/context/index.d.ts","../../../node_modules/@apollo/client/react/hooks/useapolloclient.d.ts","../../../node_modules/@apollo/client/react/hooks/uselazyquery.d.ts","../../../node_modules/@apollo/client/react/hooks/usemutation.d.ts","../../../node_modules/@apollo/client/react/hooks/usequery.d.ts","../../../node_modules/@apollo/client/react/hooks/usesubscription.d.ts","../../../node_modules/@apollo/client/react/hooks/usereactivevar.d.ts","../../../node_modules/@apollo/client/react/hooks/index.d.ts","../../../node_modules/@apollo/client/react/parser/index.d.ts","../../../node_modules/@apollo/client/react/index.d.ts","../../../node_modules/@apollo/client/index.d.ts","../../graphql/dist/src/graphql-client.d.ts","../../graphql/dist/src/json-to-grqphql-query.d.ts","../../graphql/dist/src/index.d.ts","../src/font-graphql-client.ts","../../../node_modules/redux/index.d.ts","../../../node_modules/pwa-helpers/connect-mixin.d.ts","../../headroom/dist/src/headroom.d.ts","../../headroom/dist/src/index.d.ts","../../pull-to-refresh/dist/src/pull-to-refresh-control.d.ts","../../pull-to-refresh/dist/src/pull-to-refresh.d.ts","../../pull-to-refresh/dist/src/index.d.ts","../../../node_modules/pwa-helpers/lazy-reducer-enhancer.d.ts","../../shell/dist/src/store.d.ts","../../shell/dist/src/actions/app.d.ts","../../shell/dist/src/actions/route.d.ts","../../shell/dist/src/actions/index.d.ts","../../shell/dist/src/app/pages/page-view.d.ts","../../shell/dist/src/index.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/redux-font-actions.ts","../src/font-selector.ts","../../layout/dist/src/initializer.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/ox-floating-overlay.d.ts","../../popup/dist/src/open-popup.d.ts","../../popup/dist/src/index.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","../../layout/dist/src/layouts/ox-snack-bar.d.ts","../../layout/dist/src/components/ox-resize-splitter.d.ts","../../layout/dist/src/layouts/ox-header-bar.d.ts","../../layout/dist/src/layouts/ox-nav-bar.d.ts","../../layout/dist/src/layouts/ox-aside-bar.d.ts","../../layout/dist/src/layouts/ox-footer-bar.d.ts","../../layout/dist/src/actions/layout.d.ts","../../layout/dist/src/actions/snackbar.d.ts","../../layout/dist/src/index.d.ts","../src/ox-font-selector.ts","../../property-editor/dist/src/types.d.ts","../../property-editor/dist/src/ox-property-editor.d.ts","../../property-editor/dist/src/index.d.ts","../src/ox-property-editor-font-selector.ts","../../../node_modules/@types/webfontloader/index.d.ts","../src/redux-font-reducers.ts","../src/index.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/test.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":"f5c28122bee592cfaf5c72ed7bcc47f453b79778ffa6e301f45d21a0970719d4","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3f149f903dd20dfeb7c80e228b659f0e436532de772469980dbd00702cc05cc1","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","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":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"cd483c056da900716879771893a3c9772b66c3c88f8943b4205aec738a94b1d0","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"c37f8a49593a0030eecb51bbfa270e709bec9d79a6cc3bb851ef348d4e6b26f8","affectsGlobalScope":true},"14a84fbe4ec531dcbaf5d2594fd95df107258e60ae6c6a076404f13c3f66f28e","52dd370c807255c61765347fc90a9bee3c522b8744dc222714e2bf6b5be3a823","1e5743b25a63fd34ffbae89adcbf248ee17db6ed08d90079ffa93803c3e80d2a","13bb750b495c48fd60d7b5e09f65d4a7b010ab7e09a8943a6d54511e7d184f84","2fcd2d22b1f30555e785105597cd8f57ed50300e213c4f1bbca6ae149f782c38",{"version":"bb4248c7f953233ac52332088fac897d62b82be07244e551d87c5049600b6cf7","affectsGlobalScope":true},"3f30c6b57bf5eb7a7d4298506b78b18d428a39a409e1eadd93a3fdd0299d2687","8be48c7828a22d50f128f317cdd8ac25ef0ee54c877b8b5c464887234f619783","eba7cf33380cc3a3cf614faf67300e14d0bdff9ea6c5cd6f4b040b1756a48ab1","f07a77a7fb1d49aa2b61cb68bf712a083487acd7130d20223a83de03af0c257d",{"version":"27b285e901600242883d62a5fff9f5d262c6fa128b6e6c6963f981f2630a957e","affectsGlobalScope":true},"a0667520a6521c12128fc28cbd5b2af58eef11c5b2a7441e0f0d47f50bf6c8e3","0dcf4c2bf1bb547e2ae5b8dce4656a56fbd15e3401ff5236ea0b93b6c60f9249","820c26194ad4089bc503b02bbedbd86a865e9c8a05c58ef88c8d19d9c019712a","790b453e1b76814112c3870d6e12f5db992d3194fdb3529445317dd75cb538be","d375de88ab19f6c105a65fc89eca1ae782362c5c395283b0c85ef39c7b835dfe","aeda2fffbc651fe1fa60b913d45f291f5544c4840206cb3b1badc16d9f01a0f0","7b3c1d688dcb8645b5a6c37bce5b047da92b4c298ed8709e03e987e0efb035b1","29c64e1acb5b73f08a60e71154c65c8a34f885f1f2cc55ffa06dfd244c058883",{"version":"7d176f155e5f6fc9756ddcc1a6d3eb2673030a066e2b7846dfc81b5271f3e269","affectsGlobalScope":true},"024fea9ee598cfe747f18340ad74e4ea428fc2a7988250ff9fcfce5673b7d422","aea18a267a0770c365cc390ad0a0b9725ed7a4540e9a96319b0f5094ee0ca124","a5a7c7d197c7b1918bddb0dd30bf8979a38828b24467ec45db093bf4621507ef",{"version":"afcd875785333f656f79bf1b3a445ceecc6aaf8e2b7cde59309a8778f41de613","affectsGlobalScope":true},"241000969e5367a9a9b9a4f57963e54e5a012c9d89c273526c0115650a7b9e5f","ac388c7c7a262213a3700451bc921e382a93fb27c0252c34ccf03540b4ce044b","097a7e3badfd1c4b35f72aa0f722f5714a4f6a84e53fca5a79dcfebbfc5e718d","fb0107c83e2e0e75b77dacd0c3c6c3ab6844e98dce2a8f858c6f0a57c12136a6","0a478dcb6e6bd8a5d871165659c79cee7b8c3b7a87289118d22e1a04d171e252","e385eb01000d045ea07cea09c488f66e051709a9ac460bf271623f9984e0c419","bf69beba89702c85d84546269e0d4e8b128d32e26b314ee9b501b0b32c82490b","46f3a421b048670d16a3c02589261f17c1cea687f2602eed31e1335b53aed785","4bcb813ea56182beaaab1e8274524eb9f1449b0d8e79efc4a0399de09e43f816","c784eab1cf838d9d6527bce3d9f2d373145606666b68f7610291a7adf6e6bda9","f0380f581cb015778c0fe51e95b5b7f6dae237280654558469b2486c1572268a",{"version":"1cedf457fc86fac950c3200d6d450195cdd8b1095bcfd55189090a4bcde7b3ff","signature":"12ad9329886b0764414ac0c3a50cc4d68b9d0c43b1b555f0d2af5e5027b967ea"},"bae42767ebbb6b7946e71af64f5c2c2a3f49eb1e29aee03293427881fcd7b215","0f81a53d54fd2b4ae2bf60067d616de99884bda21cb5784d942089d52319fb97","7b542379501867f7d2418681fbea38f75c756c2dd67e00e14ab1e125ae604095","29dca1b5f0cac95b675f86c7846f9d587ed47cc46609dd00d152bcb37683b069","a616e1b4eed03c1feb2a6fba721e5cbcb9c23cbe29c1858949a361f80719c0e8","48ba49f8bfce8c08ad1e7e54f0b85da9db7317ca76835d1c2640567e3fbd50c6",{"version":"e84eae78d66683004da65fb65dac1ed1b12415fc74a98a37dec902a5a46d6e44","signature":"bf865da40b7c88af30ccd782cda30cb26ac07e34db2f8e2de1a7ff18415140d6"},"7d54d48a4365f355a7759b1e29f43dea9163a9445d3f26e1234dea0af3e6a16d","78647004e18e4c16b8a2e8345fca9267573d1c5a29e11ddfee71858fd077ef6e","0804044cd0488cb7212ddbc1d0f8e1a5bd32970335dbfc613052304a1b0318f9","b725acb041d2a18fde8f46c48a1408418489c4aa222f559b1ef47bf267cb4be0","85084ae98c1d319e38ef99b1216d3372a9afd7a368022c01c3351b339d52cb58","898ec2410fae172e0a9416448b0838bed286322a5c0c8959e8e39400cd4c5697","692345a43bac37c507fa7065c554258435ab821bbe4fb44b513a70063e932b45","f473be7c909dbd10c40f013e70da40f24648b2abb01025436fe0a0eecd0e83be","c98583f02275727ead0256c97298c15fb77a1c1e473b03c3b61291c63c66d385","9a7904e39add402d71343ac8de5303e990d9abb1fc703c64991c655b718267a5","522edc786ed48304671b935cf7d3ed63acc6636ab9888c6e130b97a6aea92b46","1e1ed5600d80406a10428e349af8b6f09949cd5054043ea8588903e8f9e8d705","7920b8aa27a7b6a90bf9f5dc21eedac7f38ca8717ebe70495ab616eb52b3247b","a53039ba614075aeb702271701981babbd0d4f4dcbf319ddee4c08fb8196cc7a","6758f7b72fa4d38f4f4b865516d3d031795c947a45cc24f2cfba43c91446d678","da679a5bb46df3c6d84f637f09e6689d6c2d07e907ea16adc161e4529a4954d6","dc1a664c33f6ddd2791569999db2b3a476e52c5eeb5474768ffa542b136d78c0","bdf7abbd7df4f29b3e0728684c790e80590b69d92ed8d3bf8e66d4bd713941fe","8decb32fc5d44b403b46c3bb4741188df4fbc3c66d6c65669000c5c9cd506523","391d72e39677e72ba87f890f7a6e53a1830a07bf3fdd6128fe59ac028d7817a1","c26dd198f2793bbdcc55103823a2767d6223a7fdb92486c18b86deaf63208354","93551b302a808f226f0846ad8012354f2d53d6dedc33b540d6ca69836781a574","f0ff1c010d5046af3874d3b4df746c6f3921e4b3fbdec61dee0792fc0cb36ccd","778b684ebc6b006fcffeab77d25b34bf6e400100e0ec0c76056e165c6399ab05","463851fa993af55fb0296e0d6afa27407ef91bf6917098dd665aba1200d250c7","0a13027e3939d08a00e8bf5a99500c9bcafed3d58d7da856093af83add1fb102","be8f369f8d7e887eab87a3e4e41f1afcf61bf06056801383152aa83bda1f6a72","352bfb5f3a9d8a9c2464ad2dc0b2dc56a8212650a541fb550739c286dd341de1","a5aae636d9afdacb22d98e4242487436d8296e5a345348325ccc68481fe1b690","d007c769e33e72e51286b816d82cd7c3a280cba714e7f958691155068bd7150a","c62947664e97a5f6502834551b0a66873f5580019e1a00500fa02c2f52ef3d0e","b04cf223c338c09285010f5308b980ee6d8bfa203824ed2537516f15e92e8c43","4b387f208d1e468193a45a51005b1ed5b666010fc22a15dc1baf4234078b636e","70441eda704feffd132be0c1541f2c7f6bbaafce25cb9b54b181e26af3068e79","d1addb12403afea87a1603121396261a45190886c486c88e1a5d456be17c2049","15d43873064dc8787ca1e4c39149be59183c404d48a8cd5a0ea019bb5fdf8d58","ea4b5d319625203a5a96897b057fddf6017d0f9a902c16060466fe69cc007243","3d06897c536b4aad2b2b015d529270439f2cadd89ca2ff7bd8898ee84898dd88","ab01d8fcb89fae8eda22075153053fefac69f7d9571a389632099e7a53f1922d","bac0ec1f4c61abc7c54ccebb0f739acb0cdbc22b1b19c91854dc142019492961","566b0806f9016fa067b7fecf3951fcc295c30127e5141223393bde16ad04aa4a","8e801abfeda45b1b93e599750a0a8d25074d30d4cc01e3563e56c0ff70edeb68","902997f91b09620835afd88e292eb217fbd55d01706b82b9a014ff408f357559","a3727a926e697919fb59407938bd8573964b3bf543413b685996a47df5645863","83f36c0792d352f641a213ee547d21ea02084a148355aa26b6ef82c4f61c1280","dce7d69c17a438554c11bbf930dec2bee5b62184c0494d74da336daee088ab69","1e8f2cda9735002728017933c54ccea7ebee94b9c68a59a4aac1c9a58aa7da7d","e327a2b222cf9e5c93d7c1ed6468ece2e7b9d738e5da04897f1a99f49d42cca1","65165246b59654ec4e1501dd87927a0ef95d57359709e00e95d1154ad8443bc7","f1bacba19e2fa2eb26c499e36b5ab93d6764f2dba44be3816f12d2bc9ac9a35b","bce38da5fd851520d0cb4d1e6c3c04968cec2faa674ed321c118e97e59872edc","3398f46037f21fb6c33560ceca257259bd6d2ea03737179b61ea9e17cbe07455","6e14fc6c27cb2cb203fe1727bb3a923588f0be8c2604673ad9f879182548daca","12b9bcf8395d33837f301a8e6d545a24dfff80db9e32f8e8e6cf4b11671bb442","04295cc38689e32a4ea194c954ea6604e6afb6f1c102104f74737cb8cf744422","7418f434c136734b23f634e711cf44613ca4c74e63a5ae7429acaee46c7024c8","27d40290b7caba1c04468f2b53cf7112f247f8acdd7c20589cd7decf9f762ad0","2608b8b83639baf3f07316df29202eead703102f1a7e32f74a1b18cf1eee54b5","c93657567a39bd589effe89e863aaadbc339675fca6805ae4d97eafbcce0a05d","909d5db5b3b19f03dfb4a8f1d00cf41d2f679857c28775faf1f10794cbbe9db9","e4504bffce13574bab83ab900b843590d85a0fd38faab7eff83d84ec55de4aff","8ab707f3c833fc1e8a51106b8746c8bc0ce125083ea6200ad881625ae35ce11e","730ddc2386276ac66312edbcc60853fedbb1608a99cb0b1ff82ebf26911dba1f","c1b3fa201aa037110c43c05ea97800eb66fea3f2ecc5f07c6fd47f2b6b5b21d2","636b44188dc6eb326fd566085e6c1c6035b71f839d62c343c299a35888c6f0a9","3b2105bf9823b53c269cabb38011c5a71360c8daabc618fec03102c9514d230c","f96e63eb56e736304c3aef6c745b9fe93db235ddd1fec10b45319c479de1a432","acb4f3cee79f38ceba975e7ee3114eb5cd96ccc02742b0a4c7478b4619f87cd6","cfc85d17c1493b6217bad9052a8edc332d1fde81a919228edab33c14aa762939","eebda441c4486c26de7a8a7343ebbc361d2b0109abff34c2471e45e34a93020a","727b4b8eb62dd98fa4e3a0937172c1a0041eb715b9071c3de96dad597deddcab","708e2a347a1b9868ccdb48f3e43647c6eccec47b8591b220afcafc9e7eeb3784","6bb598e2d45a170f302f113a5b68e518c8d7661ae3b59baf076be9120afa4813","c28e058db8fed2c81d324546f53d2a7aaefff380cbe70f924276dbad89acd7d1","ebe8f07bb402102c5a764b0f8e34bd92d6f50bd7ac61a2452e76b80e02f9bb4b","826a98cb79deab45ccc4e5a8b90fa64510b2169781a7cbb83c4a0a8867f4cc58","618189f94a473b7fdc5cb5ba8b94d146a0d58834cd77cd24d56995f41643ccd5","5baadaca408128671536b3cb77fea44330e169ada70ce50b902c8d992fe64cf1","a4cc469f3561ea3edc57e091f4c9dcaf7485a70d3836be23a6945db46f0acd0b","91b0965538a5eaafa8c09cf9f62b46d6125aa1b3c0e0629dce871f5f41413f90","2978e33a00b4b5fb98337c5e473ab7337030b2f69d1480eccef0290814af0d51","ba71e9777cb5460e3278f0934fd6354041cb25853feca542312807ce1f18e611","608dbaf8c8bb64f4024013e73d7107c16dba4664999a8c6e58f3e71545e48f66","61937cefd7f4d6fa76013d33d5a3c5f9b0fc382e90da34790764a0d17d6277fb","af7db74826f455bfef6a55a188eb6659fd85fdc16f720a89a515c48724ee4c42","d6ce98a960f1b99a72de771fb0ba773cb202c656b8483f22d47d01d68f59ea86","2a47dc4a362214f31689870f809c7d62024afb4297a37b22cb86f679c4d04088","42d907ac511459d7c4828ee4f3f81cc331a08dc98d7b3cb98e3ff5797c095d2e","63d010bff70619e0cdf7900e954a7e188d3175461182f887b869c312a77ecfbd","1452816d619e636de512ca98546aafb9a48382d570af1473f0432a9178c4b1ff","9e3e3932fe16b9288ec8c948048aef4edf1295b09a5412630d63f4a42265370e","8bdba132259883bac06056f7bacd29a4dcf07e3f14ce89edb022fe9b78dcf9b3","5a5406107d9949d83e1225273bcee1f559bb5588942907d923165d83251a0e37","ca0ca4ca5ad4772161ee2a99741d616fea780d777549ba9f05f4a24493ab44e1","e7ee7be996db0d7cce41a85e4cae3a5fc86cf26501ad94e0a20f8b6c1c55b2d4","72263ae386d6a49392a03bde2f88660625da1eca5df8d95120d8ccf507483d20","b498375d015f01585269588b6221008aae6f0c0dc53ead8796ace64bdfcf62ea","08b603e3737ff32a685eefca3e7f21324b8b868f3322416cef759f8a54d234ef","34534c0ead52cc753bdfdd486430ef67f615ace54a4c0e5a3652b4116af84d6d","a1079b54643537f75fa4f4bb963d787a302bddbe3a6001c4b0a524b746e6a9de","7fc9b18b6aafa8a1fc1441670c6c9da63e3d7942c7f451300c48bafd988545e9","200a7b7eb3163da4327412c650e43fbe66c73604a23a694f95ede53c250bfc3b","f254a186c5fc9355b388d5e1643b9f85cb3a84c03d48b0ce7297a352db0b367d","a960dc35ca7a0854d06432d698547debe3a4760438deea197fde8a3ff2101180","5b3386f2d01b9af3d84e1854845ef04b26f742c6337fd0e855a987333f8240df","45f238c699f946ac07f7e7eb7f1ae65b7da6323b8146a7cf5b3fd775b8c00b11","fd7059d47830c465f3a32f1928bd61f7ccb62dac8089ecea0c5b2b365afd9b64","f26f3b22a0ce930bf8e6eb27806db849f616784527a93269c2e3861e875815e8","2c309164cb0e2c526d1d275589679024e669a77ada61d5ec7a3ec93b8cbd542c","353ff6badc7a53ba2487f4eb074bd5d0b41db4984134e507b1f6f766780b82fb","55ac490a5bdc6da1941875c26371e1e94a73b0593ae26509df4c0b6616ad674f","233fc0209343fa04c2a458537b4aaed00bed49f5db212a1fe5200dcee6e2fa4e","b830de197c8889ab5f03fc2211c2e1cee4478c4a5ceb05af2eaea23d9af3af0a","b62564be4535552ed34c9cececa78a0da7dd5447351e195e8cefaada1ba21129","4c9d4f0962f0caf85200c783d97f7049c5e58a48c6a5825e51fc6f0b974b0e9d","d737fc71b51b3e6c591e3edba25062644bbc95696240460adf5c9109df763fe5","b3dec0879e876086c6bd5d93b671bf3a034da7712ea60b6e815f1de987df060a","50134fabe24e7eb552897d84d2eaefc923d7577a5fef9427e268c469d8cdc7e1","00d3b08e4ea2d4d02e180810c9f6b03be1977d9d2ea5389141d3363efcd58f3c","5c7b4d69e9d49382954fb7c46b9e368b517b11a5f55f34e66b8fd9951fed6d34","47ca4f700d7cbd844259cb0fb35fbe484fdef7b794a6c60c3c8dfe02ad4be3b2","a34a4b7870a629ef38a8912c8ed915d7300fc555ebb75eaae4e1c502222628bb","f91a4509eb86e40562a7befcfbe7fe10776612196f44a4c9e0aada159b903b6d","f8555900075ce2073dedb0818960ea42b52d18e5729b44a6dc75c43bbd088ed1","dbd825417d2051294de6b53445bef43b0527e200d78e1a8ae6cfaf818da50278","c2bbb1290dfda842dc0b66a9d50da29972b5bcafd3d4b124a74cef3d3d2af610","efba682f8523e9957fe6a8c0a2630b2e24f45d53e448cd60500269e5cbf3d251","b2c46988d6d7d3d0da5cc2fa0c80e8a4adcb309071d4264ba6d30f2d67cd642c","ab218a7d41436bd2cae6bcbf7371bc9321786471de9997816e549184c3bdc335","9b51dd74a388c13e157c457cc39d59dc2aae2134f6a21cc6b695219932cb8817",{"version":"db06f4cdf70e3689f0cd5a96a6836f34024ad61e8dd01473560ebbcae09c532b","affectsGlobalScope":true},"6c71a186369074378653c84fe944b269db54501e33e790791d59a106482aae86","41db1e358120ce74584d9cf596344db2702f305b649c6c8c55ad4e27c440eaf1","ffb162ad0b1e5c1d9882a81a6af2ee94db93dc4f9fcfeb5e5a7a1025a40c1a24","d18cafabd6456b23ebcf11198c9c056a56361facb07977c653cce50a6ba184f9","29cce97240f57803d3ebbd2dce484634ff8646088287203d461dd97ae29cc692","29bfbafb7d1b80882c83b108f5242bd78aaad7fefc464fda5f571ffe6d8c5a99","a93475d7baca260e4db85215cfa6e59b2357e1f526b056b18ed9c4493e7b80c3","eaed3a7faeb31229dc14e0c13c30b7ce6ee625be2c684e13dbaf46f19b5cad50","820a5ca18bb09bc50ebd1856794e9dfbc5a7f855f610e6f9d59cbe3b9e1a7c8f","364524cd4d5db23c9d6aaaa9a8fb2f6d067fb39122728b78efed43055677bdbe","746b1ad552967231e762f8742671ad1f700e3dc3e259aa5def3a1f7f31135aff","e11cf956b17e2f7287e14c05d3790f34afc54d1d54b4c74b69b8c1849109feed","3e79b1b6beb23ce850766d185e632d24442afbd54667891c2e052c3ba93062d1","25978fa21b2728d3277888d33df9272738605df94140b4b0c883cf352ec31ca6","c9e5c708eb84894b985071080652da531d4b27ca8cb60963521270239cfe8c20","37d03426db10f974cc01937c9d121c99d9272ffa801d18fe90c4c91c6c98311b","89561071bc9d84d0d763b929dc34b0920365cd79d5f2a264b4b22a1f211c61d4","d762a442207965c55ed3185731d4a66fafdc0262c623d16ffb214acac18e3b4a","63d3ddfad484b1e3c3e4a3890fa312721064c8570c437081e597b8941a9b0be3","074d0c29700bd9667bc549f460ce2097132e13b2cfafac16be9dbe38756adc17","d20248b40c769f2957741b1fde5580cb2d4cb4c28651f7fd250eb02fa6c98f09","514791e8c0e59bd61576e76f61db12272e949bab76a3af11ccedfb75be3d4794","ad17364042b079f3c14b7d29eac304bcfe25cceb3565b4973f387bf1d5d27782","fccb69b68f78d7fbba625c31a5622a0682dbf8e88b51fd03ea50e721ca596296","2daed8a6f384d9bbfda7a08ad51f194ea391e1a4a581ab8c6af08822d2e1d86e","2f2dca6bd4f2f67a44848a53407e8b19ad36d0fe78b938b612494794d15e4139","b7ebd94ed755d68d46fdb6f1e3c031eb72c8942a08dc9bf4afbc5586d3efbb27","ff5fad599a44994948615b02ab9a4b10215fb631ecbc4d6e0fc8943ba8452d5a","363ae6ba6e8903b1972f9d9b9a57e69df939b2b7294a760ea4bccf2756e48f74","59e117fad3dc25be31325b8595d65e4fad0a323519b244f7095735b29740798e","3245a023245b2174422c427b2826ec5d28e689665b32dfe717b9921f13503c40","ba1380651f4f31c52a3b68dfbd2e820de6bb64de494930b6e990e99f1296edc9","e4dca3b5d2b2f31cfbbeeeefa2a5d2e909c61c00f17aa7be9fc396170981e368","131fdc917c4eec9e3b03d1ccd9a1154ca03cce5c9b3abc5e12677a5234c1ece8","e32e499cdb189c52a79433d0715e822419b6581199df2e93974378269ea7d528","b0b83a5d3e15193408b4145b8e27ffea7666c0a163e9f5f7e95ef960363d9fe1","c754af99b43287268ab8d94c69f0f9005ef3b029a0d35001d2af3297f8cf9f28","dfa584f5099cb5deee0c65137055b520473a23d9e20041bcbc107f2e9592cf14","f5800d0a2b11c8338d1205543f7352850deb101ba2372eb395839a60f9132d94","228700f3848072c320cf259ad6092013128639fd4f28d50a009f7409329865aa","3e7f64156b20e71249be6e8ce2f4ec5eaf265bd82156b75623a9c1044b11ddf5","70d7baad641e61f0e2f32dfb089aae0ffee36080ba0d1405c8be8b740421ea92","0e96ef72a2d31523a5eed98ceccd861e08ec69469fc269e7248e45c4fc66bcf8","6e83430621d62e7a87b205819bcb5ed54bc356e83f20a8654f12e3d43613acce","c18aa3cdf4ca66da764a7bb6a51118674cfcfe18b7dae7024b5080d03fb9e5a5","e20cf252e9c517654604ac4ceea19a0fc1259f24cc89c5e656ea33faa523aedb","95fe56d192ce6f1ca4948005eb47d0cfb68bd6227346a9aa12e7b838c553557e","b1f1ebc4e1589420d6a0586b1d8612802efd03f8a54b375fd1917fdf5a637581","95328498dcf755c3919f360e07c000018c1b54da1bbcc2b36c993364148fc00e","a5a16e2cf88ada37ed679ba577123f9711dc3ae44eb9edd6a4b91a0b896f1b07","66f9b646daa404710fa555328e9f161c87120a7b2c9dd2c5ef034acf8615b316","19cef1c1bd6bc0a7a0f67902cb46deb38371207ede06e87fe1df0d7c48dd7b3a","9b482c62894ce3717b901074eba991994a31aa8fa42f8e0df11a3d7302154303","5dcd41aeb5f7119177adab46147589a1618f2b35bd976e6c3a20ec328f58d1bd","18093dd86562c6177af8fb0a5d711ce38a642a944c2f2ba8f876fa7d53aba928",{"version":"bbdf156fea2fabed31a569445835aeedcc33643d404fcbaa54541f06c109df3f","affectsGlobalScope":true},"ba7617784f6b9aeac5e20c5eea869bbc3ef31b905f59c796b0fd401dae17c111","6a386ff939f180ae8ef064699d8b7b6e62bc2731a62d7fbf5e02589383838dea","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"e870860b52176fc9c884bbd62b6dbb4982e84a3dd33782333b952653979911eb","affectsGlobalScope":true},"24b77ccef75bd2bd25deb2acfc4723b75d171ed92fe18178b3457073e592a90a","061febff29c5d278119380274e549c882f294b14b2d27e7e8d6b5085797e6a60","5673d28d9adb6209ba1120bfd5bacbfd27e50df4167eb7b7576c6a38f6d82049","0cbaf146205362864870bb5771dd48561d5f8ed5430a7c14bcb03b9077bdd2ed","fb17e6f5c2e6225822052b596c2ccd0888bc6922a9678394b66ec71875830da2","62c8953f06da3b62d7c6b52bc4d47a04c16484ee8f69aedb85ef35737719d1fe","2771f18413bee37bc63b861f663a843947c86ccfc858e2d0cd83a62c6f1da1af","31ac42673f115c2a476cdb344626de64627dc12fc4212d963b0426bab3ec9610","bf233e782dbbf53cc572be908504bf4c075459cef8af4b81a6b56de19e966946","17708f8c8f046446915bea2dd0ab7daeb27716fed357d7253e049630e1f35216","2e24db9d5d15503950332d50f520eaaf694a1a2bdc44a2c576a5558e3445aa6f","217199191521b6913e6778f0fd8c8c5dbeaa2948cbda7f64d12c048be9a69234","9e2114edeff3eb8f6be38585a6c9cb36533e1e9f17aa97eb42f95ae6bf88705e","327dce4f7a8a708865565ef6ed316c727072c498a5f6c9fe0097969ff2789980","633c8d4a118ecb39643de5c1220eb9ae464531af9b49bde0457ad4332f26d438","d424df4b3e74363be2c8e33f5f3aac859120d4b62b7243af1a3c1d15d7106fc2","696cfd8e9589d34ddedc239183efa681cfbf47110722abea5568288f4da55c44","9500809b0594a0597c1699829b1d59717a12c37d8d767759f063d4a3c622d7fa","a47553afcd47d59dc10b5b3b0e6f0c607db4f8b81a3c7acda13326572837a79f","c6b4d64a1f25c676c9acc1ddb9c8d4f2874eea815daec7a1b6fbdd8dca5cec5f","3a33dc0aaca86bfc68a58b603aeada539a0e47bce983d88473c7076318b91c9f","e30056a44fcf06d1124d8b0d370a67e4f0d65f81563614f0aecdecc07c7ccdb1",{"version":"a1035aec1036ece8dc003205782b82383ba92510a633c2fa0e2deff0259ca353","signature":"44675e7025fe8e0aba9d9bf727d3a7c1636aa438994f585c0a8bb6b1cb1dd871"},{"version":"fd624f7d7b264922476685870f08c5e1c6d6a0f05dee2429a9747b41f6b699d4","affectsGlobalScope":true},"23c05cc4d97aa608b5ea8badadb4e1b0c4e306ed5d651c5d1760552e91d1ad92","769c966ef166205a08c0382a298a6c5877951599d805931a963ae5650ee46391","35c1202e93852c1c233191971b8c4aefe5d3f9df287991585fe305078c0880e6","690a59ec8ef431839c447cd88fbb0bd0ce59c037736d8748737d4e0f2ed57077","4a2a6bd6a36b058effc58d1aab136cdbd66188773470885a4b414098a0d76821","b12f96f442196be954b8fa982f179527fff05a796962fecfb6e12b0a2c1b6867","701978f3975f96e76e3ffc2e1762e3a97e3d323812049fb6fdfd559579b89708",{"version":"4ab17f80ced148d509345cee706b2b85941515dd76e32cf47118bcdf6a4bd56a","affectsGlobalScope":true},"641089f0b8094ef74b9d4b3364d5dec1592d5e3b8a51c1ba491bc8872049e79a","6d0c23f8c9efcd67b96bae7e7140cd9fdfeacc314c79220f48aaa5086585e31d","0dd5f5946c922d5bcf94d0b088bfed3f6a4dd3331e9fce9423d0adbb60c889c1","6bf72b2541469cac7a7882468d25a04fdff489625452ff7d3e670c764e5a9ba1","5257b95e47714b754c367ce742ada7042aade5bf8c88bc7dd5a23194e3a50fb0","cf93fb9208a01c80f0fad245c4360356e5de6c2384b7641acf0b9cc2f5c42448","336398b0efaf964124e636a9b29c4edd5870aee79ac64bf87be58a9d66b7c048","571bc65ec37ba124e762bb822e14a2b8502dc684e356be8feaccbd6b9cadd023","2bbbefc1235500bdb5091f240dc8cba861a95342272f7d11b7574a0d2ef4f85e","7cd455fc4c4818f19263d73b29c59f3fb5fd54b45a6ab83ca3eb3661281db56b","1c6b9b5501774a2ece6574be8e26092800e3f1f836f8c179b4f9fdd271a620f8","0929ec89582904044a56ca8220114b7256450a197da22eb5c9b630be69a41372",{"version":"e663af8800ffc286c5a05720dad511a9eeb81d8aa7d2639583c9dfcc3e978354","signature":"bd37687f12187ddee43eeca6ead3450afb208ad08c2d8c81ffae934c3dc84bd8"},{"version":"d18bbe8a26e833dbe4c9fd784b70c5eab5caa12e9991cb0279316255d60121f9","signature":"bc5751041df5f2d3734a4a5b43583f3c1f257fd19321d1bcc8d8607e18e32d32"},"60997095f458b8c2c94af5759c796d9d17678e740a41a04c3e518c14c47f2ee7","b19e95136dd01ce850d7f05e05d594afecc4510fd1b44cdc049e4b7ce4d18e35","415ae3a9be423d2db81b7e16a6c053c83d3f83b1af03a2827aea3de084b70742","79be55362c82b8aa2f5dc063b51dbbc8f38f009d81c494aac4f671ff23fefb86","10cbee260a09cb62cc5516ea65aa7504f21ec98048a324e789d04d40d9057513","4d50db18bdcae4a401e888ac0f6b456d44405a860d38b90773158e2f11b1aa24","2fa8eeba1b6d29551683794e35cc3ea7bf2351f425f5023f0c1db691f551010c","73b33f358af52e1fa1942be3b8262e3c97ef189370feea3f43acfd883c1f8639","147cb5b590b77c8c58e4ef0af1ff11ee90ee2b34262816df0665b6ff8fd50aad","6e0575b628aedce5db38c17569e5c909beead07f9052fe7944fb8bfccc3db92e","ae1351ed65b27a2b29a70a238024c957910e944aabbffce286099ed2b04f9baf",{"version":"3c19b3fb2f88bbd8f103fe2de0d6c0700dd9bf6678553f6db803162620b49e27","affectsGlobalScope":true},"67eee3f60d04105614d4bed2b3eef28dc7a3a746dcf59dffcc4254d7fd023762","628e5558b3df3fff39a900912739dffd7da24afb87821adffdc2df20cf834c52","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","ab5812bd79ae1dc511fd9e24271a7583ea9cfbba0982a72e3f076796f6ebb034","c44f30a25bfb7a67ca410fbf603979501133e5b5bd8741ecb389e60503a1cb82","62358f906a13ad95a4d41a589c4ef4c0edfd4cf313ba0cff057b5ac0bd5c2f06",{"version":"87ad2b857e68151fff37d8ced05814af6ec122cfeff25e5112fc7014eaa45b20","signature":"d07f1e592e0663a70d0eec9f3f74ada99df2f867384ca91e1870f61e83b5d088"},"7a286c7ce1f424de104823da3c89ebe10847fb084b98f55e175040ffefb727d1","fbda38155a615eafbfd0b5d5165ebb91873084ca1bff6f865aaaec11f0ca2395","4b19ef22586a488de7412e25b5490ace2562e86cfdb3e1c9a22cad11ecb9fd5e",{"version":"7fd7344eed23a0dba5a2651fabdc5e0db707008b2383b4b149af86966d508394","signature":"84921acdf0983e70391ef4f877620bfe61de9b1907ed5242da67a6943fc753e6"},"bb3378facb78384a76536ebbc67b36c808b4781a595fc80f41d80041af0b9b12",{"version":"8a0b51e85253c3146a320009bfe0b2aa157784e395f7d2c269c2b81cdb1eae3a","signature":"7f3d12b126981064b5af1762215ecfcd239afa7cd6ec6e02a461aba46d7b1d03"},{"version":"e65fde7a73ee5aaf8c57c422d07a0f501a614aebc48bb6ec9e818a427179c70b","signature":"18eda1c68b0e5225722d5d20a100bb685f14b0f5d5e5d74b64d8a44634610316"},"9122ed7070e054b73ebab37c2373a196def2d90e7d1a9a7fcd9d46b0e51fae78","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"77f0b5c6a193a699c9f7d7fb0578e64e562d271afa740783665d2a827104a873","affectsGlobalScope":true},"21a167fec8f933752fb8157f06d28fab6817af3ad9b0bdb1908a10762391eab9",{"version":"3e4624c306340ad303cc536a07004e81336c3f088308a9e4a9f4c957a3cda2fd","affectsGlobalScope":true},"0c0cee62cb619aed81133b904f644515ba3064487002a7da83fd8aa07b1b4abd","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","34ec1daf3566f26c43dbab380af0de1aac29166e57e4f9ef379a2f154e0cb290","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","75ecef44f126e2ae018b4abbd85b6e8a2e2ba1638ebec56cc64274643ce3567b","f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"249a2b90439cdfd51709539fbfa4dfe0791cbae6efce1e9b327ba8f8cd703f49","affectsGlobalScope":true},"2f60ac046e587e917d739f1edc77540eb0ec34f83090dae4ebd5f96c1c9578d4","a9b6b0f7b1e30359283b131ba6d1c51ee2d3601a2f12e1623141e6a1a60c92a5","aeee0090b38de0dd47ca9a79ad5c2d156e3e09d92306719b0b45a3e96098e564","7bac475dcdd9f7e4e9da934d32c305bc889c4ce3c8ac0ef45a93a8d670fff607","09416dd69576b03a3f485adf329a02f043e4a481e060ef5b208194e488d31fd9","8acf99b1c8682276a63ea5bb68433782715892726b97e4604a415e4e56bce41c",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"3b145a2351f5cf16abf999c8d5f4481c74dffdc54ec1e9a89992e2622e1226c5","a907bf91df26df2400858ef75f749498fb5cf00062bf90a737ac3949cc07978d","d270fd4b565eda11a0a737c181892316b7a1ace06c7988d0246219c3df11db06","4275d5f964e7fc7afc18538e26b3748c207dd772998346d17f409749aa1f3a63",{"version":"59a638a504490fecaacf0020b9814b6abee37edb66047eb1ab9f7c2274bf1da0","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","d1a78a3c5708807e8de3e399f91df4797c62e44b02195eefc2209b2e713e54ee","8c4c1a64db28930732033c31418f817dcb9d09d706766707ae6d38f23faf0c53","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","12a70315c8281e46d65696086dd25827408e967b305a22276ae2779fe519e0fe","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","29d613c3964ea75b2b4e0d17098245c34529282e9cc72b7e4eeb2a7b12c27cb7",{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","a381f079c4804442f179d742fdb2e495fe28d67a47cac673485f75ae2e77aeca","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"bfe39beb986d2a2e512c091cbe924f1c415bc65de54de0e2f6a0dc6f84c183d9","affectsGlobalScope":true},"2af17363f8a062e3a8cd1b26030af0058b3f86e783f4fc6aa9f57247f240ebaa","06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","dfe08140492cdc135fb7fd9c4a652c05207b61a436906079b87da1d3111314bf","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa","089e1f8603cbc35ab977c8dcc662eb754b82fca32ed1dfb16bd682726c2d5432","8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"82fc37849846a3a0264047621d5beb6ce2ddeb2f83bdee2c79523af3c3282d97",{"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":5,"useDefineForClassFields":false},"fileIdsList":[[185,198,209,233,395],[208,209,210,395],[185,207,233,395],[185,196,208,395],[190,198,199,200,202,203,204,207,208,209,210,211,233,395],[197,198,200,207,208,233,395],[395],[185,200,207,233,395],[185,198,200,202,207,210,233,395],[190,395],[185,200,203,206,208,233,395],[270,395],[185,198,200,203,204,208,233,395],[185,199,207,208,210,233,395],[185,200,203,205,233,270,395],[185,212,233,241,251,263,264,265,267,395],[186,200,212,233,241,251,252,260,261,263,264,265,267,268,269,395],[185,212,233,241,264,268,395],[208,212,233,252,261,262,264,265,266,395],[185,212,233,241,252,261,264,265,266,267,395],[185,212,233,241,252,262,263,264,265,267,268,395],[185,196,212,233,241,252,261,262,263,265,267,395],[185,196,212,241,264,267,395],[185,190,251,260,395],[270,293,395],[233,234,395],[235,395],[190,234,235,236,237,238,239,240,395],[185,233,395],[190,241,244,395],[241,244,395],[190,242,243,244,245,246,247,248,249,250,395],[241,395],[244,395],[185,241,395],[233,395],[190,253,254,255,256,257,258,259,395],[270,275,395],[270,275,281,395],[190,276,282,283,395],[190,285,286,287,288,289,290,395],[185,196,270,279,395],[270,279,285,395],[185,190,196,270,279,395],[190,279,284,291,292,395],[185,395],[275,395],[277,278,280,395],[270,275,279,395],[185,196,233,241,261,270,275,395],[218,395],[217,395],[186,187,188,189,395],[185,192,395],[190,191,192,193,194,195,213,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,395],[216,395],[214,215,395],[212,395],[45,395],[66,395],[45,66,395],[45,66,74,395],[43,44,395],[51,53,54,55,395],[51,52,61,62,63,331,395],[51,332,395],[51,61,62,63,395],[51,64,395],[51,395],[51,54,56,58,59,395],[51,60,395],[54,395],[55,57,395],[53,58,395],[351,395],[354,395],[355,360,395],[356,366,367,374,383,394,395],[356,357,366,374,395],[358,395],[359,360,367,375,395],[360,383,391,395],[361,363,366,374,395],[362,395],[363,364,395],[365,366,395],[366,395],[366,367,368,383,394,395],[366,367,368,383,386,395],[395,399],[369,374,383,394,395],[366,367,369,370,374,383,391,394,395],[369,371,383,391,394,395],[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,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401],[366,372,395],[373,394,395],[363,366,374,383,395],[375,395],[376,395],[354,377,395],[378,393,395,399],[379,395],[380,395],[366,381,395],[381,382,395,397],[366,383,384,385,386,395],[383,385,395],[383,384,395],[386,395],[387,395],[366,389,390,395],[389,390,395],[360,374,383,391,395],[392,395],[374,393,395],[355,369,380,394,395],[360,395],[383,395,396],[395,397],[395,398],[355,360,366,368,377,383,394,395,397,399],[383,395,400],[271,272,273,274,395],[46,395],[94,269,395],[87,88,94,95,395],[96,160,161,395],[87,94,96,395],[88,96,395],[87,89,90,91,94,96,99,100,395],[90,101,115,116,395],[87,94,99,100,101,395],[87,89,94,96,98,99,100,395],[87,88,99,100,101,395],[86,102,107,114,117,118,159,162,184,395],[87,395],[88,92,93,395],[88,92,93,94,95,97,108,109,110,111,112,113,395],[88,93,94,395],[88,395],[87,88,93,94,96,109,395],[94,395],[88,94,95,395],[92,94,395],[101,115,395],[87,89,90,91,94,99,395],[87,94,97,100,395],[90,98,99,100,103,104,105,106,395],[100,395],[87,89,94,96,98,100,395],[96,99,395],[96,395],[87,94,100,395],[88,94,99,110,395],[99,163,395],[96,100,395],[94,99,395],[99,395],[87,97,395],[87,94,395],[94,99,100,395],[119,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,395],[99,100,395],[89,94,395],[87,94,98,99,100,112,395],[87,89,94,100,395],[87,89,94,395],[120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,395],[112,120,395],[120,395],[87,94,96,99,119,120,395],[87,94,96,98,99,100,112,119,395],[45,49,395],[49,395],[48,49,395],[47,48,395],[67,68,69,70,71,72,73,74,75,395],[330,395],[45,49,50,395],[299,395],[42,51,76,77,83,395],[42,269,297,395],[42,51,76,83,84,298,300,302,305,312,319,320,395],[42,320,321,343,347,349,395],[42,51,52,65,76,395],[42,51,52,76,83,321,342,395],[42,51,343,346,395],[42,298,395],[42,299,320,348,395],[214,270,294,395],[85,295,296,395],[301,395],[78,395],[79,80,81,82,395],[51,78,395],[49,51,395],[51,329,395],[322,329,334,336,337,338,339,340,341,395],[312,395],[335,395],[52,333,395],[323,324,325,326,328,395],[51,327,395],[49,51,52,395],[49,51,52,323,395],[49,51,323,395],[49,51,325,395],[344,345,395],[51,344,395],[304,395],[303,395],[308,309,395],[307,310,311,395],[299,306,395],[313,314,315,316,317,318,395],[49,51,77],[49,51,84],[320,321,343,347,349],[49,51,52,65],[49,51,52,321],[49,343,346]],"referencedMap":[[210,1],[198,2],[208,3],[209,4],[212,5],[199,6],[201,7],[211,8],[203,9],[204,10],[207,11],[202,12],[205,13],[200,14],[206,15],[268,16],[270,17],[263,18],[252,7],[267,19],[262,20],[266,21],[264,22],[265,23],[261,24],[294,25],[235,26],[239,27],[236,27],[240,27],[237,27],[241,28],[238,27],[234,29],[245,7],[248,30],[246,7],[249,31],[251,32],[242,33],[250,34],[244,35],[247,33],[243,10],[258,33],[253,36],[255,36],[260,37],[256,7],[254,36],[259,33],[257,33],[215,7],[276,38],[282,39],[283,38],[284,40],[291,41],[285,12],[286,42],[287,42],[288,43],[290,12],[289,44],[293,45],[292,46],[277,47],[281,48],[280,49],[278,47],[279,50],[225,7],[227,7],[219,7],[228,51],[226,46],[229,7],[220,10],[218,52],[231,12],[217,7],[230,7],[187,7],[189,7],[190,53],[188,7],[191,46],[192,46],[193,46],[194,54],[195,46],[233,55],[222,56],[223,56],[221,56],[216,57],[224,56],[213,58],[232,7],[196,46],[43,7],[66,59],[67,60],[70,61],[68,61],[72,61],[75,62],[74,7],[73,61],[71,61],[69,60],[44,7],[45,63],[53,7],[55,7],[62,7],[56,64],[54,7],[332,65],[333,66],[64,67],[65,68],[52,69],[60,70],[61,71],[63,72],[58,73],[59,74],[57,7],[403,7],[351,75],[352,75],[354,76],[355,77],[356,78],[357,79],[358,80],[359,81],[360,82],[361,83],[362,84],[363,85],[364,85],[365,86],[366,87],[367,88],[368,89],[353,90],[401,7],[369,91],[370,92],[371,93],[402,94],[372,95],[373,96],[374,97],[375,98],[376,99],[377,100],[378,101],[379,102],[380,103],[381,104],[382,105],[383,106],[385,107],[384,108],[386,109],[387,110],[388,7],[389,111],[390,112],[391,113],[392,114],[393,115],[394,116],[395,117],[396,118],[397,119],[398,120],[399,121],[400,122],[273,7],[271,7],[275,123],[272,7],[274,7],[47,124],[46,7],[348,7],[197,7],[269,125],[96,126],[162,127],[161,128],[160,129],[101,130],[117,131],[115,132],[116,133],[102,134],[185,135],[87,7],[89,7],[90,136],[91,7],[94,137],[97,7],[114,138],[92,7],[109,139],[95,140],[110,141],[113,142],[111,142],[108,143],[88,7],[93,7],[112,144],[118,145],[106,7],[100,146],[98,147],[107,148],[104,149],[103,149],[99,150],[105,151],[181,152],[175,153],[168,154],[167,155],[176,156],[177,142],[169,157],[182,158],[163,159],[164,160],[165,161],[184,162],[166,155],[170,158],[171,163],[178,164],[179,140],[180,163],[183,142],[172,161],[119,165],[173,166],[174,167],[159,168],[157,169],[158,169],[123,169],[124,169],[125,169],[126,169],[127,169],[128,169],[129,169],[130,169],[149,169],[131,169],[132,169],[133,169],[134,169],[135,169],[136,169],[156,169],[137,169],[138,169],[139,169],[154,169],[140,169],[155,169],[141,169],[152,169],[153,169],[142,169],[143,169],[144,169],[150,169],[151,169],[145,169],[146,169],[147,169],[148,169],[122,170],[121,171],[120,172],[86,7],[78,7],[50,173],[48,174],[330,175],[49,176],[76,177],[331,178],[51,179],[300,180],[306,180],[299,7],[186,7],[42,7],[8,7],[10,7],[9,7],[2,7],[11,7],[12,7],[13,7],[14,7],[15,7],[16,7],[17,7],[18,7],[3,7],[4,7],[22,7],[19,7],[20,7],[21,7],[23,7],[24,7],[25,7],[5,7],[26,7],[27,7],[28,7],[29,7],[6,7],[30,7],[31,7],[32,7],[33,7],[7,7],[34,7],[39,7],[40,7],[35,7],[36,7],[37,7],[38,7],[1,7],[41,7],[214,7],[84,181],[298,182],[321,183],[350,184],[77,185],[343,186],[347,187],[320,188],[349,189],[85,7],[295,190],[297,191],[296,7],[301,7],[302,192],[79,193],[83,194],[80,195],[82,196],[81,196],[340,197],[341,180],[335,196],[342,198],[322,199],[338,200],[339,200],[336,200],[337,200],[334,201],[329,202],[328,203],[327,204],[324,205],[325,206],[326,207],[323,196],[346,208],[345,209],[344,7],[305,210],[303,196],[304,211],[308,7],[310,212],[309,7],[311,69],[312,213],[307,214],[317,7],[318,69],[313,69],[319,215],[314,69],[315,69],[316,69]],"exportedModulesMap":[[210,1],[198,2],[208,3],[209,4],[212,5],[199,6],[201,7],[211,8],[203,9],[204,10],[207,11],[202,12],[205,13],[200,14],[206,15],[268,16],[270,17],[263,18],[252,7],[267,19],[262,20],[266,21],[264,22],[265,23],[261,24],[294,25],[235,26],[239,27],[236,27],[240,27],[237,27],[241,28],[238,27],[234,29],[245,7],[248,30],[246,7],[249,31],[251,32],[242,33],[250,34],[244,35],[247,33],[243,10],[258,33],[253,36],[255,36],[260,37],[256,7],[254,36],[259,33],[257,33],[215,7],[276,38],[282,39],[283,38],[284,40],[291,41],[285,12],[286,42],[287,42],[288,43],[290,12],[289,44],[293,45],[292,46],[277,47],[281,48],[280,49],[278,47],[279,50],[225,7],[227,7],[219,7],[228,51],[226,46],[229,7],[220,10],[218,52],[231,12],[217,7],[230,7],[187,7],[189,7],[190,53],[188,7],[191,46],[192,46],[193,46],[194,54],[195,46],[233,55],[222,56],[223,56],[221,56],[216,57],[224,56],[213,58],[232,7],[196,46],[43,7],[66,59],[67,60],[70,61],[68,61],[72,61],[75,62],[74,7],[73,61],[71,61],[69,60],[44,7],[45,63],[53,7],[55,7],[62,7],[56,64],[54,7],[332,65],[333,66],[64,67],[65,68],[52,69],[60,70],[61,71],[63,72],[58,73],[59,74],[57,7],[403,7],[351,75],[352,75],[354,76],[355,77],[356,78],[357,79],[358,80],[359,81],[360,82],[361,83],[362,84],[363,85],[364,85],[365,86],[366,87],[367,88],[368,89],[353,90],[401,7],[369,91],[370,92],[371,93],[402,94],[372,95],[373,96],[374,97],[375,98],[376,99],[377,100],[378,101],[379,102],[380,103],[381,104],[382,105],[383,106],[385,107],[384,108],[386,109],[387,110],[388,7],[389,111],[390,112],[391,113],[392,114],[393,115],[394,116],[395,117],[396,118],[397,119],[398,120],[399,121],[400,122],[273,7],[271,7],[275,123],[272,7],[274,7],[47,124],[46,7],[348,7],[197,7],[269,125],[96,126],[162,127],[161,128],[160,129],[101,130],[117,131],[115,132],[116,133],[102,134],[185,135],[87,7],[89,7],[90,136],[91,7],[94,137],[97,7],[114,138],[92,7],[109,139],[95,140],[110,141],[113,142],[111,142],[108,143],[88,7],[93,7],[112,144],[118,145],[106,7],[100,146],[98,147],[107,148],[104,149],[103,149],[99,150],[105,151],[181,152],[175,153],[168,154],[167,155],[176,156],[177,142],[169,157],[182,158],[163,159],[164,160],[165,161],[184,162],[166,155],[170,158],[171,163],[178,164],[179,140],[180,163],[183,142],[172,161],[119,165],[173,166],[174,167],[159,168],[157,169],[158,169],[123,169],[124,169],[125,169],[126,169],[127,169],[128,169],[129,169],[130,169],[149,169],[131,169],[132,169],[133,169],[134,169],[135,169],[136,169],[156,169],[137,169],[138,169],[139,169],[154,169],[140,169],[155,169],[141,169],[152,169],[153,169],[142,169],[143,169],[144,169],[150,169],[151,169],[145,169],[146,169],[147,169],[148,169],[122,170],[121,171],[120,172],[86,7],[78,7],[50,173],[48,174],[330,175],[49,176],[76,177],[331,178],[51,179],[300,180],[306,180],[299,7],[186,7],[42,7],[8,7],[10,7],[9,7],[2,7],[11,7],[12,7],[13,7],[14,7],[15,7],[16,7],[17,7],[18,7],[3,7],[4,7],[22,7],[19,7],[20,7],[21,7],[23,7],[24,7],[25,7],[5,7],[26,7],[27,7],[28,7],[29,7],[6,7],[30,7],[31,7],[32,7],[33,7],[7,7],[34,7],[39,7],[40,7],[35,7],[36,7],[37,7],[38,7],[1,7],[41,7],[214,7],[84,216],[321,217],[350,218],[77,219],[343,220],[347,221],[85,7],[295,190],[297,191],[296,7],[301,7],[302,192],[79,193],[83,194],[80,195],[82,196],[81,196],[340,197],[341,180],[335,196],[342,198],[322,199],[338,200],[339,200],[336,200],[337,200],[334,201],[329,202],[328,203],[327,204],[324,205],[325,206],[326,207],[323,196],[346,208],[345,209],[344,7],[305,210],[303,196],[304,211],[308,7],[310,212],[309,7],[311,69],[312,213],[307,214],[317,7],[318,69],[313,69],[319,215],[314,69],[315,69],[316,69]],"semanticDiagnosticsPerFile":[210,198,208,209,212,199,201,211,203,204,207,202,205,200,206,268,270,263,252,267,262,266,264,265,261,294,235,239,236,240,237,241,238,234,245,248,246,249,251,242,250,244,247,243,258,253,255,260,256,254,259,257,215,276,282,283,284,291,285,286,287,288,290,289,293,292,277,281,280,278,279,225,227,219,228,226,229,220,218,231,217,230,187,189,190,188,191,192,193,194,195,233,222,223,221,216,224,213,232,196,43,66,67,70,68,72,75,74,73,71,69,44,45,53,55,62,56,54,332,333,64,65,52,60,61,63,58,59,57,403,351,352,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,353,401,369,370,371,402,372,373,374,375,376,377,378,379,380,381,382,383,385,384,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,273,271,275,272,274,47,46,348,197,269,96,162,161,160,101,117,115,116,102,185,87,89,90,91,94,97,114,92,109,95,110,113,111,108,88,93,112,118,106,100,98,107,104,103,99,105,181,175,168,167,176,177,169,182,163,164,165,184,166,170,171,178,179,180,183,172,119,173,174,159,157,158,123,124,125,126,127,128,129,130,149,131,132,133,134,135,136,156,137,138,139,154,140,155,141,152,153,142,143,144,150,151,145,146,147,148,122,121,120,86,78,50,48,330,49,76,331,51,300,306,299,186,42,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,34,39,40,35,36,37,38,1,41,214,84,298,321,350,77,343,347,320,349,85,295,297,296,301,302,79,83,80,82,81,340,341,335,342,322,338,339,336,337,334,329,328,327,324,325,326,323,346,345,344,305,303,304,308,310,309,311,312,307,317,318,313,319,314,315,316]},"version":"4.7.4"}
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "User interface to select font and create font.",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "heartyoh",
|
|
6
|
-
"version": "1.0.0-beta.
|
|
6
|
+
"version": "1.0.0-beta.48",
|
|
7
7
|
"main": "dist/src/index.js",
|
|
8
8
|
"module": "dist/src/index.js",
|
|
9
9
|
"exports": {
|
|
@@ -35,14 +35,14 @@
|
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@material/mwc-icon": "^0.26.1",
|
|
38
|
-
"@operato/attachment": "^1.0.0-beta.
|
|
39
|
-
"@operato/headroom": "^1.0.0-beta.
|
|
40
|
-
"@operato/i18n": "^1.0.0-beta.
|
|
41
|
-
"@operato/layout": "^1.0.0-beta.
|
|
42
|
-
"@operato/property-editor": "^1.0.0-beta.
|
|
43
|
-
"@operato/pull-to-refresh": "^1.0.0-beta.
|
|
44
|
-
"@operato/shell": "^1.0.0-beta.
|
|
45
|
-
"@operato/utils": "^1.0.0-beta.
|
|
38
|
+
"@operato/attachment": "^1.0.0-beta.48",
|
|
39
|
+
"@operato/headroom": "^1.0.0-beta.48",
|
|
40
|
+
"@operato/i18n": "^1.0.0-beta.48",
|
|
41
|
+
"@operato/layout": "^1.0.0-beta.48",
|
|
42
|
+
"@operato/property-editor": "^1.0.0-beta.48",
|
|
43
|
+
"@operato/pull-to-refresh": "^1.0.0-beta.48",
|
|
44
|
+
"@operato/shell": "^1.0.0-beta.48",
|
|
45
|
+
"@operato/utils": "^1.0.0-beta.48",
|
|
46
46
|
"webfontloader": "^1.6.28"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
@@ -79,5 +79,5 @@
|
|
|
79
79
|
"prettier --write"
|
|
80
80
|
]
|
|
81
81
|
},
|
|
82
|
-
"gitHead": "
|
|
82
|
+
"gitHead": "d3222a565ec171042b5ae22ceb836cfd35cb6814"
|
|
83
83
|
}
|
|
File without changes
|
package/src/font-selector.ts
CHANGED
|
@@ -10,7 +10,7 @@ import { pulltorefresh } from '@operato/pull-to-refresh'
|
|
|
10
10
|
import { store } from '@operato/shell'
|
|
11
11
|
import { HeadroomStyles, ScrollbarStyles } from '@operato/styles'
|
|
12
12
|
|
|
13
|
-
import { createFont, deleteFont, updateFont } from './graphql-client'
|
|
13
|
+
import { createFont, deleteFont, updateFont } from './font-graphql-client'
|
|
14
14
|
import { actionUpdateFontList } from './redux-font-actions'
|
|
15
15
|
|
|
16
16
|
@customElement('font-selector')
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"graphql-client.js","sourceRoot":"","sources":["../../src/graphql-client.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,kBAAkB,CAAA;AACzC,OAAO,GAAG,MAAM,aAAa,CAAA;AAE7B;;GAEG;AACH,MAAM,CAAC,KAAK,UAAU,aAAa,CAAC,SAA+D;IACjG,MAAM,QAAQ,GAAG,MAAM,MAAM,CAAC,KAAK,CAAC;QAClC,KAAK,EAAE,GAAG,CAAA;;;;;;;;;;;;;;;;;;;;KAoBT;QACD,SAAS,EAAE,SAAS;KACrB,CAAC,CAAA;IAEF,OAAO,QAAQ,CAAC,IAAI,IAAI,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAA;AAC7C,CAAC;AAED;;GAEG;AACH,MAAM,CAAC,KAAK,UAAU,UAAU,CAAC,IAAS;IACxC,MAAM,QAAQ,GAAG,MAAM,MAAM,CAAC,MAAM,CAAC;QACnC,QAAQ,EAAE,GAAG,CAAA;;;;;;;;;;;;KAYZ;QACD,SAAS,EAAE;YACT,IAAI,EAAE,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,IAAI,EAAE;SACjC;QACD,OAAO,EAAE;YACP,SAAS,EAAE,IAAI;SAChB;KACF,CAAC,CAAA;IAEF,OAAO,QAAQ,CAAC,IAAI,CAAA;AACtB,CAAC;AAED;;GAEG;AACH,MAAM,CAAC,KAAK,UAAU,UAAU,CAAC,IAAS;IACxC,IAAI,EAAE,EAAE,EAAE,GAAG,KAAK,EAAE,GAAG,IAAI,CAAA;IAE3B,MAAM,QAAQ,GAAG,MAAM,MAAM,CAAC,MAAM,CAAC;QACnC,QAAQ,EAAE,GAAG,CAAA;;;;;;;;;;;;;;;;KAgBZ;QACD,SAAS,EAAE;YACT,EAAE;YACF,KAAK;SACN;QACD,OAAO,EAAE;YACP,SAAS,EAAE,IAAI;SAChB;KACF,CAAC,CAAA;IAEF,OAAO,QAAQ,CAAC,IAAI,CAAA;AACtB,CAAC;AAED;;GAEG;AACH,MAAM,CAAC,KAAK,UAAU,UAAU,CAAC,EAAU;IACzC,MAAM,QAAQ,GAAG,MAAM,MAAM,CAAC,MAAM,CAAC;QACnC,QAAQ,EAAE,GAAG,CAAA;;;;KAIZ;QACD,SAAS,EAAE;YACT,EAAE;SACH;KACF,CAAC,CAAA;IAEF,OAAO,QAAQ,CAAC,IAAI,CAAA;AACtB,CAAC","sourcesContent":["import { client } from '@operato/graphql'\nimport gql from 'graphql-tag'\n\n/**\n * @param {Object} listParam {filters, pagination, sortings}\n */\nexport async function fetchFontList(listParam?: { sortings?: any; filters?: any; pagination?: any }) {\n const response = await client.query({\n query: gql`\n query ($filters: [Filter!], $pagination: Pagination, $sortings: [Sorting!]) {\n fonts(filters: $filters, pagination: $pagination, sortings: $sortings) {\n items {\n id\n name\n provider\n uri\n path\n active\n files {\n name\n fullpath\n }\n createdAt\n updatedAt\n }\n total\n }\n }\n `,\n variables: listParam\n })\n\n return response.data && response.data.fonts\n}\n\n/**\n * @param {Object} font Font patch\n */\nexport async function createFont(font: any) {\n const response = await client.mutate({\n mutation: gql`\n mutation CreateFont($font: NewFont!) {\n createFont(font: $font) {\n name\n provider\n uri\n path\n active\n createdAt\n updatedAt\n }\n }\n `,\n variables: {\n font: { active: false, ...font }\n },\n context: {\n hasUpload: true\n }\n })\n\n return response.data\n}\n\n/**\n * @param {Object} font Font patch\n */\nexport async function updateFont(font: any) {\n var { id, ...patch } = font\n\n const response = await client.mutate({\n mutation: gql`\n mutation UpdateFont($id: String!, $patch: FontPatch!) {\n updateFont(id: $id, patch: $patch) {\n id\n name\n provider\n files {\n name\n fullpath\n }\n path\n active\n createdAt\n updatedAt\n }\n }\n `,\n variables: {\n id,\n patch\n },\n context: {\n hasUpload: true\n }\n })\n\n return response.data\n}\n\n/**\n * @param {String} id Font id\n */\nexport async function deleteFont(id: string) {\n const response = await client.mutate({\n mutation: gql`\n mutation ($id: String!) {\n deleteFont(id: $id)\n }\n `,\n variables: {\n id\n }\n })\n\n return response.data\n}\n"]}
|