@operato/scene-graphql 0.1.3 → 1.0.0-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +35 -0
- package/dist/graphql-client.d.ts +2 -12
- package/dist/graphql-client.js.map +1 -1
- package/dist/graphql-query-and-mutation.d.ts +2 -29
- package/dist/graphql-query-and-mutation.js.map +1 -1
- package/dist/graphql-subscription.d.ts +2 -12
- package/dist/graphql-subscription.js.map +1 -1
- package/package.json +7 -7
- package/src/graphql-client.ts +2 -2
- package/src/graphql-query-and-mutation.ts +2 -2
- package/src/graphql-subscription.ts +2 -2
- package/tsconfig.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,41 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.0.0-alpha.1](https://github.com/things-scene/operato-scene/compare/v0.1.5...v1.0.0-alpha.1) (2022-03-13)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### :rocket: New Features
|
|
10
|
+
|
|
11
|
+
* [@operato](https://github.com/operato) 1.0.0-alpha and [@things-factory](https://github.com/things-factory) 5.0.0-alpha ([5f7f2d4](https://github.com/things-scene/operato-scene/commit/5f7f2d45ccc8300822e712c93948850bcdb43687))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### [0.1.5](https://github.com/things-scene/operato-scene/compare/v0.1.4...v0.1.5) (2022-02-10)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### :rocket: New Features
|
|
19
|
+
|
|
20
|
+
* move news-ticker to here ([c5e565d](https://github.com/things-scene/operato-scene/commit/c5e565dff6016977766e54b3b74c4f80838f7cd2))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
### [0.1.4](https://github.com/things-scene/operato-scene/compare/v0.1.3...v0.1.4) (2022-01-30)
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### :rocket: New Features
|
|
28
|
+
|
|
29
|
+
* scene-label migrated from things-factory project ([3c9033c](https://github.com/things-scene/operato-scene/commit/3c9033c9af28bdd0377ac4a538ef7d4bfd38d488))
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
### :bug: Bug Fix
|
|
33
|
+
|
|
34
|
+
* applied [@operato](https://github.com/operato) 0.3.24 ([fb4fed0](https://github.com/things-scene/operato-scene/commit/fb4fed0d9fd44d6ae38db6359fdca15fc61f167c))
|
|
35
|
+
* applied [@things-factory](https://github.com/things-factory)@^4.0.40 ([3d4e6cb](https://github.com/things-scene/operato-scene/commit/3d4e6cbe167f605a68333fffe18949adb5247c1d))
|
|
36
|
+
* upgrade [@operato](https://github.com/operato) dependencies ([7d2478e](https://github.com/things-scene/operato-scene/commit/7d2478e72586b662e6c219f0720c78cde5dd7a2d))
|
|
37
|
+
* upgrade [@things-factory](https://github.com/things-factory) and [@operato](https://github.com/operato) ([4d97897](https://github.com/things-scene/operato-scene/commit/4d978970d3c8aba6ecae99e3fa98e431a647e8cb))
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
6
41
|
### [0.1.3](https://github.com/things-scene/operato-scene/compare/v0.1.2...v0.1.3) (2022-01-28)
|
|
7
42
|
|
|
8
43
|
|
package/dist/graphql-client.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ApolloClient, NormalizedCacheObject } from '@apollo/client/core';
|
|
2
|
-
import { Shape } from '@hatiolab/things-scene';
|
|
2
|
+
import { ComponentNature, Shape } from '@hatiolab/things-scene';
|
|
3
3
|
declare const GraphqlClient_base: (new (...args: any[]) => {
|
|
4
4
|
isDataSource(): boolean;
|
|
5
5
|
_convertDataFormat(data: any, format: string): any;
|
|
@@ -14,16 +14,6 @@ export default class GraphqlClient extends GraphqlClient_base {
|
|
|
14
14
|
dispose(): void;
|
|
15
15
|
render(context: CanvasRenderingContext2D): void;
|
|
16
16
|
onchangeData(data: any, before: any): void;
|
|
17
|
-
get nature():
|
|
18
|
-
mutable: boolean;
|
|
19
|
-
resizable: boolean;
|
|
20
|
-
rotatable: boolean;
|
|
21
|
-
properties: {
|
|
22
|
-
type: string;
|
|
23
|
-
label: string;
|
|
24
|
-
name: string;
|
|
25
|
-
}[];
|
|
26
|
-
help: string;
|
|
27
|
-
};
|
|
17
|
+
get nature(): ComponentNature;
|
|
28
18
|
}
|
|
29
19
|
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"graphql-client.js","sourceRoot":"","sources":["../src/graphql-client.ts"],"names":[],"mappings":"AAAA;;GAEG;AAGH,OAAO,EACL,YAAY,EAEZ,IAAI,EACJ,QAAQ,EAER,aAAa,EAEd,MAAM,qBAAqB,CAAA;AAC5B,OAAO,EAAa,OAAO,EAAE,MAAM,2BAA2B,CAAA;AAC9D,OAAO,EAAE,SAAS,
|
|
1
|
+
{"version":3,"file":"graphql-client.js","sourceRoot":"","sources":["../src/graphql-client.ts"],"names":[],"mappings":"AAAA;;GAEG;AAGH,OAAO,EACL,YAAY,EAEZ,IAAI,EACJ,QAAQ,EAER,aAAa,EAEd,MAAM,qBAAqB,CAAA;AAC5B,OAAO,EAAa,OAAO,EAAE,MAAM,2BAA2B,CAAA;AAC9D,OAAO,EAAE,SAAS,EAAmB,UAAU,EAAE,QAAQ,EAAE,KAAK,EAAE,MAAM,wBAAwB,CAAA;AAEhG,MAAM,cAAc,GAAmB;IACrC,UAAU,EAAE;QACV,WAAW,EAAE,UAAU;QACvB,WAAW,EAAE,QAAQ;KACtB;IACD,KAAK,EAAE;QACL,WAAW,EAAE,UAAU;QACvB,WAAW,EAAE,KAAK;KACnB;IACD,MAAM,EAAE;QACN,WAAW,EAAE,KAAK;KACnB;CACF,CAAA;AAED,MAAM,aAAa,GAA2B,CAAC,EAAE,SAAS,EAAE,aAAa,EAAE,YAAY,EAAE,EAAE,EAAE;IAC3F,IAAI,aAAa,EAAE;QACjB,QAAQ,CAAC,aAAa,CACpB,IAAI,WAAW,CAAC,QAAQ,EAAE;YACxB,MAAM,EAAE;gBACN,KAAK,EAAE,OAAO;gBACd,OAAO,EAAE,aAAa,CAAC,CAAC,CAAC,CAAC,OAAO;gBACjC,EAAE,EAAE,aAAa;aAClB;SACF,CAAC,CACH,CAAA;KACF;IAED,IAAI,YAAY,EAAE;QAChB,4EAA4E;QAC5E,QAAS,YAAiC,CAAC,UAAU,EAAE;YACrD,KAAK,SAAS,CAAC,mDAAmD;gBAChE,QAAQ,CAAC,aAAa,CACpB,IAAI,WAAW,CAAC,QAAQ,EAAE;oBACxB,MAAM,EAAE;wBACN,KAAK,EAAE,OAAO;wBACd,OAAO,EAAE,YAAY,CAAC,OAAO;wBAC7B,EAAE,EAAE,YAAY;qBACjB;iBACF,CAAC,CACH,CAAA;gBACD,MAAK;YAEP,KAAK,GAAG;gBACN,+FAA+F;gBAC/F,QAAQ,CAAC,aAAa,CAAC,IAAI,WAAW,CAAC,eAAe,CAAC,CAAC,CAAA;gBACxD,MAAK;YAEP,KAAK,GAAG;gBACN,8GAA8G;gBAC9G,QAAQ,CAAC,aAAa,CAAC,IAAI,WAAW,CAAC,iBAAiB,CAAC,CAAC,CAAA;gBAC1D,MAAK;YAEP;gBACE,IAAI,EAAE,IAAI,EAAE,QAAQ,EAAE,UAAU,EAAE,QAAQ,EAAE,OAAO,EAAE,GAAG,YAAgC,CAAA;gBACxF,IAAI,IAAI,IAAI,kBAAkB,EAAE;oBAC9B,OAAO,GAAG,KAAK,UAAU,IAAI,EAAE,MAAM,QAAQ,CAAC,UAAU,MAAM,QAAQ,EAAE,CAAA;iBACzE;qBAAM;oBACL,kDAAkD;oBAClD,OAAO,GAAG,KAAK,UAAU,IAAI,EAAE,MAAM,QAAQ,CAAC,UAAU,MAAM,OAAO,EAAE,CAAA;iBACxE;gBAED,QAAQ,CAAC,aAAa,CACpB,IAAI,WAAW,CAAC,QAAQ,EAAE;oBACxB,MAAM,EAAE;wBACN,KAAK,EAAE,OAAO;wBACd,OAAO;wBACP,EAAE,EAAE,YAAY;qBACjB;iBACF,CAAC,CACH,CAAA;SACJ;KACF;AACH,CAAC,CAAA;AAED,MAAM,MAAM,GAAoB;IAC9B,OAAO,EAAE,KAAK;IACd,SAAS,EAAE,IAAI;IACf,SAAS,EAAE,IAAI;IACf,UAAU,EAAE;QACV;YACE,IAAI,EAAE,QAAQ;YACd,KAAK,EAAE,UAAU;YACjB,IAAI,EAAE,UAAU;SACjB;KACF;IACD,IAAI,EAAE,yBAAyB;CAChC,CAAA;AAED,MAAM,CAAC,OAAO,OAAO,aAAc,SAAQ,UAAU,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;IAIpE,MAAM,KAAK,KAAK;QACd,IAAI,CAAC,aAAa,CAAC,MAAM,EAAE;YACzB,aAAa,CAAC,MAAM,GAAG,IAAI,KAAK,EAAE,CAAA;YAClC,aAAa,CAAC,MAAM,CAAC,GAAG,GAAG,IAAI,GAAG,CAAC,oCAAoC,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;SAC/F;QAED,OAAO,aAAa,CAAC,MAAM,CAAA;IAC7B,CAAC;IAED,KAAK;QACH,KAAK,CAAC,KAAK,EAAE,CAAA;QAEb,IAAI,CAAC,IAAI,EAAE,CAAA;IACb,CAAC;IAED,IAAI;QACF,IAAI,EAAE,QAAQ,EAAE,GAAG,IAAI,CAAC,KAAK,CAAA;QAE7B,IAAI,CAAC,QAAQ,EAAE;YACb,OAAO,CAAC,IAAI,CAAC,sBAAsB,CAAC,CAAA;YACpC,OAAM;SACP;QAED,IAAI,KAAK,GAAG,IAAI,aAAa,EAAE,CAAA;QAC/B,MAAM,WAAW,GAAgB;YAC/B,GAAG,EAAE,QAAQ;YACb,WAAW,EAAE,SAAS;SACvB,CAAA;QAED,MAAM,MAAM,GAAG,IAAI,YAAY,CAAC;YAC9B,cAAc;YACd,KAAK;YACL,IAAI,EAAE,IAAI,CAAC,CAAC,OAAO,CAAC,aAAa,CAAC,EAAE,IAAI,QAAQ,CAAC,WAAW,CAAC,CAAC,CAAC;SAChE,CAAC,CAAA;QAEF,IAAI,CAAC,OAAO,GAAG,MAAM,CAAA;IACvB,CAAC;IAED,IAAI,MAAM;QACR,OAAO,IAAI,CAAC,OAAO,CAAA;IACrB,CAAC;IAED,OAAO;QACL,KAAK,CAAC,OAAO,EAAE,CAAA;QAEf,IAAI;YACF,IAAI,IAAI,CAAC,OAAO,EAAE;gBAChB,IAAI,CAAC,OAAO,CAAC,IAAI,EAAE,CAAA;aACpB;SACF;QAAC,OAAO,CAAC,EAAE;YACV,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC,CAAA;SACjB;QACD,OAAO,IAAI,CAAC,OAAO,CAAA;IACrB,CAAC;IAED,MAAM,CAAC,OAAiC;QACtC;;WAEG;QAEH,IAAI,EAAE,IAAI,EAAE,GAAG,EAAE,KAAK,EAAE,MAAM,EAAE,GAAG,IAAI,CAAC,MAAM,CAAA;QAE9C,OAAO,CAAC,SAAS,EAAE,CAAA;QACnB,IAAI,CAAC,SAAS,CAAC,OAAO,EAAE,aAAa,CAAC,KAAK,EAAE,IAAI,EAAE,GAAG,EAAE,KAAK,EAAE,MAAM,CAAC,CAAA;IACxE,CAAC;IAED,YAAY,CAAC,IAAS,EAAE,MAAW;QACjC,KAAK,CAAC,YAAY,CAAC,IAAI,EAAE,MAAM,CAAC,CAAA;IAClC,CAAC;IAED,IAAI,MAAM;QACR,OAAO,MAAM,CAAA;IACf,CAAC;CACF;AAED,SAAS,CAAC,QAAQ,CAAC,gBAAgB,EAAE,aAAa,CAAC,CAAA","sourcesContent":["/*\n * Copyright © HatioLab Inc. All rights reserved.\n */\n\nimport { ServerParseError } from '@apollo/client'\nimport {\n ApolloClient,\n DefaultOptions,\n from,\n HttpLink,\n HttpOptions,\n InMemoryCache,\n NormalizedCacheObject\n} from '@apollo/client/core'\nimport { ErrorLink, onError } from '@apollo/client/link/error'\nimport { Component, ComponentNature, DataSource, RectPath, Shape } from '@hatiolab/things-scene'\n\nconst defaultOptions: DefaultOptions = {\n watchQuery: {\n fetchPolicy: 'no-cache',\n errorPolicy: 'ignore'\n },\n query: {\n fetchPolicy: 'no-cache', //'network-only'\n errorPolicy: 'all'\n },\n mutate: {\n errorPolicy: 'all'\n }\n}\n\nconst ERROR_HANDLER: ErrorLink.ErrorHandler = ({ operation, graphQLErrors, networkError }) => {\n if (graphQLErrors) {\n document.dispatchEvent(\n new CustomEvent('notify', {\n detail: {\n level: 'error',\n message: graphQLErrors[0].message,\n ex: graphQLErrors\n }\n })\n )\n }\n\n if (networkError) {\n /* networkError가 ServerParseError 이거나 ServerError 인 경우에만 statusCode를 갖는다. */\n switch ((networkError as ServerParseError).statusCode) {\n case undefined /* in case this error is not a server side error */:\n document.dispatchEvent(\n new CustomEvent('notify', {\n detail: {\n level: 'error',\n message: networkError.message,\n ex: networkError\n }\n })\n )\n break\n\n case 401:\n /* 401 에러가 리턴되면, 인증이 필요하다는 메시지를 dispatch 한다. 이 auth 모듈 등에서 이 메시지를 받아서 signin 프로세스를 진행할 수 있다. */\n document.dispatchEvent(new CustomEvent('auth-required'))\n break\n\n case 403:\n /* 403 에러가 리턴되면, 도메인 정보가 필요하다는 메시지를 dispatch 한다. 이 auth 모듈 등에서 이 메시지를 받아서 domain-register 프로세스 등을 진행할 수 있다. */\n document.dispatchEvent(new CustomEvent('domain-required'))\n break\n\n default:\n var { name, response, statusCode, bodyText, message } = networkError as ServerParseError\n if (name == 'ServerParseError') {\n message = `[ ${statusCode || ''} : ${response.statusText} ] ${bodyText}`\n } else {\n /* in case this error is instanceof ServerError */\n message = `[ ${statusCode || ''} : ${response.statusText} ] ${message}`\n }\n\n document.dispatchEvent(\n new CustomEvent('notify', {\n detail: {\n level: 'error',\n message,\n ex: networkError\n }\n })\n )\n }\n }\n}\n\nconst NATURE: ComponentNature = {\n mutable: false,\n resizable: true,\n rotatable: true,\n properties: [\n {\n type: 'string',\n label: 'endpoint',\n name: 'endpoint'\n }\n ],\n help: 'scene/component/graphql'\n}\n\nexport default class GraphqlClient extends DataSource(RectPath(Shape)) {\n private static _image: HTMLImageElement\n private _client?: ApolloClient<NormalizedCacheObject>\n\n static get image() {\n if (!GraphqlClient._image) {\n GraphqlClient._image = new Image()\n GraphqlClient._image.src = new URL('../icons/symbol-graphql-client.png', import.meta.url).href\n }\n\n return GraphqlClient._image\n }\n\n ready() {\n super.ready()\n\n this.init()\n }\n\n init() {\n var { endpoint } = this.state\n\n if (!endpoint) {\n console.warn('endpoint not defined')\n return\n }\n\n var cache = new InMemoryCache()\n const httpOptions: HttpOptions = {\n uri: endpoint,\n credentials: 'include'\n }\n\n const client = new ApolloClient({\n defaultOptions,\n cache,\n link: from([onError(ERROR_HANDLER), new HttpLink(httpOptions)])\n })\n\n this._client = client\n }\n\n get client(): ApolloClient<NormalizedCacheObject> | undefined {\n return this._client\n }\n\n dispose() {\n super.dispose()\n\n try {\n if (this._client) {\n this._client.stop()\n }\n } catch (e) {\n console.error(e)\n }\n delete this._client\n }\n\n render(context: CanvasRenderingContext2D) {\n /*\n * TODO role이 publisher 인지 subscriber 인지에 따라서 구분할 수 있는 표시를 추가할 것.\n */\n\n var { left, top, width, height } = this.bounds\n\n context.beginPath()\n this.drawImage(context, GraphqlClient.image, left, top, width, height)\n }\n\n onchangeData(data: any, before: any) {\n super.onchangeData(data, before)\n }\n\n get nature() {\n return NATURE\n }\n}\n\nComponent.register('graphql-client', GraphqlClient)\n"]}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
2
|
import { ApolloClient, NormalizedCacheObject } from '@apollo/client/core';
|
|
3
|
-
import { Properties, Shape } from '@hatiolab/things-scene';
|
|
3
|
+
import { ComponentNature, Properties, Shape } from '@hatiolab/things-scene';
|
|
4
4
|
declare const GraphQLQuery_base: (new (...args: any[]) => {
|
|
5
5
|
isDataSource(): boolean;
|
|
6
6
|
_convertDataFormat(data: any, format: string): any;
|
|
@@ -10,34 +10,7 @@ declare class GraphQLQuery extends GraphQLQuery_base {
|
|
|
10
10
|
private _repeatTimer?;
|
|
11
11
|
private _isStarted;
|
|
12
12
|
value: any;
|
|
13
|
-
get nature():
|
|
14
|
-
mutable: boolean;
|
|
15
|
-
resizable: boolean;
|
|
16
|
-
rotatable: boolean;
|
|
17
|
-
properties: ({
|
|
18
|
-
type: string;
|
|
19
|
-
label: string;
|
|
20
|
-
name: string;
|
|
21
|
-
property: {
|
|
22
|
-
component: string;
|
|
23
|
-
};
|
|
24
|
-
placeholder?: undefined;
|
|
25
|
-
} | {
|
|
26
|
-
type: string;
|
|
27
|
-
label: string;
|
|
28
|
-
name: string;
|
|
29
|
-
placeholder: string;
|
|
30
|
-
property?: undefined;
|
|
31
|
-
} | {
|
|
32
|
-
type: string;
|
|
33
|
-
label: string;
|
|
34
|
-
name: string;
|
|
35
|
-
property?: undefined;
|
|
36
|
-
placeholder?: undefined;
|
|
37
|
-
})[];
|
|
38
|
-
'value-property': string;
|
|
39
|
-
help: string;
|
|
40
|
-
};
|
|
13
|
+
get nature(): ComponentNature;
|
|
41
14
|
onchange(after: Properties, before: Properties): void;
|
|
42
15
|
get period(): number;
|
|
43
16
|
set period(period: number);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"graphql-query-and-mutation.js","sourceRoot":"","sources":["../src/graphql-query-and-mutation.ts"],"names":[],"mappings":"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","sourcesContent":["import gql from 'graphql-tag'\n\nimport { ApolloClient, NormalizedCacheObject } from '@apollo/client/core'\nimport { Component, DataSource, Properties, RectPath, Shape } from '@hatiolab/things-scene'\nimport { buildArgs } from '@operato/graphql'\n\nimport GraphqlClient from './graphql-client'\n\nconst NATURE = {\n mutable: false,\n resizable: true,\n rotatable: true,\n properties: [\n {\n type: 'id-input',\n label: 'client',\n name: 'client',\n property: {\n component: 'graphql-client' // component의 type (null or undefined이면 모든 컴포넌트)\n }\n },\n {\n type: 'number',\n label: 'period',\n name: 'period',\n placeholder: 'SECONDS'\n },\n {\n type: 'graphql',\n label: 'query',\n name: 'query'\n },\n {\n type: 'checkbox',\n label: 'auto-start',\n name: 'autoStart'\n }\n ],\n 'value-property': 'value',\n help: 'scene/component/graphql'\n}\n\nclass GraphQLQuery extends DataSource(RectPath(Shape)) {\n public client?: ApolloClient<NormalizedCacheObject>\n\n private _repeatTimer?: NodeJS.Timeout\n private _isStarted: boolean = false\n\n value: any\n\n get nature() {\n return NATURE\n }\n\n onchange(after: Properties, before: Properties) {\n if ('value' in after) {\n if (after.value) this.requestData()\n }\n }\n\n get period() {\n return this.state.period * 1000\n }\n\n set period(period) {\n this.setState('period', period)\n this._initGraphqlQuery()\n }\n\n get repeatTimer() {\n return this._repeatTimer\n }\n\n set repeatTimer(repeatTimer) {\n this._stopRepeater()\n this._repeatTimer = repeatTimer\n }\n\n get autoStart() {\n return this.state.autoStart\n }\n\n set autoStart(autoStart) {\n this.setState('autoStart', autoStart)\n }\n\n get query() {\n var _query = this.state.query\n var objToVal = (exp: any) => {\n if (typeof exp === 'string') return exp\n else return JSON.stringify(exp)\n }\n var changedQuery: string | undefined = (Component.buildSubstitutor(_query, this, objToVal) || (() => _query))()\n try {\n changedQuery = changedQuery!.replace(/\\(.*\\)/gi, params => {\n let paramObject = eval(`({${params.slice(1, -1)}})`)\n return '(' + buildArgs(paramObject) + ')'\n })\n } catch (e) {\n console.log(e)\n }\n\n return changedQuery\n }\n\n get source() {\n return this.getState('source')\n }\n\n set source(source) {\n this.setState('source', source)\n }\n\n dispose() {\n super.dispose()\n this._stopRepeater()\n }\n\n ready() {\n super.ready()\n if (this.autoStart) {\n this._initGraphqlQuery()\n }\n }\n\n _initGraphqlQuery() {\n if (!this.app.isViewMode) return\n\n this._stopRepeater()\n this._startRepeater()\n }\n\n _stopRepeater() {\n if (this.repeatTimer !== undefined) {\n clearTimeout(this._repeatTimer!)\n delete this._repeatTimer\n }\n\n this._isStarted = false\n }\n\n _startRepeater() {\n this._isStarted = true\n\n // requestAnimationFrame 이 호출되지 않을 때는 requestData 호출도 하지 않도록 함.\n var _ = () => {\n if (!this._isStarted) {\n return\n }\n this.requestData()\n if (!Number.isNaN(this.period) && this.period > 0) {\n this._repeatTimer = setTimeout(() => {\n requestAnimationFrame(_)\n }, this.period)\n }\n }\n requestAnimationFrame(_)\n }\n\n async requestData() {\n if (!this.app.isViewMode) return\n var { client } = this.state\n var query = this.query\n var variables = this.value\n\n if (client && query) {\n this.client = (this.root.findById(client) as GraphqlClient)?.client\n var response\n\n if (typeof variables === 'object') {\n response = await this.client?.query({\n query: gql`\n ${query}\n `,\n variables: variables\n })\n } else {\n response = await this.client?.query({\n query: gql`\n ${query}\n `,\n errorPolicy: 'all'\n })\n }\n\n console.log('response', response)\n this.data = response\n }\n }\n}\n\nexport class Query extends GraphQLQuery {\n private static _image: HTMLImageElement\n\n static get image() {\n if (!Query._image) {\n Query._image = new Image()\n Query._image.src = new URL('../icons/symbol-graphql-query.png', import.meta.url).href\n }\n\n return Query._image\n }\n\n render(context: CanvasRenderingContext2D) {\n var { left, top, width, height } = this.bounds\n\n context.beginPath()\n this.drawImage(context, Query.image, left, top, width, height)\n }\n}\n\nexport class Mutation extends GraphQLQuery {\n private static _image: HTMLImageElement\n\n static get image() {\n if (!Mutation._image) {\n Mutation._image = new Image()\n Mutation._image.src = new URL('../icons/symbol-graphql-mutation.png', import.meta.url).href\n }\n\n return Mutation._image\n }\n\n render(context: CanvasRenderingContext2D) {\n var { left, top, width, height } = this.bounds\n\n context.beginPath()\n this.drawImage(context, Mutation.image, left, top, width, height)\n }\n}\n\nComponent.register('graphql-query', Query)\nComponent.register('graphql-mutation', Mutation)\n"]}
|
|
1
|
+
{"version":3,"file":"graphql-query-and-mutation.js","sourceRoot":"","sources":["../src/graphql-query-and-mutation.ts"],"names":[],"mappings":"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","sourcesContent":["import gql from 'graphql-tag'\n\nimport { ApolloClient, NormalizedCacheObject } from '@apollo/client/core'\nimport { Component, ComponentNature, DataSource, Properties, RectPath, Shape } from '@hatiolab/things-scene'\nimport { buildArgs } from '@operato/graphql'\n\nimport GraphqlClient from './graphql-client'\n\nconst NATURE: ComponentNature = {\n mutable: false,\n resizable: true,\n rotatable: true,\n properties: [\n {\n type: 'id-input',\n label: 'client',\n name: 'client',\n property: {\n component: 'graphql-client' // component의 type (null or undefined이면 모든 컴포넌트)\n }\n },\n {\n type: 'number',\n label: 'period',\n name: 'period',\n placeholder: 'SECONDS'\n },\n {\n type: 'graphql',\n label: 'query',\n name: 'query'\n },\n {\n type: 'checkbox',\n label: 'auto-start',\n name: 'autoStart'\n }\n ],\n 'value-property': 'value',\n help: 'scene/component/graphql'\n}\n\nclass GraphQLQuery extends DataSource(RectPath(Shape)) {\n public client?: ApolloClient<NormalizedCacheObject>\n\n private _repeatTimer?: NodeJS.Timeout\n private _isStarted: boolean = false\n\n value: any\n\n get nature() {\n return NATURE\n }\n\n onchange(after: Properties, before: Properties) {\n if ('value' in after) {\n if (after.value) this.requestData()\n }\n }\n\n get period() {\n return this.state.period * 1000\n }\n\n set period(period) {\n this.setState('period', period)\n this._initGraphqlQuery()\n }\n\n get repeatTimer() {\n return this._repeatTimer\n }\n\n set repeatTimer(repeatTimer) {\n this._stopRepeater()\n this._repeatTimer = repeatTimer\n }\n\n get autoStart() {\n return this.state.autoStart\n }\n\n set autoStart(autoStart) {\n this.setState('autoStart', autoStart)\n }\n\n get query() {\n var _query = this.state.query\n var objToVal = (exp: any) => {\n if (typeof exp === 'string') return exp\n else return JSON.stringify(exp)\n }\n var changedQuery: string | undefined = (Component.buildSubstitutor(_query, this, objToVal) || (() => _query))()\n try {\n changedQuery = changedQuery!.replace(/\\(.*\\)/gi, params => {\n let paramObject = eval(`({${params.slice(1, -1)}})`)\n return '(' + buildArgs(paramObject) + ')'\n })\n } catch (e) {\n console.log(e)\n }\n\n return changedQuery\n }\n\n get source() {\n return this.getState('source')\n }\n\n set source(source) {\n this.setState('source', source)\n }\n\n dispose() {\n super.dispose()\n this._stopRepeater()\n }\n\n ready() {\n super.ready()\n if (this.autoStart) {\n this._initGraphqlQuery()\n }\n }\n\n _initGraphqlQuery() {\n if (!this.app.isViewMode) return\n\n this._stopRepeater()\n this._startRepeater()\n }\n\n _stopRepeater() {\n if (this.repeatTimer !== undefined) {\n clearTimeout(this._repeatTimer!)\n delete this._repeatTimer\n }\n\n this._isStarted = false\n }\n\n _startRepeater() {\n this._isStarted = true\n\n // requestAnimationFrame 이 호출되지 않을 때는 requestData 호출도 하지 않도록 함.\n var _ = () => {\n if (!this._isStarted) {\n return\n }\n this.requestData()\n if (!Number.isNaN(this.period) && this.period > 0) {\n this._repeatTimer = setTimeout(() => {\n requestAnimationFrame(_)\n }, this.period)\n }\n }\n requestAnimationFrame(_)\n }\n\n async requestData() {\n if (!this.app.isViewMode) return\n var { client } = this.state\n var query = this.query\n var variables = this.value\n\n if (client && query) {\n this.client = (this.root.findById(client) as GraphqlClient)?.client\n var response\n\n if (typeof variables === 'object') {\n response = await this.client?.query({\n query: gql`\n ${query}\n `,\n variables: variables\n })\n } else {\n response = await this.client?.query({\n query: gql`\n ${query}\n `,\n errorPolicy: 'all'\n })\n }\n\n console.log('response', response)\n this.data = response\n }\n }\n}\n\nexport class Query extends GraphQLQuery {\n private static _image: HTMLImageElement\n\n static get image() {\n if (!Query._image) {\n Query._image = new Image()\n Query._image.src = new URL('../icons/symbol-graphql-query.png', import.meta.url).href\n }\n\n return Query._image\n }\n\n render(context: CanvasRenderingContext2D) {\n var { left, top, width, height } = this.bounds\n\n context.beginPath()\n this.drawImage(context, Query.image, left, top, width, height)\n }\n}\n\nexport class Mutation extends GraphQLQuery {\n private static _image: HTMLImageElement\n\n static get image() {\n if (!Mutation._image) {\n Mutation._image = new Image()\n Mutation._image.src = new URL('../icons/symbol-graphql-mutation.png', import.meta.url).href\n }\n\n return Mutation._image\n }\n\n render(context: CanvasRenderingContext2D) {\n var { left, top, width, height } = this.bounds\n\n context.beginPath()\n this.drawImage(context, Mutation.image, left, top, width, height)\n }\n}\n\nComponent.register('graphql-query', Query)\nComponent.register('graphql-mutation', Mutation)\n"]}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Shape } from '@hatiolab/things-scene';
|
|
1
|
+
import { ComponentNature, Shape } from '@hatiolab/things-scene';
|
|
2
2
|
declare const GraphqlSubscription_base: (new (...args: any[]) => {
|
|
3
3
|
isDataSource(): boolean;
|
|
4
4
|
_convertDataFormat(data: any, format: string): any;
|
|
@@ -11,17 +11,7 @@ export default class GraphqlSubscription extends GraphqlSubscription_base {
|
|
|
11
11
|
dispose(): void;
|
|
12
12
|
render(context: CanvasRenderingContext2D): void;
|
|
13
13
|
ready(): void;
|
|
14
|
-
get nature():
|
|
15
|
-
mutable: boolean;
|
|
16
|
-
resizable: boolean;
|
|
17
|
-
rotatable: boolean;
|
|
18
|
-
properties: {
|
|
19
|
-
type: string;
|
|
20
|
-
label: string;
|
|
21
|
-
name: string;
|
|
22
|
-
}[];
|
|
23
|
-
help: string;
|
|
24
|
-
};
|
|
14
|
+
get nature(): ComponentNature;
|
|
25
15
|
_initGraphqlSubscription(): void;
|
|
26
16
|
requestData(): Promise<void>;
|
|
27
17
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"graphql-subscription.js","sourceRoot":"","sources":["../src/graphql-subscription.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,kBAAkB,EAAE,MAAM,4BAA4B,CAAA;AAE/D,OAAO,EAAE,SAAS,
|
|
1
|
+
{"version":3,"file":"graphql-subscription.js","sourceRoot":"","sources":["../src/graphql-subscription.ts"],"names":[],"mappings":"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","sourcesContent":["/*\n * Copyright © HatioLab Inc. All rights reserved.\n */\n\nimport { SubscriptionClient } from 'subscriptions-transport-ws'\n\nimport { Component, ComponentNature, DataSource, RectPath, Shape } from '@hatiolab/things-scene'\n\nconst NATURE: ComponentNature = {\n mutable: false,\n resizable: true,\n rotatable: true,\n properties: [\n {\n type: 'string',\n label: 'endpoint',\n name: 'endpoint'\n },\n {\n type: 'graphql',\n label: 'query',\n name: 'query'\n }\n ],\n help: 'scene/component/graphql-subscription'\n}\n\nexport default class GraphqlSubscription extends DataSource(RectPath(Shape)) {\n private static _image: HTMLImageElement\n private client?: SubscriptionClient\n private unsubscribe?: () => void\n\n static get image() {\n if (!GraphqlSubscription._image) {\n GraphqlSubscription._image = new Image()\n GraphqlSubscription._image.src = new URL('../icons/symbol-graphql-subscription.png', import.meta.url).href\n }\n\n return GraphqlSubscription._image\n }\n\n dispose() {\n if (this.unsubscribe) {\n this.unsubscribe()\n }\n if (this.client) {\n this.client.unsubscribeAll()\n this.client.close(true)\n }\n\n super.dispose()\n }\n\n render(context: CanvasRenderingContext2D) {\n var { left, top, width, height } = this.bounds\n\n context.beginPath()\n this.drawImage(context, GraphqlSubscription.image, left, top, width, height)\n }\n\n ready() {\n this._initGraphqlSubscription()\n }\n\n get nature() {\n return NATURE\n }\n\n _initGraphqlSubscription() {\n if (!this.app.isViewMode) return\n\n this.requestData()\n }\n\n async requestData() {\n var { endpoint, query } = this.state\n var self = this\n\n this.client = new SubscriptionClient(endpoint, {\n reconnect: true,\n connectionParams: {\n headers: {\n /* \n 특정 도메인의 데이타만 받고자 하는 경우에, referer 정보를 제공해서 서버에서 서브도메인 정보를 취득하도록 한다.\n referer: location.href\n 또는, 이미 서브도메인 정보를 알고 있다면,\n 'x-things-factory-domain': '[subdomain]'\n 을 보낼 수 있다.\n 관련 정보를 보내지 않는다면, 사용자가 권한을 가진 모든 도메인의 데이타를 수신하게 된다.\n */\n referer: location.href\n }\n }\n })\n\n this.client.onConnected(() => {\n const { unsubscribe } = this.client!.request({ query }).subscribe({\n next({ data }) {\n if (data) {\n self.data = data\n }\n }\n })\n\n this.unsubscribe = unsubscribe\n })\n }\n}\n\nComponent.register('graphql-subscription', GraphqlSubscription)\n"]}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@operato/scene-graphql",
|
|
3
3
|
"description": "Graphql datasource component for things-scene",
|
|
4
|
-
"version": "0.1
|
|
4
|
+
"version": "1.0.0-alpha.1",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"module": "dist/index.js",
|
|
@@ -27,16 +27,16 @@
|
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@apollo/client": "^3.5.6",
|
|
30
|
-
"@hatiolab/things-scene": "^2.7.
|
|
31
|
-
"@operato/graphql": "^0.
|
|
30
|
+
"@hatiolab/things-scene": "^2.7.34",
|
|
31
|
+
"@operato/graphql": "^1.0.0-alpha.13",
|
|
32
32
|
"jsonwebtoken": "^8.5.1",
|
|
33
33
|
"subscriptions-transport-ws": "^0.11.0"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@hatiolab/prettier-config": "^1.0.0",
|
|
37
|
-
"@operato/board": "^0.
|
|
38
|
-
"@things-factory/builder": "^
|
|
39
|
-
"@things-factory/operato-board": "^
|
|
37
|
+
"@operato/board": "^1.0.0-alpha.13",
|
|
38
|
+
"@things-factory/builder": "^5.0.0-alpha.5",
|
|
39
|
+
"@things-factory/operato-board": "^5.0.0-alpha.5",
|
|
40
40
|
"@typescript-eslint/eslint-plugin": "^4.33.0",
|
|
41
41
|
"@typescript-eslint/parser": "^4.33.0",
|
|
42
42
|
"@web/dev-server": "^0.1.28",
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
"prettier --write"
|
|
62
62
|
]
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "f7ad50f082b788b2776f16c9a329d57c9db9dc77"
|
|
65
65
|
}
|
package/src/graphql-client.ts
CHANGED
|
@@ -13,7 +13,7 @@ import {
|
|
|
13
13
|
NormalizedCacheObject
|
|
14
14
|
} from '@apollo/client/core'
|
|
15
15
|
import { ErrorLink, onError } from '@apollo/client/link/error'
|
|
16
|
-
import { Component, DataSource, RectPath, Shape } from '@hatiolab/things-scene'
|
|
16
|
+
import { Component, ComponentNature, DataSource, RectPath, Shape } from '@hatiolab/things-scene'
|
|
17
17
|
|
|
18
18
|
const defaultOptions: DefaultOptions = {
|
|
19
19
|
watchQuery: {
|
|
@@ -89,7 +89,7 @@ const ERROR_HANDLER: ErrorLink.ErrorHandler = ({ operation, graphQLErrors, netwo
|
|
|
89
89
|
}
|
|
90
90
|
}
|
|
91
91
|
|
|
92
|
-
const NATURE = {
|
|
92
|
+
const NATURE: ComponentNature = {
|
|
93
93
|
mutable: false,
|
|
94
94
|
resizable: true,
|
|
95
95
|
rotatable: true,
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import gql from 'graphql-tag'
|
|
2
2
|
|
|
3
3
|
import { ApolloClient, NormalizedCacheObject } from '@apollo/client/core'
|
|
4
|
-
import { Component, DataSource, Properties, RectPath, Shape } from '@hatiolab/things-scene'
|
|
4
|
+
import { Component, ComponentNature, DataSource, Properties, RectPath, Shape } from '@hatiolab/things-scene'
|
|
5
5
|
import { buildArgs } from '@operato/graphql'
|
|
6
6
|
|
|
7
7
|
import GraphqlClient from './graphql-client'
|
|
8
8
|
|
|
9
|
-
const NATURE = {
|
|
9
|
+
const NATURE: ComponentNature = {
|
|
10
10
|
mutable: false,
|
|
11
11
|
resizable: true,
|
|
12
12
|
rotatable: true,
|
|
@@ -4,9 +4,9 @@
|
|
|
4
4
|
|
|
5
5
|
import { SubscriptionClient } from 'subscriptions-transport-ws'
|
|
6
6
|
|
|
7
|
-
import { Component, DataSource, RectPath, Shape } from '@hatiolab/things-scene'
|
|
7
|
+
import { Component, ComponentNature, DataSource, RectPath, Shape } from '@hatiolab/things-scene'
|
|
8
8
|
|
|
9
|
-
const NATURE = {
|
|
9
|
+
const NATURE: ComponentNature = {
|
|
10
10
|
mutable: false,
|
|
11
11
|
resizable: true,
|
|
12
12
|
rotatable: true,
|
package/tsconfig.tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/tslib/tslib.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/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","../../node_modules/@apollo/client/link/error/index.d.ts","../../node_modules/@types/lodash/common/common.d.ts","../../node_modules/@types/lodash/common/array.d.ts","../../node_modules/@types/lodash/common/collection.d.ts","../../node_modules/@types/lodash/common/date.d.ts","../../node_modules/@types/lodash/common/function.d.ts","../../node_modules/@types/lodash/common/lang.d.ts","../../node_modules/@types/lodash/common/math.d.ts","../../node_modules/@types/lodash/common/number.d.ts","../../node_modules/@types/lodash/common/object.d.ts","../../node_modules/@types/lodash/common/seq.d.ts","../../node_modules/@types/lodash/common/string.d.ts","../../node_modules/@types/lodash/common/util.d.ts","../../node_modules/@types/lodash/index.d.ts","../../node_modules/@hatiolab/things-scene/things-scene.d.ts","./src/graphql-client.ts","./node_modules/@operato/graphql/dist/src/gql-context.d.ts","./node_modules/@operato/graphql/dist/src/graphql-client.d.ts","./node_modules/@operato/graphql/dist/src/json-to-grqphql-query.d.ts","./node_modules/@operato/graphql/dist/src/index.d.ts","./src/graphql-query-and-mutation.ts","../../node_modules/subscriptions-transport-ws/node_modules/eventemitter3/index.d.ts","../../node_modules/subscriptions-transport-ws/dist/client.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/@types/ws/index.d.ts","../../node_modules/subscriptions-transport-ws/dist/server.d.ts","../../node_modules/subscriptions-transport-ws/dist/message-types.d.ts","../../node_modules/subscriptions-transport-ws/dist/protocol.d.ts","../../node_modules/subscriptions-transport-ws/dist/index.d.ts","./src/graphql-subscription.ts","./src/index.ts","./src/templates/graphql-client.ts","./src/templates/graphql-mutation.ts","./src/templates/graphql-query.ts","./src/templates/graphql-subscription.ts","./src/templates/index.ts"],"fileInfos":[{"version":"6adbf5efd0e374ff5f427a4f26a5a413e9734eee5067a0e86da69aea41910b52","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"abba1071bfd89e55e88a054b0c851ea3e8a494c340d0f3fab19eb18f6afb0c9e","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"4378fc8122ec9d1a685b01eb66c46f62aba6b239ca7228bb6483bcf8259ee493","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"d071129cba6a5f2700be09c86c07ad2791ab67d4e5ed1eb301d6746c62745ea4","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"12f4cfe2fe60b810c3174537bc2ddb20c1067b7768643d12cb1266fd183afb75","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","10524f144adcc87a1048a0fff1c02bb022dce22d35caf3d6f68e055c2daf6e37","f254a186c5fc9355b388d5e1643b9f85cb3a84c03d48b0ce7297a352db0b367d","a960dc35ca7a0854d06432d698547debe3a4760438deea197fde8a3ff2101180",{"version":"a26923eb264e2c55ebf3d129659a510551680f5228b2265a21039c7ec55a50c7","affectsGlobalScope":true},"45f238c699f946ac07f7e7eb7f1ae65b7da6323b8146a7cf5b3fd775b8c00b11","fd7059d47830c465f3a32f1928bd61f7ccb62dac8089ecea0c5b2b365afd9b64","f26f3b22a0ce930bf8e6eb27806db849f616784527a93269c2e3861e875815e8","2c309164cb0e2c526d1d275589679024e669a77ada61d5ec7a3ec93b8cbd542c","353ff6badc7a53ba2487f4eb074bd5d0b41db4984134e507b1f6f766780b82fb","2ff93c18956316429e46976ac101b31b030f413ece59231d9a3685bbb239c41f","233fc0209343fa04c2a458537b4aaed00bed49f5db212a1fe5200dcee6e2fa4e","b830de197c8889ab5f03fc2211c2e1cee4478c4a5ceb05af2eaea23d9af3af0a","b62564be4535552ed34c9cececa78a0da7dd5447351e195e8cefaada1ba21129","4c9d4f0962f0caf85200c783d97f7049c5e58a48c6a5825e51fc6f0b974b0e9d","d737fc71b51b3e6c591e3edba25062644bbc95696240460adf5c9109df763fe5","b3dec0879e876086c6bd5d93b671bf3a034da7712ea60b6e815f1de987df060a","50134fabe24e7eb552897d84d2eaefc923d7577a5fef9427e268c469d8cdc7e1","00d3b08e4ea2d4d02e180810c9f6b03be1977d9d2ea5389141d3363efcd58f3c","5c7b4d69e9d49382954fb7c46b9e368b517b11a5f55f34e66b8fd9951fed6d34","47ca4f700d7cbd844259cb0fb35fbe484fdef7b794a6c60c3c8dfe02ad4be3b2","a34a4b7870a629ef38a8912c8ed915d7300fc555ebb75eaae4e1c502222628bb","e41fb0c8db766e1135661341557b83cdfbdd95614f9a4e7c6703e3f41ad1a658","f8555900075ce2073dedb0818960ea42b52d18e5729b44a6dc75c43bbd088ed1","dbd825417d2051294de6b53445bef43b0527e200d78e1a8ae6cfaf818da50278","c2bbb1290dfda842dc0b66a9d50da29972b5bcafd3d4b124a74cef3d3d2af610","59c82aa1d026476297ba6e14c69b055baefd28ad533d02491aa6711eba8b150a","b2c46988d6d7d3d0da5cc2fa0c80e8a4adcb309071d4264ba6d30f2d67cd642c","ab218a7d41436bd2cae6bcbf7371bc9321786471de9997816e549184c3bdc335","9b51dd74a388c13e157c457cc39d59dc2aae2134f6a21cc6b695219932cb8817",{"version":"db06f4cdf70e3689f0cd5a96a6836f34024ad61e8dd01473560ebbcae09c532b","affectsGlobalScope":true},"6c71a186369074378653c84fe944b269db54501e33e790791d59a106482aae86","41db1e358120ce74584d9cf596344db2702f305b649c6c8c55ad4e27c440eaf1","ffb162ad0b1e5c1d9882a81a6af2ee94db93dc4f9fcfeb5e5a7a1025a40c1a24","d18cafabd6456b23ebcf11198c9c056a56361facb07977c653cce50a6ba184f9","29cce97240f57803d3ebbd2dce484634ff8646088287203d461dd97ae29cc692","29bfbafb7d1b80882c83b108f5242bd78aaad7fefc464fda5f571ffe6d8c5a99","a93475d7baca260e4db85215cfa6e59b2357e1f526b056b18ed9c4493e7b80c3","22439dda560fdbd61a07a52b12a58dd167b1116bb3a4f3ca5aeb954de594810c","820a5ca18bb09bc50ebd1856794e9dfbc5a7f855f610e6f9d59cbe3b9e1a7c8f","364524cd4d5db23c9d6aaaa9a8fb2f6d067fb39122728b78efed43055677bdbe","746b1ad552967231e762f8742671ad1f700e3dc3e259aa5def3a1f7f31135aff","1544a3865f518c4e5c6bc623c0f2c54f8aa938cec29742c3087ef981014110ca","3e79b1b6beb23ce850766d185e632d24442afbd54667891c2e052c3ba93062d1","25978fa21b2728d3277888d33df9272738605df94140b4b0c883cf352ec31ca6","c9e5c708eb84894b985071080652da531d4b27ca8cb60963521270239cfe8c20","89561071bc9d84d0d763b929dc34b0920365cd79d5f2a264b4b22a1f211c61d4","c3617c5310a07cac5f9fb1d08a841581010d4884d123c51500e0a08003e308dc","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","d601b55f6510d6861777197c451c374e14e65afc761f38b416ad814daff3f542","7b492faa09a9fc936c7273e02b9c0b605ad1f7dfcbe03cc31b2f2643ee3ccb20","cd652432d0c0140216907069c48f18667ec3db60d951f37901768dc9b4b63b07","a54f99f4bc9135180f1513ea35248ed4e87d3e3b80c0404648cd2d74bb5916cf","5dcd41aeb5f7119177adab46147589a1618f2b35bd976e6c3a20ec328f58d1bd","6002918a3d55434deb4dd2a8f034411cf185fe77585ccc02b8e141455f060477",{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"381899b8d1d4c1be716f18cb5242ba39f66f4b1e31d45af62a32a99f8edcb39d","f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"1bc82f5b3bb93df76d19730c84467b0b346187198537135d63a672956f323720","affectsGlobalScope":true},"24b77ccef75bd2bd25deb2acfc4723b75d171ed92fe18178b3457073e592a90a","061febff29c5d278119380274e549c882f294b14b2d27e7e8d6b5085797e6a60","5673d28d9adb6209ba1120bfd5bacbfd27e50df4167eb7b7576c6a38f6d82049","a84f2f6153fc2a7ab5206f04ac3083e8fcdbc4bcdc2d38dbc81d9609322290d4","f7972a842e7f36506baab62f5417d3cceda18d2c6af8a2adf41070628e2ad5a2","62c8953f06da3b62d7c6b52bc4d47a04c16484ee8f69aedb85ef35737719d1fe","2771f18413bee37bc63b861f663a843947c86ccfc858e2d0cd83a62c6f1da1af","31ac42673f115c2a476cdb344626de64627dc12fc4212d963b0426bab3ec9610","bf233e782dbbf53cc572be908504bf4c075459cef8af4b81a6b56de19e966946","17708f8c8f046446915bea2dd0ab7daeb27716fed357d7253e049630e1f35216","2787d73275f3815967204846f32abee51471a740dced21aef988be704cc8e50c","217199191521b6913e6778f0fd8c8c5dbeaa2948cbda7f64d12c048be9a69234","3c12c6459a8d6f9541f76948556d2bab432e3f92c2134c0b6b7c4f45f8a049fc","327dce4f7a8a708865565ef6ed316c727072c498a5f6c9fe0097969ff2789980","633c8d4a118ecb39643de5c1220eb9ae464531af9b49bde0457ad4332f26d438","544a639a944b7d6e3fe004cae6f3943f6c471408c10b8697a7ee3d91b9104d52","696cfd8e9589d34ddedc239183efa681cfbf47110722abea5568288f4da55c44","9500809b0594a0597c1699829b1d59717a12c37d8d767759f063d4a3c622d7fa","a47553afcd47d59dc10b5b3b0e6f0c607db4f8b81a3c7acda13326572837a79f","3e7b8fe469c41d68fb222fdf7f009887f826b9f19031d95373f03750b55c62cf","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d88a479cccf787b4aa82362150fbeba5211a32dbfafa7b92ba6995ecaf9a1a89","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","6ac6f24aff52e62c3950461aa17eab26e3a156927858e6b654baef0058b4cd1e",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"507e4d35814c8131469ffff7ac660ebdfed85f09eb140b447fdea403e51132c2","794b320b2186f4289825599691680f41e8213162ca7ab000787b13252245a412","7d54d48a4365f355a7759b1e29f43dea9163a9445d3f26e1234dea0af3e6a16d","00332cbc648e4e58f69e887d56d95bdbc10be6ace767eaefe4af70a4faad9665","f762b7f2e2b00ca93e71001f50faf259865bd4b07f4f86d5b7faee467d8212ab","e30056a44fcf06d1124d8b0d370a67e4f0d65f81563614f0aecdecc07c7ccdb1","05b9087d2c9e3ec5549204e820da526a1a623fdd61b3f2c180bc8ddb15ae359e","0e58e6f3fa554921c7950ff344d6c299caf9260e4c78bf7c699a6b5a6d02e6bc","3eb80f1addaca2a298abd6186a2cfe98567d88635f334a0f2415438ec5f2d3b7","0d5a2ee1fdfa82740e0103389b9efd6bfe145a20018a2da3c02b89666181f4d9","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"92d63add669d18ebc349efbacd88966d6f2ccdddfb1b880b2db98ae3aa7bf7c4","affectsGlobalScope":true},"ccc94049a9841fe47abe5baef6be9a38fc6228807974ae675fb15dc22531b4be",{"version":"9acfe4d1ff027015151ce81d60797b04b52bffe97ad8310bb0ec2e8fd61e1303","affectsGlobalScope":true},"95843d5cfafced8f3f8a5ce57d2335f0bcd361b9483587d12a25e4bd403b8216","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","2f520601649a893e6a49a8851ebfcf4be8ce090dc1281c2a08a871cb04e8251f","f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf","2b8c764f856a1dd0a9a2bf23e5efddbff157de8138b0754010be561ae5fcaa90","76650408392bf49a8fbf3e2b6b302712a92d76af77b06e2da1cc8077359c4409","0af3121e68297b2247dd331c0d24dba599e50736a7517a5622d5591aae4a3122","6972fca26f6e9bd56197568d4379f99071a90766e06b4fcb5920a0130a9202be",{"version":"4a2628e95962c8ab756121faa3ac2ed348112ff7a87b5c286dd2cc3326546b4c","affectsGlobalScope":true},"80793b2277f31baa199234daed806fff0fb11491d1ebd3357e520c3558063f00","a049a59a02009fc023684fcfaf0ac526fe36c35dcc5d2b7d620c1750ba11b083","b9b963043551b034abd9e7c6d859f7a81d99479fde938d983114d167d0644a78","b287b810b5035d5685f1df6e1e418f1ca452a3ed4f59fd5cc081dbf2045f0d9b","4b9a003b5c556c96784132945bb41c655ea11273b1917f5c8d0c154dd5fd20dd","a458dc78104cc80048ac24fdc02fe6dce254838094c2f25641b3f954d9721241",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"902cd98bf46e95caf4118a0733fb801e9e90eec3edaed6abdad77124afec9ca2","abc1c425b2ad6720433f40f1877abfa4223f0f3dd486c9c28c492179ca183cb6","cd4854d38f4eb5592afd98ab95ca17389a7dfe38013d9079e802d739bdbcc939","94eed4cc2f5f658d5e229ff1ccd38860bddf4233e347bf78edd2154dee1f2b99",{"version":"bd1a08e30569b0fb2f0b21035eb9b039871f68faa9b98accf847e9c878c5e0a9","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","ee18f2da7a037c6ceeb112a084e485aead9ea166980bf433474559eac1b46553","29c2706fa0cc49a2bd90c83234da33d08bb9554ecec675e91c1f85087f5a5324","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","d7838022c7dab596357a9604b9c6adffe37dc34085ce0779c958ce9545bd7139","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"a7971f9fb2a32ec7788ec6cda9d7a33c02023dfe9a62db2030ad1359649d8050","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637",{"version":"b42b47e17b8ece2424ae8039feb944c2e3ba4b262986aebd582e51efbdca93dc","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","2408611d9b4146e35d1dbd1f443ccd8e187c74614a54b80300728277529dbf11","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4","d88ecca73348e7c337541c4b8b60a50aca5e87384f6b8a422fc6603c637e4c21","badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e","c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"1cdb8f094b969dcc183745dc88404e2d8fcf2a858c6e7cc2441011476573238e","012a04966bcb8a6f522ccd21f6efac3d837f3ea806c55b5849556aad22777f38","8d5af927098c40f41f315552e7ff9ee9376b26fc03e83421a0cf2d93907ea346","c993b44ec48e09bf9e9b512941379656f9090ddf81f7ab61b4d8a6cdbe7ec409","54f323b0c25677fcd7dbb6541667f131e17bf49d48b6efdfed72ae71722fe8f5","7668c31fc1a0d6c5ee0ae1048d41f7232a56fbe18367929f78bd0c77303af11e","4e882f1a4826ee13f4e297b12dbb6cb2d10bde317da7b159b0ff2b4d50e4601c","bbcc3aceb7caacbe14df4960f44d92d09cd222442c2a19c369b23e96b2bdad42","8a2540e4560ee50a8876c55e6cd074d68ef7e7656ee3e0c4c47214389754b208","1492b99033655246eb46cadbe1c91f2892f602d18714906f072970574869f3d7","63268040a0420c682d47b007aa7d310f84339101fa38ff7622b5adb015b20d52","8f421778fe98fbc2988ec488e9917b7c66c8089295e0d6f3c58e9d2ad92294bd","cfb33f2f911dba48324e7bf0fb7853a88daf3df80de18df156f8fa4e71168ce4"],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":false,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitOnError":true,"outDir":"./dist","rootDir":"./src","sourceMap":true,"strict":true,"target":5},"fileIdsList":[[139,152,163,186,314],[162,163,164,314],[139,161,186,314],[139,150,162,314],[144,152,153,154,156,157,158,161,162,163,164,165,186,314],[151,152,154,161,162,186,314],[314],[139,154,161,186,314],[139,152,154,156,161,164,186,314],[144,314],[139,154,157,160,162,186,314],[223,314],[139,152,154,157,158,162,186,314],[139,153,161,162,164,186,314],[139,154,157,159,186,223,314],[139,166,186,194,204,216,217,218,220,314],[140,154,166,186,194,204,205,213,214,216,217,218,220,221,222,314],[139,166,186,194,217,221,314],[162,166,186,205,214,215,217,218,219,314],[139,166,186,194,205,214,217,218,219,220,314],[139,166,186,194,205,215,216,217,218,220,314],[139,150,166,186,194,205,214,215,216,218,220,314],[139,150,166,194,217,314],[139,144,204,213,314],[223,246,314],[186,187,314],[188,314],[144,187,188,189,190,191,192,193,314],[139,186,314],[139,186,194,214,314],[144,194,197,314],[194,197,314],[144,195,196,197,198,199,200,201,202,203,314],[194,314],[197,314],[139,194,314],[186,314],[144,206,207,208,209,210,211,212,314],[223,228,314],[223,228,234,314],[144,229,235,236,314],[144,238,239,240,241,242,243,314],[139,150,223,232,314],[223,232,314],[139,144,150,223,232,314],[144,232,237,244,245,314],[139,314],[228,314],[230,231,233,314],[223,228,232,314],[139,150,186,194,214,223,228,314],[172,314],[171,314],[140,141,142,143,314],[139,146,314],[144,145,146,147,148,149,167,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,314],[170,314],[168,169,314],[166,314],[261,314],[249,251,252,253,254,255,256,257,258,259,260,261,314],[249,250,252,253,254,255,256,257,258,259,260,261,314],[250,251,252,253,254,255,256,257,258,259,260,261,314],[249,250,251,253,254,255,256,257,258,259,260,261,314],[249,250,251,252,254,255,256,257,258,259,260,261,314],[249,250,251,252,253,255,256,257,258,259,260,261,314],[249,250,251,252,253,254,256,257,258,259,260,261,314],[249,250,251,252,253,254,255,257,258,259,260,261,314],[249,250,251,252,253,254,255,256,258,259,260,261,314],[249,250,251,252,253,254,255,256,257,259,260,261,314],[249,250,251,252,253,254,255,256,257,258,260,261,314],[249,250,251,252,253,254,255,256,257,258,259,261,314],[249,250,251,252,253,254,255,256,257,258,259,260,314],[271,314],[274,314],[275,280,314],[276,286,287,294,303,313,314],[276,277,286,294,314],[278,314],[279,280,287,295,314],[280,303,310,314],[281,283,286,294,314],[282,314],[283,284,314],[285,286,314],[286,314],[286,287,288,303,313,314],[286,287,288,303,314],[289,294,303,313,314],[286,287,289,290,294,303,310,313,314],[289,291,303,310,313,314],[271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320],[286,292,314],[293,313,314],[283,286,294,303,314],[295,314],[296,314],[274,297,314],[298,312,314,318],[299,314],[300,314],[286,301,314],[301,302,314,316],[286,303,304,305,314],[303,305,314],[303,304,314],[306,314],[307,314],[286,308,309,314],[308,309,314],[280,294,310,314],[311,314],[294,312,314],[275,289,300,313,314],[280,314],[303,314,315],[314,316],[314,317],[275,280,286,288,297,303,313,314,316,318],[303,314,319],[224,225,226,227,314],[286,289,291,303,310,313,314,319,321],[45,222,314],[52,53,314],[42,43,45,52,314],[53,54,113,114,314],[42,45,53,314],[43,53,314],[42,45,47,48,49,51,53,54,314],[48,55,69,314],[42,45,49,50,51,53,314],[42,43,49,51,55,314],[41,56,60,68,70,72,112,115,138,314],[43,44,314],[43,44,45,46,52,61,62,63,64,65,66,67,314],[43,44,45,314],[43,314],[42,43,44,45,63,139,314],[45,314],[43,45,52,314],[42,45,314],[71,314],[42,45,49,51,55,314],[42,45,47,48,51,314],[42,45,46,49,314],[48,49,50,51,57,58,59,314],[49,314],[42,45,49,50,314],[51,53,314],[53,314],[42,45,49,314],[43,45,51,64,314],[51,116,314],[49,53,314],[42,45,51,314],[51,314],[45,51,53,314],[42,46,314],[45,49,51,314],[73,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,314],[49,51,314],[42,45,49,50,51,66,314],[74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,314],[66,74,314],[74,314],[42,45,51,53,73,74,314],[42,45,49,50,51,53,66,73,314],[45,55,269,314],[270,314,323,324,325],[139,289,314,321,322],[223,247,314],[264,265,266,314],[40,223,247,248,262,314],[40,222,223,262,263,267,314],[40,262,314,326],[40,263,268,314,327],[40,314],[40,314,329,330,331,332]],"referencedMap":[[164,1],[152,2],[162,3],[163,4],[166,5],[153,6],[155,7],[165,8],[157,9],[158,10],[161,11],[156,12],[159,13],[154,14],[160,15],[221,16],[223,17],[216,18],[205,7],[220,19],[215,20],[219,21],[217,22],[218,23],[214,24],[247,25],[188,26],[192,27],[189,27],[193,27],[190,27],[194,28],[191,27],[187,29],[248,30],[198,7],[201,31],[199,7],[202,32],[204,33],[195,34],[203,35],[197,36],[200,34],[196,10],[211,34],[206,37],[208,37],[213,38],[209,7],[207,37],[212,34],[210,34],[169,7],[229,39],[235,40],[236,39],[237,41],[244,42],[238,12],[239,43],[240,43],[241,44],[243,12],[242,45],[246,46],[245,47],[230,48],[234,49],[233,50],[231,48],[232,51],[179,7],[181,7],[173,7],[182,52],[180,47],[183,7],[174,10],[172,53],[171,7],[184,7],[141,7],[143,7],[144,54],[142,7],[145,47],[146,47],[147,47],[148,55],[149,47],[186,56],[176,57],[177,57],[175,57],[170,58],[178,57],[167,59],[185,7],[150,47],[262,60],[250,61],[251,62],[249,63],[252,64],[253,65],[254,66],[255,67],[256,68],[257,69],[258,70],[259,71],[260,72],[261,73],[271,74],[272,74],[274,75],[275,76],[276,77],[277,78],[278,79],[279,80],[280,81],[281,82],[282,83],[283,84],[284,84],[285,85],[286,86],[287,87],[288,88],[273,7],[320,7],[289,89],[290,90],[291,91],[321,92],[292,93],[293,94],[294,95],[295,96],[296,97],[297,98],[298,99],[299,100],[300,101],[301,102],[302,103],[303,104],[305,105],[304,106],[306,107],[307,108],[308,109],[309,110],[310,111],[311,112],[312,113],[313,114],[314,115],[315,116],[316,117],[317,118],[318,119],[319,120],[226,7],[224,7],[228,121],[225,7],[227,7],[322,122],[151,7],[222,123],[54,124],[53,125],[115,126],[114,127],[113,128],[55,129],[70,130],[69,131],[56,132],[139,133],[42,7],[48,7],[47,7],[45,134],[46,7],[68,135],[62,7],[63,136],[52,137],[64,138],[67,139],[65,139],[61,140],[43,7],[44,7],[66,141],[72,142],[71,143],[49,144],[50,145],[60,146],[58,147],[57,147],[51,148],[59,149],[134,150],[128,151],[121,152],[120,153],[129,154],[130,139],[122,155],[135,156],[137,157],[116,158],[117,141],[118,159],[138,160],[119,153],[123,156],[124,161],[131,139],[132,137],[133,161],[136,139],[125,159],[73,162],[126,151],[127,141],[112,163],[110,164],[111,164],[77,164],[78,164],[79,164],[80,164],[81,164],[82,164],[83,164],[84,164],[103,164],[85,164],[86,164],[87,164],[88,164],[89,164],[90,164],[109,164],[91,164],[92,164],[93,164],[94,164],[108,164],[95,164],[106,164],[107,164],[96,164],[97,164],[98,164],[104,164],[105,164],[99,164],[100,164],[101,164],[102,164],[76,165],[75,166],[74,167],[41,7],[270,168],[326,169],[324,7],[325,7],[323,170],[269,7],[140,7],[40,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],[38,7],[34,7],[35,7],[36,7],[37,7],[1,7],[39,7],[168,7],[264,7],[265,171],[267,172],[266,7],[263,173],[268,174],[327,175],[328,176],[329,177],[330,177],[331,177],[332,177],[333,178]],"exportedModulesMap":[[164,1],[152,2],[162,3],[163,4],[166,5],[153,6],[155,7],[165,8],[157,9],[158,10],[161,11],[156,12],[159,13],[154,14],[160,15],[221,16],[223,17],[216,18],[205,7],[220,19],[215,20],[219,21],[217,22],[218,23],[214,24],[247,25],[188,26],[192,27],[189,27],[193,27],[190,27],[194,28],[191,27],[187,29],[248,30],[198,7],[201,31],[199,7],[202,32],[204,33],[195,34],[203,35],[197,36],[200,34],[196,10],[211,34],[206,37],[208,37],[213,38],[209,7],[207,37],[212,34],[210,34],[169,7],[229,39],[235,40],[236,39],[237,41],[244,42],[238,12],[239,43],[240,43],[241,44],[243,12],[242,45],[246,46],[245,47],[230,48],[234,49],[233,50],[231,48],[232,51],[179,7],[181,7],[173,7],[182,52],[180,47],[183,7],[174,10],[172,53],[171,7],[184,7],[141,7],[143,7],[144,54],[142,7],[145,47],[146,47],[147,47],[148,55],[149,47],[186,56],[176,57],[177,57],[175,57],[170,58],[178,57],[167,59],[185,7],[150,47],[262,60],[250,61],[251,62],[249,63],[252,64],[253,65],[254,66],[255,67],[256,68],[257,69],[258,70],[259,71],[260,72],[261,73],[271,74],[272,74],[274,75],[275,76],[276,77],[277,78],[278,79],[279,80],[280,81],[281,82],[282,83],[283,84],[284,84],[285,85],[286,86],[287,87],[288,88],[273,7],[320,7],[289,89],[290,90],[291,91],[321,92],[292,93],[293,94],[294,95],[295,96],[296,97],[297,98],[298,99],[299,100],[300,101],[301,102],[302,103],[303,104],[305,105],[304,106],[306,107],[307,108],[308,109],[309,110],[310,111],[311,112],[312,113],[313,114],[314,115],[315,116],[316,117],[317,118],[318,119],[319,120],[226,7],[224,7],[228,121],[225,7],[227,7],[322,122],[151,7],[222,123],[54,124],[53,125],[115,126],[114,127],[113,128],[55,129],[70,130],[69,131],[56,132],[139,133],[42,7],[48,7],[47,7],[45,134],[46,7],[68,135],[62,7],[63,136],[52,137],[64,138],[67,139],[65,139],[61,140],[43,7],[44,7],[66,141],[72,142],[71,143],[49,144],[50,145],[60,146],[58,147],[57,147],[51,148],[59,149],[134,150],[128,151],[121,152],[120,153],[129,154],[130,139],[122,155],[135,156],[137,157],[116,158],[117,141],[118,159],[138,160],[119,153],[123,156],[124,161],[131,139],[132,137],[133,161],[136,139],[125,159],[73,162],[126,151],[127,141],[112,163],[110,164],[111,164],[77,164],[78,164],[79,164],[80,164],[81,164],[82,164],[83,164],[84,164],[103,164],[85,164],[86,164],[87,164],[88,164],[89,164],[90,164],[109,164],[91,164],[92,164],[93,164],[94,164],[108,164],[95,164],[106,164],[107,164],[96,164],[97,164],[98,164],[104,164],[105,164],[99,164],[100,164],[101,164],[102,164],[76,165],[75,166],[74,167],[41,7],[270,168],[326,169],[324,7],[325,7],[323,170],[269,7],[140,7],[40,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],[38,7],[34,7],[35,7],[36,7],[37,7],[1,7],[39,7],[168,7],[264,7],[265,171],[267,172],[266,7],[263,173],[268,174],[327,175],[328,176],[329,177],[330,177],[331,177],[332,177],[333,178]],"semanticDiagnosticsPerFile":[164,152,162,163,166,153,155,165,157,158,161,156,159,154,160,221,223,216,205,220,215,219,217,218,214,247,188,192,189,193,190,194,191,187,248,198,201,199,202,204,195,203,197,200,196,211,206,208,213,209,207,212,210,169,229,235,236,237,244,238,239,240,241,243,242,246,245,230,234,233,231,232,179,181,173,182,180,183,174,172,171,184,141,143,144,142,145,146,147,148,149,186,176,177,175,170,178,167,185,150,262,250,251,249,252,253,254,255,256,257,258,259,260,261,271,272,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,273,320,289,290,291,321,292,293,294,295,296,297,298,299,300,301,302,303,305,304,306,307,308,309,310,311,312,313,314,315,316,317,318,319,226,224,228,225,227,322,151,222,54,53,115,114,113,55,70,69,56,139,42,48,47,45,46,68,62,63,52,64,67,65,61,43,44,66,72,71,49,50,60,58,57,51,59,134,128,121,120,129,130,122,135,137,116,117,118,138,119,123,124,131,132,133,136,125,73,126,127,112,110,111,77,78,79,80,81,82,83,84,103,85,86,87,88,89,90,109,91,92,93,94,108,95,106,107,96,97,98,104,105,99,100,101,102,76,75,74,41,270,326,324,325,323,269,140,40,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,30,31,32,33,7,38,34,35,36,37,1,39,168,264,265,267,266,263,268,327,328,329,330,331,332,333]},"version":"4.5.2"}
|
|
1
|
+
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/tslib/tslib.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/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","../../node_modules/@apollo/client/link/error/index.d.ts","../../node_modules/@types/lodash/common/common.d.ts","../../node_modules/@types/lodash/common/array.d.ts","../../node_modules/@types/lodash/common/collection.d.ts","../../node_modules/@types/lodash/common/date.d.ts","../../node_modules/@types/lodash/common/function.d.ts","../../node_modules/@types/lodash/common/lang.d.ts","../../node_modules/@types/lodash/common/math.d.ts","../../node_modules/@types/lodash/common/number.d.ts","../../node_modules/@types/lodash/common/object.d.ts","../../node_modules/@types/lodash/common/seq.d.ts","../../node_modules/@types/lodash/common/string.d.ts","../../node_modules/@types/lodash/common/util.d.ts","../../node_modules/@types/lodash/index.d.ts","../../node_modules/@hatiolab/things-scene/things-scene.d.ts","./src/graphql-client.ts","../../node_modules/@operato/graphql/dist/src/gql-context.d.ts","../../node_modules/@operato/graphql/dist/src/graphql-client.d.ts","../../node_modules/@operato/graphql/dist/src/json-to-grqphql-query.d.ts","../../node_modules/@operato/graphql/dist/src/index.d.ts","./src/graphql-query-and-mutation.ts","../../node_modules/subscriptions-transport-ws/node_modules/eventemitter3/index.d.ts","../../node_modules/subscriptions-transport-ws/dist/client.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/@types/ws/index.d.ts","../../node_modules/subscriptions-transport-ws/dist/server.d.ts","../../node_modules/subscriptions-transport-ws/dist/message-types.d.ts","../../node_modules/subscriptions-transport-ws/dist/protocol.d.ts","../../node_modules/subscriptions-transport-ws/dist/index.d.ts","./src/graphql-subscription.ts","./src/index.ts","./src/templates/graphql-client.ts","./src/templates/graphql-mutation.ts","./src/templates/graphql-query.ts","./src/templates/graphql-subscription.ts","./src/templates/index.ts"],"fileInfos":[{"version":"6adbf5efd0e374ff5f427a4f26a5a413e9734eee5067a0e86da69aea41910b52","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"abba1071bfd89e55e88a054b0c851ea3e8a494c340d0f3fab19eb18f6afb0c9e","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"4378fc8122ec9d1a685b01eb66c46f62aba6b239ca7228bb6483bcf8259ee493","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"d071129cba6a5f2700be09c86c07ad2791ab67d4e5ed1eb301d6746c62745ea4","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"12f4cfe2fe60b810c3174537bc2ddb20c1067b7768643d12cb1266fd183afb75","fd179d7b68260caf075aaabe202dfd39622403405beec3c7a697dec1df338cb2","d086d18c6de38fff9261952724c77cfb8915e09d8e927133565f368ae3f80f6d","115d60d2b07ac7d513543b5e86e13bbf9a9524faf8bdf4985bd7a08815b46406","4a1545bdbccec0209a67da02f760fad629deedbe7d8ac9f55c93c82f95ff5449","7b52c21bd6397ca26df3b7863fa2d5014aa4bbf5621377769726bbd59956e6bc","6b93d6b362ef33a455a7852f7891a6023a8a2bbb03a81cf84bb0f2b627673148","641b9da0622e0225740b5a55f47af9f23f01bf8f4dcbfb81128c16b585900717","5534c99590ae8b633509d9e4d2e1a7bf6511cb7fd1710c36d7723c2f9486aeba","58d4731b1b9da2133f15c139c5a39154549e227b7fd7051d6933372de89b3b00","3ace48f46b43fec335799729ecba491fba8478ef911bbaba4e64ae91ac284082","0da6adbb172817b7101eb1fc5a93310d5b140ac7c3678e3f8891d6177d1f2ce8","95210bf2a09475e9e19fe532fdc2562dced3536fc50f92aad88466950ff11160","912e51e547d6297d2dc7611148c27ed51dbfc544e35298bc30d846e0ae51c376","032aa0bbc88640270f29cfee50f0857ebd903dee14626eb9ec52043d75765173","d24cd8c79f8eb91b85d4a61e75188504f0d2dcd6ab8ebb87ac22a8ba0ec200b2","70055bc7cbe14541919f4b9e4c488b31cc901fa8defa32827ca3ba955a409762","155dc0abafc201d20cb2c4c54d631e13cf286f5a757fff975dc2dd7e196380fe","256eb1263ff0eae669dd39371245c70e082437ebd01dac855dda8ef5bc5a1330","b56adcca0e4ea4e2ff1a527006c90a7eecf5c0637f10b7232d5a6ffb40e1a47e","9792450af532e4607ef025ab4f224ec396907c1587866251fd529214abb94768","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","004ef8f013ffa1e9eb7c6cb9fd20a247db3e2771545447a092d98914abc296dc","10524f144adcc87a1048a0fff1c02bb022dce22d35caf3d6f68e055c2daf6e37","f254a186c5fc9355b388d5e1643b9f85cb3a84c03d48b0ce7297a352db0b367d","a960dc35ca7a0854d06432d698547debe3a4760438deea197fde8a3ff2101180",{"version":"a26923eb264e2c55ebf3d129659a510551680f5228b2265a21039c7ec55a50c7","affectsGlobalScope":true},"45f238c699f946ac07f7e7eb7f1ae65b7da6323b8146a7cf5b3fd775b8c00b11","fd7059d47830c465f3a32f1928bd61f7ccb62dac8089ecea0c5b2b365afd9b64","f26f3b22a0ce930bf8e6eb27806db849f616784527a93269c2e3861e875815e8","2c309164cb0e2c526d1d275589679024e669a77ada61d5ec7a3ec93b8cbd542c","353ff6badc7a53ba2487f4eb074bd5d0b41db4984134e507b1f6f766780b82fb","2ff93c18956316429e46976ac101b31b030f413ece59231d9a3685bbb239c41f","233fc0209343fa04c2a458537b4aaed00bed49f5db212a1fe5200dcee6e2fa4e","b830de197c8889ab5f03fc2211c2e1cee4478c4a5ceb05af2eaea23d9af3af0a","b62564be4535552ed34c9cececa78a0da7dd5447351e195e8cefaada1ba21129","4c9d4f0962f0caf85200c783d97f7049c5e58a48c6a5825e51fc6f0b974b0e9d","d737fc71b51b3e6c591e3edba25062644bbc95696240460adf5c9109df763fe5","b3dec0879e876086c6bd5d93b671bf3a034da7712ea60b6e815f1de987df060a","50134fabe24e7eb552897d84d2eaefc923d7577a5fef9427e268c469d8cdc7e1","00d3b08e4ea2d4d02e180810c9f6b03be1977d9d2ea5389141d3363efcd58f3c","5c7b4d69e9d49382954fb7c46b9e368b517b11a5f55f34e66b8fd9951fed6d34","47ca4f700d7cbd844259cb0fb35fbe484fdef7b794a6c60c3c8dfe02ad4be3b2","a34a4b7870a629ef38a8912c8ed915d7300fc555ebb75eaae4e1c502222628bb","e41fb0c8db766e1135661341557b83cdfbdd95614f9a4e7c6703e3f41ad1a658","f8555900075ce2073dedb0818960ea42b52d18e5729b44a6dc75c43bbd088ed1","dbd825417d2051294de6b53445bef43b0527e200d78e1a8ae6cfaf818da50278","c2bbb1290dfda842dc0b66a9d50da29972b5bcafd3d4b124a74cef3d3d2af610","59c82aa1d026476297ba6e14c69b055baefd28ad533d02491aa6711eba8b150a","b2c46988d6d7d3d0da5cc2fa0c80e8a4adcb309071d4264ba6d30f2d67cd642c","ab218a7d41436bd2cae6bcbf7371bc9321786471de9997816e549184c3bdc335","9b51dd74a388c13e157c457cc39d59dc2aae2134f6a21cc6b695219932cb8817",{"version":"db06f4cdf70e3689f0cd5a96a6836f34024ad61e8dd01473560ebbcae09c532b","affectsGlobalScope":true},"6c71a186369074378653c84fe944b269db54501e33e790791d59a106482aae86","41db1e358120ce74584d9cf596344db2702f305b649c6c8c55ad4e27c440eaf1","ffb162ad0b1e5c1d9882a81a6af2ee94db93dc4f9fcfeb5e5a7a1025a40c1a24","d18cafabd6456b23ebcf11198c9c056a56361facb07977c653cce50a6ba184f9","29cce97240f57803d3ebbd2dce484634ff8646088287203d461dd97ae29cc692","29bfbafb7d1b80882c83b108f5242bd78aaad7fefc464fda5f571ffe6d8c5a99","a93475d7baca260e4db85215cfa6e59b2357e1f526b056b18ed9c4493e7b80c3","22439dda560fdbd61a07a52b12a58dd167b1116bb3a4f3ca5aeb954de594810c","820a5ca18bb09bc50ebd1856794e9dfbc5a7f855f610e6f9d59cbe3b9e1a7c8f","364524cd4d5db23c9d6aaaa9a8fb2f6d067fb39122728b78efed43055677bdbe","746b1ad552967231e762f8742671ad1f700e3dc3e259aa5def3a1f7f31135aff","1544a3865f518c4e5c6bc623c0f2c54f8aa938cec29742c3087ef981014110ca","3e79b1b6beb23ce850766d185e632d24442afbd54667891c2e052c3ba93062d1","25978fa21b2728d3277888d33df9272738605df94140b4b0c883cf352ec31ca6","c9e5c708eb84894b985071080652da531d4b27ca8cb60963521270239cfe8c20","89561071bc9d84d0d763b929dc34b0920365cd79d5f2a264b4b22a1f211c61d4","c3617c5310a07cac5f9fb1d08a841581010d4884d123c51500e0a08003e308dc","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","d601b55f6510d6861777197c451c374e14e65afc761f38b416ad814daff3f542","7b492faa09a9fc936c7273e02b9c0b605ad1f7dfcbe03cc31b2f2643ee3ccb20","cd652432d0c0140216907069c48f18667ec3db60d951f37901768dc9b4b63b07","a54f99f4bc9135180f1513ea35248ed4e87d3e3b80c0404648cd2d74bb5916cf","5dcd41aeb5f7119177adab46147589a1618f2b35bd976e6c3a20ec328f58d1bd","6002918a3d55434deb4dd2a8f034411cf185fe77585ccc02b8e141455f060477",{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"381899b8d1d4c1be716f18cb5242ba39f66f4b1e31d45af62a32a99f8edcb39d","f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"29b8a3a533884705024eab54e56465614ad167f5dd87fdc2567d8e451f747224","affectsGlobalScope":true},"24b77ccef75bd2bd25deb2acfc4723b75d171ed92fe18178b3457073e592a90a","061febff29c5d278119380274e549c882f294b14b2d27e7e8d6b5085797e6a60","5673d28d9adb6209ba1120bfd5bacbfd27e50df4167eb7b7576c6a38f6d82049","a84f2f6153fc2a7ab5206f04ac3083e8fcdbc4bcdc2d38dbc81d9609322290d4","f7972a842e7f36506baab62f5417d3cceda18d2c6af8a2adf41070628e2ad5a2","62c8953f06da3b62d7c6b52bc4d47a04c16484ee8f69aedb85ef35737719d1fe","2771f18413bee37bc63b861f663a843947c86ccfc858e2d0cd83a62c6f1da1af","31ac42673f115c2a476cdb344626de64627dc12fc4212d963b0426bab3ec9610","bf233e782dbbf53cc572be908504bf4c075459cef8af4b81a6b56de19e966946","17708f8c8f046446915bea2dd0ab7daeb27716fed357d7253e049630e1f35216","2787d73275f3815967204846f32abee51471a740dced21aef988be704cc8e50c","217199191521b6913e6778f0fd8c8c5dbeaa2948cbda7f64d12c048be9a69234","3c12c6459a8d6f9541f76948556d2bab432e3f92c2134c0b6b7c4f45f8a049fc","327dce4f7a8a708865565ef6ed316c727072c498a5f6c9fe0097969ff2789980","633c8d4a118ecb39643de5c1220eb9ae464531af9b49bde0457ad4332f26d438","544a639a944b7d6e3fe004cae6f3943f6c471408c10b8697a7ee3d91b9104d52","696cfd8e9589d34ddedc239183efa681cfbf47110722abea5568288f4da55c44","9500809b0594a0597c1699829b1d59717a12c37d8d767759f063d4a3c622d7fa","a47553afcd47d59dc10b5b3b0e6f0c607db4f8b81a3c7acda13326572837a79f","3e7b8fe469c41d68fb222fdf7f009887f826b9f19031d95373f03750b55c62cf","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","6ac6f24aff52e62c3950461aa17eab26e3a156927858e6b654baef0058b4cd1e",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"45a631650d3970dcb50a5b6f10bdd8533eed562aa5d85fa9887621c074c09de1","834b54294a22e8e32ee3c39877e5ccdb14876c9363a76141456002641c48cdb6","7d54d48a4365f355a7759b1e29f43dea9163a9445d3f26e1234dea0af3e6a16d","00332cbc648e4e58f69e887d56d95bdbc10be6ace767eaefe4af70a4faad9665","3a33dc0aaca86bfc68a58b603aeada539a0e47bce983d88473c7076318b91c9f","e30056a44fcf06d1124d8b0d370a67e4f0d65f81563614f0aecdecc07c7ccdb1","53dcd1e40b1e2f405a501313cd51dcda695d3c17349b856e99f82965fea20404","0e58e6f3fa554921c7950ff344d6c299caf9260e4c78bf7c699a6b5a6d02e6bc","3eb80f1addaca2a298abd6186a2cfe98567d88635f334a0f2415438ec5f2d3b7","0d5a2ee1fdfa82740e0103389b9efd6bfe145a20018a2da3c02b89666181f4d9","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"92d63add669d18ebc349efbacd88966d6f2ccdddfb1b880b2db98ae3aa7bf7c4","affectsGlobalScope":true},"ccc94049a9841fe47abe5baef6be9a38fc6228807974ae675fb15dc22531b4be",{"version":"9acfe4d1ff027015151ce81d60797b04b52bffe97ad8310bb0ec2e8fd61e1303","affectsGlobalScope":true},"95843d5cfafced8f3f8a5ce57d2335f0bcd361b9483587d12a25e4bd403b8216","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","2f520601649a893e6a49a8851ebfcf4be8ce090dc1281c2a08a871cb04e8251f","f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf","2b8c764f856a1dd0a9a2bf23e5efddbff157de8138b0754010be561ae5fcaa90","76650408392bf49a8fbf3e2b6b302712a92d76af77b06e2da1cc8077359c4409","0af3121e68297b2247dd331c0d24dba599e50736a7517a5622d5591aae4a3122","6972fca26f6e9bd56197568d4379f99071a90766e06b4fcb5920a0130a9202be",{"version":"4a2628e95962c8ab756121faa3ac2ed348112ff7a87b5c286dd2cc3326546b4c","affectsGlobalScope":true},"80793b2277f31baa199234daed806fff0fb11491d1ebd3357e520c3558063f00","a049a59a02009fc023684fcfaf0ac526fe36c35dcc5d2b7d620c1750ba11b083","5533392c50c51b1a5c32b89f13145db929c574ef1c5949cf67a074a05ea107d9","b287b810b5035d5685f1df6e1e418f1ca452a3ed4f59fd5cc081dbf2045f0d9b","4b9a003b5c556c96784132945bb41c655ea11273b1917f5c8d0c154dd5fd20dd","a458dc78104cc80048ac24fdc02fe6dce254838094c2f25641b3f954d9721241",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"902cd98bf46e95caf4118a0733fb801e9e90eec3edaed6abdad77124afec9ca2","abc1c425b2ad6720433f40f1877abfa4223f0f3dd486c9c28c492179ca183cb6","cd4854d38f4eb5592afd98ab95ca17389a7dfe38013d9079e802d739bdbcc939","94eed4cc2f5f658d5e229ff1ccd38860bddf4233e347bf78edd2154dee1f2b99",{"version":"bd1a08e30569b0fb2f0b21035eb9b039871f68faa9b98accf847e9c878c5e0a9","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","ee18f2da7a037c6ceeb112a084e485aead9ea166980bf433474559eac1b46553","29c2706fa0cc49a2bd90c83234da33d08bb9554ecec675e91c1f85087f5a5324","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","d7838022c7dab596357a9604b9c6adffe37dc34085ce0779c958ce9545bd7139","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"a7971f9fb2a32ec7788ec6cda9d7a33c02023dfe9a62db2030ad1359649d8050","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637",{"version":"b42b47e17b8ece2424ae8039feb944c2e3ba4b262986aebd582e51efbdca93dc","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","2408611d9b4146e35d1dbd1f443ccd8e187c74614a54b80300728277529dbf11","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4","d88ecca73348e7c337541c4b8b60a50aca5e87384f6b8a422fc6603c637e4c21","badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e","c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"1cdb8f094b969dcc183745dc88404e2d8fcf2a858c6e7cc2441011476573238e","bc81aff061c53a7140270555f4b22da4ecfe8601e8027cf5aa175fbdc7927c31","8d5af927098c40f41f315552e7ff9ee9376b26fc03e83421a0cf2d93907ea346","c993b44ec48e09bf9e9b512941379656f9090ddf81f7ab61b4d8a6cdbe7ec409","54f323b0c25677fcd7dbb6541667f131e17bf49d48b6efdfed72ae71722fe8f5","7668c31fc1a0d6c5ee0ae1048d41f7232a56fbe18367929f78bd0c77303af11e","9ee6719e91c7363b99defdeec952c41078ac59aeb68bbc96ede64f843be94696","bbcc3aceb7caacbe14df4960f44d92d09cd222442c2a19c369b23e96b2bdad42","8a2540e4560ee50a8876c55e6cd074d68ef7e7656ee3e0c4c47214389754b208","1492b99033655246eb46cadbe1c91f2892f602d18714906f072970574869f3d7","63268040a0420c682d47b007aa7d310f84339101fa38ff7622b5adb015b20d52","8f421778fe98fbc2988ec488e9917b7c66c8089295e0d6f3c58e9d2ad92294bd","cfb33f2f911dba48324e7bf0fb7853a88daf3df80de18df156f8fa4e71168ce4"],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":false,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitOnError":true,"outDir":"./dist","rootDir":"./src","sourceMap":true,"strict":true,"target":5},"fileIdsList":[[139,152,163,186,314],[162,163,164,314],[139,161,186,314],[139,150,162,314],[144,152,153,154,156,157,158,161,162,163,164,165,186,314],[151,152,154,161,162,186,314],[314],[139,154,161,186,314],[139,152,154,156,161,164,186,314],[144,314],[139,154,157,160,162,186,314],[223,314],[139,152,154,157,158,162,186,314],[139,153,161,162,164,186,314],[139,154,157,159,186,223,314],[139,166,186,194,204,216,217,218,220,314],[140,154,166,186,194,204,205,213,214,216,217,218,220,221,222,314],[139,166,186,194,217,221,314],[162,166,186,205,214,215,217,218,219,314],[139,166,186,194,205,214,217,218,219,220,314],[139,166,186,194,205,215,216,217,218,220,314],[139,150,166,186,194,205,214,215,216,218,220,314],[139,150,166,194,217,314],[139,144,204,213,314],[223,246,314],[186,187,314],[188,314],[144,187,188,189,190,191,192,193,314],[139,186,314],[139,186,194,214,314],[144,194,197,314],[194,197,314],[144,195,196,197,198,199,200,201,202,203,314],[194,314],[197,314],[139,194,314],[186,314],[144,206,207,208,209,210,211,212,314],[223,228,314],[223,228,234,314],[144,229,235,236,314],[144,238,239,240,241,242,243,314],[139,150,223,232,314],[223,232,314],[139,144,150,223,232,314],[144,232,237,244,245,314],[139,314],[228,314],[230,231,233,314],[223,228,232,314],[139,150,186,194,214,223,228,314],[172,314],[171,314],[140,141,142,143,314],[139,146,314],[144,145,146,147,148,149,167,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,314],[170,314],[168,169,314],[166,314],[261,314],[223,247,314],[264,265,266,314],[249,251,252,253,254,255,256,257,258,259,260,261,314],[249,250,252,253,254,255,256,257,258,259,260,261,314],[250,251,252,253,254,255,256,257,258,259,260,261,314],[249,250,251,253,254,255,256,257,258,259,260,261,314],[249,250,251,252,254,255,256,257,258,259,260,261,314],[249,250,251,252,253,255,256,257,258,259,260,261,314],[249,250,251,252,253,254,256,257,258,259,260,261,314],[249,250,251,252,253,254,255,257,258,259,260,261,314],[249,250,251,252,253,254,255,256,258,259,260,261,314],[249,250,251,252,253,254,255,256,257,259,260,261,314],[249,250,251,252,253,254,255,256,257,258,260,261,314],[249,250,251,252,253,254,255,256,257,258,259,261,314],[249,250,251,252,253,254,255,256,257,258,259,260,314],[271,314],[274,314],[275,280,314],[276,286,287,294,303,313,314],[276,277,286,294,314],[278,314],[279,280,287,295,314],[280,303,310,314],[281,283,286,294,314],[282,314],[283,284,314],[285,286,314],[286,314],[286,287,288,303,313,314],[286,287,288,303,314],[289,294,303,313,314],[286,287,289,290,294,303,310,313,314],[289,291,303,310,313,314],[271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320],[286,292,314],[293,313,314],[283,286,294,303,314],[295,314],[296,314],[274,297,314],[298,312,314,318],[299,314],[300,314],[286,301,314],[301,302,314,316],[286,303,304,305,314],[303,305,314],[303,304,314],[306,314],[307,314],[286,308,309,314],[308,309,314],[280,294,310,314],[311,314],[294,312,314],[275,289,300,313,314],[280,314],[303,314,315],[314,316],[314,317],[275,280,286,288,297,303,313,314,316,318],[303,314,319],[224,225,226,227,314],[286,289,291,294,303,310,313,314,319,321],[45,222,314],[52,53,314],[42,43,45,52,314],[53,54,113,114,314],[42,45,53,314],[43,53,314],[42,45,47,48,49,51,53,54,314],[48,55,69,314],[42,45,49,50,51,53,314],[42,43,49,51,55,314],[41,56,60,68,70,72,112,115,138,314],[43,44,314],[43,44,45,46,52,61,62,63,64,65,66,67,314],[43,44,45,314],[43,314],[42,43,44,45,63,139,314],[45,314],[43,45,52,314],[42,45,314],[71,314],[42,45,49,51,55,314],[42,45,47,48,51,314],[42,45,46,49,314],[48,49,50,51,57,58,59,314],[49,314],[42,45,49,50,314],[51,53,314],[53,314],[42,45,49,314],[43,45,51,64,314],[51,116,314],[49,53,314],[42,45,51,314],[51,314],[45,51,53,314],[42,46,314],[45,49,51,314],[73,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,314],[49,51,314],[42,45,49,50,51,66,314],[74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,314],[66,74,314],[74,314],[42,45,51,53,73,74,314],[42,45,49,50,51,53,66,73,314],[45,55,269,314],[270,314,323,324,325],[139,289,314,321,322],[40,223,247,248,262,314],[40,222,223,262,263,267,314],[40,262,314,326],[40,263,268,314,327],[40,314],[40,314,329,330,331,332]],"referencedMap":[[164,1],[152,2],[162,3],[163,4],[166,5],[153,6],[155,7],[165,8],[157,9],[158,10],[161,11],[156,12],[159,13],[154,14],[160,15],[221,16],[223,17],[216,18],[205,7],[220,19],[215,20],[219,21],[217,22],[218,23],[214,24],[247,25],[188,26],[192,27],[189,27],[193,27],[190,27],[194,28],[191,27],[187,29],[248,30],[198,7],[201,31],[199,7],[202,32],[204,33],[195,34],[203,35],[197,36],[200,34],[196,10],[211,34],[206,37],[208,37],[213,38],[209,7],[207,37],[212,34],[210,34],[169,7],[229,39],[235,40],[236,39],[237,41],[244,42],[238,12],[239,43],[240,43],[241,44],[243,12],[242,45],[246,46],[245,47],[230,48],[234,49],[233,50],[231,48],[232,51],[179,7],[181,7],[173,7],[182,52],[180,47],[183,7],[174,10],[172,53],[171,7],[184,7],[141,7],[143,7],[144,54],[142,7],[145,47],[146,47],[147,47],[148,55],[149,47],[186,56],[176,57],[177,57],[175,57],[170,58],[178,57],[167,59],[185,7],[150,47],[262,60],[264,7],[265,61],[267,62],[266,7],[250,63],[251,64],[249,65],[252,66],[253,67],[254,68],[255,69],[256,70],[257,71],[258,72],[259,73],[260,74],[261,75],[271,76],[272,76],[274,77],[275,78],[276,79],[277,80],[278,81],[279,82],[280,83],[281,84],[282,85],[283,86],[284,86],[285,87],[286,88],[287,89],[288,90],[273,7],[320,7],[289,91],[290,92],[291,93],[321,94],[292,95],[293,96],[294,97],[295,98],[296,99],[297,100],[298,101],[299,102],[300,103],[301,104],[302,105],[303,106],[305,107],[304,108],[306,109],[307,110],[308,111],[309,112],[310,113],[311,114],[312,115],[313,116],[314,117],[315,118],[316,119],[317,120],[318,121],[319,122],[226,7],[224,7],[228,123],[225,7],[227,7],[322,124],[151,7],[222,125],[54,126],[53,127],[115,128],[114,129],[113,130],[55,131],[70,132],[69,133],[56,134],[139,135],[42,7],[48,7],[47,7],[45,136],[46,7],[68,137],[62,7],[63,138],[52,139],[64,140],[67,141],[65,141],[61,142],[43,7],[44,7],[66,143],[72,144],[71,145],[49,146],[50,147],[60,148],[58,149],[57,149],[51,150],[59,151],[134,152],[128,153],[121,154],[120,155],[129,156],[130,141],[122,157],[135,158],[137,159],[116,160],[117,143],[118,161],[138,162],[119,155],[123,158],[124,163],[131,141],[132,139],[133,163],[136,141],[125,161],[73,164],[126,153],[127,143],[112,165],[110,166],[111,166],[77,166],[78,166],[79,166],[80,166],[81,166],[82,166],[83,166],[84,166],[103,166],[85,166],[86,166],[87,166],[88,166],[89,166],[90,166],[109,166],[91,166],[92,166],[93,166],[94,166],[108,166],[95,166],[106,166],[107,166],[96,166],[97,166],[98,166],[104,166],[105,166],[99,166],[100,166],[101,166],[102,166],[76,167],[75,168],[74,169],[41,7],[270,170],[326,171],[324,7],[325,7],[323,172],[269,7],[140,7],[40,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],[38,7],[34,7],[35,7],[36,7],[37,7],[1,7],[39,7],[168,7],[263,173],[268,174],[327,175],[328,176],[329,177],[330,177],[331,177],[332,177],[333,178]],"exportedModulesMap":[[164,1],[152,2],[162,3],[163,4],[166,5],[153,6],[155,7],[165,8],[157,9],[158,10],[161,11],[156,12],[159,13],[154,14],[160,15],[221,16],[223,17],[216,18],[205,7],[220,19],[215,20],[219,21],[217,22],[218,23],[214,24],[247,25],[188,26],[192,27],[189,27],[193,27],[190,27],[194,28],[191,27],[187,29],[248,30],[198,7],[201,31],[199,7],[202,32],[204,33],[195,34],[203,35],[197,36],[200,34],[196,10],[211,34],[206,37],[208,37],[213,38],[209,7],[207,37],[212,34],[210,34],[169,7],[229,39],[235,40],[236,39],[237,41],[244,42],[238,12],[239,43],[240,43],[241,44],[243,12],[242,45],[246,46],[245,47],[230,48],[234,49],[233,50],[231,48],[232,51],[179,7],[181,7],[173,7],[182,52],[180,47],[183,7],[174,10],[172,53],[171,7],[184,7],[141,7],[143,7],[144,54],[142,7],[145,47],[146,47],[147,47],[148,55],[149,47],[186,56],[176,57],[177,57],[175,57],[170,58],[178,57],[167,59],[185,7],[150,47],[262,60],[264,7],[265,61],[267,62],[266,7],[250,63],[251,64],[249,65],[252,66],[253,67],[254,68],[255,69],[256,70],[257,71],[258,72],[259,73],[260,74],[261,75],[271,76],[272,76],[274,77],[275,78],[276,79],[277,80],[278,81],[279,82],[280,83],[281,84],[282,85],[283,86],[284,86],[285,87],[286,88],[287,89],[288,90],[273,7],[320,7],[289,91],[290,92],[291,93],[321,94],[292,95],[293,96],[294,97],[295,98],[296,99],[297,100],[298,101],[299,102],[300,103],[301,104],[302,105],[303,106],[305,107],[304,108],[306,109],[307,110],[308,111],[309,112],[310,113],[311,114],[312,115],[313,116],[314,117],[315,118],[316,119],[317,120],[318,121],[319,122],[226,7],[224,7],[228,123],[225,7],[227,7],[322,124],[151,7],[222,125],[54,126],[53,127],[115,128],[114,129],[113,130],[55,131],[70,132],[69,133],[56,134],[139,135],[42,7],[48,7],[47,7],[45,136],[46,7],[68,137],[62,7],[63,138],[52,139],[64,140],[67,141],[65,141],[61,142],[43,7],[44,7],[66,143],[72,144],[71,145],[49,146],[50,147],[60,148],[58,149],[57,149],[51,150],[59,151],[134,152],[128,153],[121,154],[120,155],[129,156],[130,141],[122,157],[135,158],[137,159],[116,160],[117,143],[118,161],[138,162],[119,155],[123,158],[124,163],[131,141],[132,139],[133,163],[136,141],[125,161],[73,164],[126,153],[127,143],[112,165],[110,166],[111,166],[77,166],[78,166],[79,166],[80,166],[81,166],[82,166],[83,166],[84,166],[103,166],[85,166],[86,166],[87,166],[88,166],[89,166],[90,166],[109,166],[91,166],[92,166],[93,166],[94,166],[108,166],[95,166],[106,166],[107,166],[96,166],[97,166],[98,166],[104,166],[105,166],[99,166],[100,166],[101,166],[102,166],[76,167],[75,168],[74,169],[41,7],[270,170],[326,171],[324,7],[325,7],[323,172],[269,7],[140,7],[40,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],[38,7],[34,7],[35,7],[36,7],[37,7],[1,7],[39,7],[168,7],[263,173],[268,174],[327,175],[328,176],[329,177],[330,177],[331,177],[332,177],[333,178]],"semanticDiagnosticsPerFile":[164,152,162,163,166,153,155,165,157,158,161,156,159,154,160,221,223,216,205,220,215,219,217,218,214,247,188,192,189,193,190,194,191,187,248,198,201,199,202,204,195,203,197,200,196,211,206,208,213,209,207,212,210,169,229,235,236,237,244,238,239,240,241,243,242,246,245,230,234,233,231,232,179,181,173,182,180,183,174,172,171,184,141,143,144,142,145,146,147,148,149,186,176,177,175,170,178,167,185,150,262,264,265,267,266,250,251,249,252,253,254,255,256,257,258,259,260,261,271,272,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,273,320,289,290,291,321,292,293,294,295,296,297,298,299,300,301,302,303,305,304,306,307,308,309,310,311,312,313,314,315,316,317,318,319,226,224,228,225,227,322,151,222,54,53,115,114,113,55,70,69,56,139,42,48,47,45,46,68,62,63,52,64,67,65,61,43,44,66,72,71,49,50,60,58,57,51,59,134,128,121,120,129,130,122,135,137,116,117,118,138,119,123,124,131,132,133,136,125,73,126,127,112,110,111,77,78,79,80,81,82,83,84,103,85,86,87,88,89,90,109,91,92,93,94,108,95,106,107,96,97,98,104,105,99,100,101,102,76,75,74,41,270,326,324,325,323,269,140,40,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,30,31,32,33,7,38,34,35,36,37,1,39,168,263,268,327,328,329,330,331,332,333]},"version":"4.5.2"}
|