@things-factory/calendar 7.0.1-alpha.23 → 7.0.1-alpha.26
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/client/pages/attendee/attendee-list-page.ts +5 -3
- package/client/pages/calendar/calendar-list-page.ts +5 -3
- package/client/pages/event/event-list-page.ts +5 -3
- package/dist-client/pages/attendee/attendee-list-page.d.ts +2 -2
- package/dist-client/pages/attendee/attendee-list-page.js +6 -4
- package/dist-client/pages/attendee/attendee-list-page.js.map +1 -1
- package/dist-client/pages/calendar/calendar-list-page.d.ts +2 -2
- package/dist-client/pages/calendar/calendar-list-page.js +6 -4
- package/dist-client/pages/calendar/calendar-list-page.js.map +1 -1
- package/dist-client/pages/event/event-list-page.d.ts +2 -2
- package/dist-client/pages/event/event-list-page.js +6 -4
- package/dist-client/pages/event/event-list-page.js.map +1 -1
- package/dist-client/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -4
|
@@ -4,7 +4,7 @@ import { CommonButtonStyles, CommonGristStyles, ScrollbarStyles } from '@operato
|
|
|
4
4
|
import { PageView, store } from '@operato/shell'
|
|
5
5
|
import { css, html } from 'lit'
|
|
6
6
|
import { customElement, property, query } from 'lit/decorators.js'
|
|
7
|
-
import { ScopedElementsMixin } from '@open-wc/scoped-elements
|
|
7
|
+
import { ScopedElementsMixin } from '@open-wc/scoped-elements'
|
|
8
8
|
import { ColumnConfig, DataGrist, FetchOption, SortersControl } from '@operato/data-grist'
|
|
9
9
|
import { client } from '@operato/graphql'
|
|
10
10
|
import { i18next, localize } from '@operato/i18n'
|
|
@@ -39,8 +39,10 @@ export class AttendeeListPage extends connect(store)(localize(i18next)(ScopedEle
|
|
|
39
39
|
`
|
|
40
40
|
]
|
|
41
41
|
|
|
42
|
-
static scopedElements
|
|
43
|
-
|
|
42
|
+
static get scopedElements() {
|
|
43
|
+
return {
|
|
44
|
+
'attendee-importer': AttendeeImporter
|
|
45
|
+
}
|
|
44
46
|
}
|
|
45
47
|
|
|
46
48
|
@property({ type: Object }) gristConfig: any
|
|
@@ -4,7 +4,7 @@ import { CommonButtonStyles, CommonGristStyles, ScrollbarStyles } from '@operato
|
|
|
4
4
|
import { PageView, store } from '@operato/shell'
|
|
5
5
|
import { css, html } from 'lit'
|
|
6
6
|
import { customElement, property, query } from 'lit/decorators.js'
|
|
7
|
-
import { ScopedElementsMixin } from '@open-wc/scoped-elements
|
|
7
|
+
import { ScopedElementsMixin } from '@open-wc/scoped-elements'
|
|
8
8
|
import { ColumnConfig, DataGrist, FetchOption, SortersControl } from '@operato/data-grist'
|
|
9
9
|
import { client } from '@operato/graphql'
|
|
10
10
|
import { i18next, localize } from '@operato/i18n'
|
|
@@ -39,8 +39,10 @@ export class CalendarListPage extends connect(store)(localize(i18next)(ScopedEle
|
|
|
39
39
|
`
|
|
40
40
|
]
|
|
41
41
|
|
|
42
|
-
static scopedElements
|
|
43
|
-
|
|
42
|
+
static get scopedElements() {
|
|
43
|
+
return {
|
|
44
|
+
'calendar-importer': CalendarImporter
|
|
45
|
+
}
|
|
44
46
|
}
|
|
45
47
|
|
|
46
48
|
@property({ type: Object }) gristConfig: any
|
|
@@ -4,7 +4,7 @@ import { CommonButtonStyles, CommonGristStyles, ScrollbarStyles } from '@operato
|
|
|
4
4
|
import { PageView, store } from '@operato/shell'
|
|
5
5
|
import { css, html } from 'lit'
|
|
6
6
|
import { customElement, property, query } from 'lit/decorators.js'
|
|
7
|
-
import { ScopedElementsMixin } from '@open-wc/scoped-elements
|
|
7
|
+
import { ScopedElementsMixin } from '@open-wc/scoped-elements'
|
|
8
8
|
import { ColumnConfig, DataGrist, FetchOption, SortersControl } from '@operato/data-grist'
|
|
9
9
|
import { client } from '@operato/graphql'
|
|
10
10
|
import { i18next, localize } from '@operato/i18n'
|
|
@@ -39,8 +39,10 @@ export class EventListPage extends connect(store)(localize(i18next)(ScopedElemen
|
|
|
39
39
|
`
|
|
40
40
|
]
|
|
41
41
|
|
|
42
|
-
static scopedElements
|
|
43
|
-
|
|
42
|
+
static get scopedElements() {
|
|
43
|
+
return {
|
|
44
|
+
'event-importer': EventImporter
|
|
45
|
+
}
|
|
44
46
|
}
|
|
45
47
|
|
|
46
48
|
@property({ type: Object }) gristConfig: any
|
|
@@ -8,10 +8,10 @@ declare const AttendeeListPage_base: (new (...args: any[]) => {
|
|
|
8
8
|
disconnectedCallback(): void;
|
|
9
9
|
stateChanged(_state: unknown): void;
|
|
10
10
|
readonly isConnected: boolean;
|
|
11
|
-
}) & (new (...args: any[]) => import("lit").LitElement) & typeof PageView & import("@open-wc/scoped-elements/
|
|
11
|
+
}) & (new (...args: any[]) => import("lit").LitElement) & typeof PageView & import("@open-wc/dedupe-mixin").Constructor<import("@open-wc/scoped-elements/types/src/types").ScopedElementsHost>;
|
|
12
12
|
export declare class AttendeeListPage extends AttendeeListPage_base {
|
|
13
13
|
static styles: import("lit").CSSResult[];
|
|
14
|
-
static scopedElements: {
|
|
14
|
+
static get scopedElements(): {
|
|
15
15
|
'attendee-importer': typeof AttendeeImporter;
|
|
16
16
|
};
|
|
17
17
|
gristConfig: any;
|
|
@@ -4,7 +4,7 @@ import { CommonButtonStyles, CommonGristStyles, ScrollbarStyles } from '@operato
|
|
|
4
4
|
import { PageView, store } from '@operato/shell';
|
|
5
5
|
import { css, html } from 'lit';
|
|
6
6
|
import { customElement, property, query } from 'lit/decorators.js';
|
|
7
|
-
import { ScopedElementsMixin } from '@open-wc/scoped-elements
|
|
7
|
+
import { ScopedElementsMixin } from '@open-wc/scoped-elements';
|
|
8
8
|
import { DataGrist } from '@operato/data-grist';
|
|
9
9
|
import { client } from '@operato/graphql';
|
|
10
10
|
import { i18next, localize } from '@operato/i18n';
|
|
@@ -19,6 +19,11 @@ let AttendeeListPage = class AttendeeListPage extends connect(store)(localize(i1
|
|
|
19
19
|
super(...arguments);
|
|
20
20
|
this.mode = isMobileDevice() ? 'CARD' : 'GRID';
|
|
21
21
|
}
|
|
22
|
+
static get scopedElements() {
|
|
23
|
+
return {
|
|
24
|
+
'attendee-importer': AttendeeImporter
|
|
25
|
+
};
|
|
26
|
+
}
|
|
22
27
|
get context() {
|
|
23
28
|
var _a;
|
|
24
29
|
return {
|
|
@@ -296,9 +301,6 @@ AttendeeListPage.styles = [
|
|
|
296
301
|
}
|
|
297
302
|
`
|
|
298
303
|
];
|
|
299
|
-
AttendeeListPage.scopedElements = {
|
|
300
|
-
'attendee-importer': AttendeeImporter
|
|
301
|
-
};
|
|
302
304
|
__decorate([
|
|
303
305
|
property({ type: Object }),
|
|
304
306
|
__metadata("design:type", Object)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"attendee-list-page.js","sourceRoot":"","sources":["../../../client/pages/attendee/attendee-list-page.ts"],"names":[],"mappings":"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","sourcesContent":["import '@operato/data-grist'\n\nimport { CommonButtonStyles, CommonGristStyles, ScrollbarStyles } from '@operato/styles'\nimport { PageView, store } from '@operato/shell'\nimport { css, html } from 'lit'\nimport { customElement, property, query } from 'lit/decorators.js'\nimport { ScopedElementsMixin } from '@open-wc/scoped-elements/lit-element.js'\nimport { ColumnConfig, DataGrist, FetchOption, SortersControl } from '@operato/data-grist'\nimport { client } from '@operato/graphql'\nimport { i18next, localize } from '@operato/i18n'\nimport { notify, openPopup } from '@operato/layout'\nimport { OxPopup } from '@operato/popup'\nimport { isMobileDevice } from '@operato/utils'\n\nimport { connect } from 'pwa-helpers/connect-mixin'\nimport gql from 'graphql-tag'\n\nimport { AttendeeImporter } from './attendee-importer'\n\n@customElement('attendee-list-page')\nexport class AttendeeListPage extends connect(store)(localize(i18next)(ScopedElementsMixin(PageView))) {\n static styles = [\n ScrollbarStyles,\n CommonGristStyles,\n css`\n :host {\n display: flex;\n\n width: 100%;\n\n --grid-record-emphasized-background-color: #8b0000;\n --grid-record-emphasized-color: #ff6b6b;\n }\n\n ox-grist {\n overflow-y: auto;\n flex: 1;\n }\n `\n ]\n\n static scopedElements = {\n 'attendee-importer': AttendeeImporter\n }\n\n @property({ type: Object }) gristConfig: any\n @property({ type: String }) mode: 'CARD' | 'GRID' | 'LIST' = isMobileDevice() ? 'CARD' : 'GRID'\n\n @query('ox-grist') private grist!: DataGrist\n @query('#sorter-control') private sortersControl!: OxPopup\n\n get context() {\n return {\n title: i18next.t('title.attendee list'),\n search: {\n handler: (search: string) => {\n this.grist.searchText = search\n },\n value: this.grist?.searchText || '',\n autofocus: true\n },\n filter: {\n handler: () => {\n this.grist.toggleHeadroom()\n }\n },\n help: 'calendar/attendee',\n actions: [\n {\n title: i18next.t('button.save'),\n action: this._updateAttendee.bind(this),\n ...CommonButtonStyles.save\n },\n {\n title: i18next.t('button.delete'),\n action: this._deleteAttendee.bind(this),\n ...CommonButtonStyles.delete\n }\n ],\n exportable: {\n name: i18next.t('title.attendee list'),\n data: this.exportHandler.bind(this)\n },\n importable: {\n handler: this.importHandler.bind(this)\n }\n }\n }\n\n render() {\n const mode = this.mode || (isMobileDevice() ? 'CARD' : 'GRID')\n\n return html`\n <ox-grist .mode=${mode} .config=${this.gristConfig} .fetchHandler=${this.fetchHandler.bind(this)}>\n <div slot=\"headroom\">\n <div id=\"filters\">\n <ox-filters-form autofocus></ox-filters-form>\n </div>\n\n <div id=\"sorters\">\n Sort\n <mwc-icon\n @click=${e => {\n const target = e.currentTarget\n this.sortersControl.open({\n right: 0,\n top: target.offsetTop + target.offsetHeight\n })\n }}\n >expand_more</mwc-icon\n >\n <ox-popup id=\"sorter-control\">\n <ox-sorters-control> </ox-sorters-control>\n </ox-popup>\n </div>\n\n <div id=\"modes\">\n <mwc-icon @click=${() => (this.mode = 'GRID')} ?active=${mode == 'GRID'}>grid_on</mwc-icon>\n <mwc-icon @click=${() => (this.mode = 'LIST')} ?active=${mode == 'LIST'}>format_list_bulleted</mwc-icon>\n <mwc-icon @click=${() => (this.mode = 'CARD')} ?active=${mode == 'CARD'}>apps</mwc-icon>\n </div>\n </div>\n </ox-grist>\n `\n }\n\n async pageInitialized(lifecycle: any) {\n this.gristConfig = {\n list: {\n fields: ['name', 'description'],\n details: ['active', 'updatedAt']\n },\n columns: [\n { type: 'gutter', gutterName: 'sequence' },\n { type: 'gutter', gutterName: 'row-selector', multiple: true },\n {\n type: 'string',\n name: 'name',\n header: i18next.t('field.name'),\n record: {\n editable: true\n },\n filter: 'search',\n sortable: true,\n width: 150\n },\n {\n type: 'string',\n name: 'description',\n header: i18next.t('field.description'),\n record: {\n editable: true\n },\n filter: 'search',\n width: 200\n },\n {\n type: 'checkbox',\n name: 'active',\n label: true,\n header: i18next.t('field.active'),\n record: {\n editable: true\n },\n filter: true,\n sortable: true,\n width: 60\n },\n {\n type: 'resource-object',\n name: 'updater',\n header: i18next.t('field.updater'),\n record: {\n editable: false\n },\n sortable: true,\n width: 120\n },\n {\n type: 'datetime',\n name: 'updatedAt',\n header: i18next.t('field.updated_at'),\n record: {\n editable: false\n },\n sortable: true,\n width: 180\n }\n ],\n rows: {\n selectable: {\n multiple: true\n }\n },\n sorters: [\n {\n name: 'name'\n }\n ]\n }\n }\n\n async pageUpdated(changes: any, lifecycle: any) {\n if (this.active) {\n // do something here when this page just became as active\n }\n }\n\n async fetchHandler({ page = 1, limit = 100, sortings = [], filters = [] }: FetchOption) {\n const response = await client.query({\n query: gql`\n query ($filters: [Filter!], $pagination: Pagination, $sortings: [Sorting!]) {\n responses: attendees(filters: $filters, pagination: $pagination, sortings: $sortings) {\n items {\n id\n name\n description\n active\n updater {\n id\n name\n }\n updatedAt\n }\n total\n }\n }\n `,\n variables: {\n filters,\n pagination: { page, limit },\n sortings\n }\n })\n\n return {\n total: response.data.responses.total || 0,\n records: response.data.responses.items || []\n }\n }\n\n async _deleteAttendee() {\n if (confirm(i18next.t('text.sure_to_x', { x: i18next.t('text.delete') }))) {\n const ids = this.grist.selected.map(record => record.id)\n if (ids && ids.length > 0) {\n const response = await client.mutate({\n mutation: gql`\n mutation ($ids: [String!]!) {\n deleteAttendees(ids: $ids)\n }\n `,\n variables: {\n ids\n }\n })\n\n if (!response.errors) {\n this.grist.fetch()\n notify({\n message: i18next.t('text.info_x_successfully', { x: i18next.t('text.delete') })\n })\n }\n }\n }\n }\n\n async _updateAttendee() {\n let patches = this.grist.dirtyRecords\n if (patches && patches.length) {\n patches = patches.map(patch => {\n let patchField: any = patch.id ? { id: patch.id } : {}\n const dirtyFields = patch.__dirtyfields__\n for (let key in dirtyFields) {\n patchField[key] = dirtyFields[key].after\n }\n patchField.cuFlag = patch.__dirty__\n\n return patchField\n })\n\n const response = await client.mutate({\n mutation: gql`\n mutation ($patches: [AttendeePatch!]!) {\n updateMultipleAttendee(patches: $patches) {\n name\n }\n }\n `,\n variables: {\n patches\n }\n })\n\n if (!response.errors) {\n this.grist.fetch()\n }\n }\n }\n\n async exportHandler() {\n const exportTargets = this.grist.selected.length ? this.grist.selected : this.grist.dirtyData.records\n const targetFieldSet = new Set(['id', 'name', 'description', 'active'])\n\n return exportTargets.map(attendee => {\n let tempObj = {}\n for (const field of targetFieldSet) {\n tempObj[field] = attendee[field]\n }\n\n return tempObj\n })\n }\n\n async importHandler(records) {\n const popup = openPopup(\n html`\n <attendee-importer\n .attendees=${records}\n @imported=${() => {\n history.back()\n this.grist.fetch()\n }}\n ></attendee-importer>\n `,\n {\n backdrop: true,\n size: 'large',\n title: i18next.t('title.import attendee')\n }\n )\n\n popup.onclosed = () => {\n this.grist.fetch()\n }\n }\n}\n"]}
|
|
1
|
+
{"version":3,"file":"attendee-list-page.js","sourceRoot":"","sources":["../../../client/pages/attendee/attendee-list-page.ts"],"names":[],"mappings":"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","sourcesContent":["import '@operato/data-grist'\n\nimport { CommonButtonStyles, CommonGristStyles, ScrollbarStyles } from '@operato/styles'\nimport { PageView, store } from '@operato/shell'\nimport { css, html } from 'lit'\nimport { customElement, property, query } from 'lit/decorators.js'\nimport { ScopedElementsMixin } from '@open-wc/scoped-elements'\nimport { ColumnConfig, DataGrist, FetchOption, SortersControl } from '@operato/data-grist'\nimport { client } from '@operato/graphql'\nimport { i18next, localize } from '@operato/i18n'\nimport { notify, openPopup } from '@operato/layout'\nimport { OxPopup } from '@operato/popup'\nimport { isMobileDevice } from '@operato/utils'\n\nimport { connect } from 'pwa-helpers/connect-mixin'\nimport gql from 'graphql-tag'\n\nimport { AttendeeImporter } from './attendee-importer'\n\n@customElement('attendee-list-page')\nexport class AttendeeListPage extends connect(store)(localize(i18next)(ScopedElementsMixin(PageView))) {\n static styles = [\n ScrollbarStyles,\n CommonGristStyles,\n css`\n :host {\n display: flex;\n\n width: 100%;\n\n --grid-record-emphasized-background-color: #8b0000;\n --grid-record-emphasized-color: #ff6b6b;\n }\n\n ox-grist {\n overflow-y: auto;\n flex: 1;\n }\n `\n ]\n\n static get scopedElements() {\n return {\n 'attendee-importer': AttendeeImporter\n }\n }\n\n @property({ type: Object }) gristConfig: any\n @property({ type: String }) mode: 'CARD' | 'GRID' | 'LIST' = isMobileDevice() ? 'CARD' : 'GRID'\n\n @query('ox-grist') private grist!: DataGrist\n @query('#sorter-control') private sortersControl!: OxPopup\n\n get context() {\n return {\n title: i18next.t('title.attendee list'),\n search: {\n handler: (search: string) => {\n this.grist.searchText = search\n },\n value: this.grist?.searchText || '',\n autofocus: true\n },\n filter: {\n handler: () => {\n this.grist.toggleHeadroom()\n }\n },\n help: 'calendar/attendee',\n actions: [\n {\n title: i18next.t('button.save'),\n action: this._updateAttendee.bind(this),\n ...CommonButtonStyles.save\n },\n {\n title: i18next.t('button.delete'),\n action: this._deleteAttendee.bind(this),\n ...CommonButtonStyles.delete\n }\n ],\n exportable: {\n name: i18next.t('title.attendee list'),\n data: this.exportHandler.bind(this)\n },\n importable: {\n handler: this.importHandler.bind(this)\n }\n }\n }\n\n render() {\n const mode = this.mode || (isMobileDevice() ? 'CARD' : 'GRID')\n\n return html`\n <ox-grist .mode=${mode} .config=${this.gristConfig} .fetchHandler=${this.fetchHandler.bind(this)}>\n <div slot=\"headroom\">\n <div id=\"filters\">\n <ox-filters-form autofocus></ox-filters-form>\n </div>\n\n <div id=\"sorters\">\n Sort\n <mwc-icon\n @click=${e => {\n const target = e.currentTarget\n this.sortersControl.open({\n right: 0,\n top: target.offsetTop + target.offsetHeight\n })\n }}\n >expand_more</mwc-icon\n >\n <ox-popup id=\"sorter-control\">\n <ox-sorters-control> </ox-sorters-control>\n </ox-popup>\n </div>\n\n <div id=\"modes\">\n <mwc-icon @click=${() => (this.mode = 'GRID')} ?active=${mode == 'GRID'}>grid_on</mwc-icon>\n <mwc-icon @click=${() => (this.mode = 'LIST')} ?active=${mode == 'LIST'}>format_list_bulleted</mwc-icon>\n <mwc-icon @click=${() => (this.mode = 'CARD')} ?active=${mode == 'CARD'}>apps</mwc-icon>\n </div>\n </div>\n </ox-grist>\n `\n }\n\n async pageInitialized(lifecycle: any) {\n this.gristConfig = {\n list: {\n fields: ['name', 'description'],\n details: ['active', 'updatedAt']\n },\n columns: [\n { type: 'gutter', gutterName: 'sequence' },\n { type: 'gutter', gutterName: 'row-selector', multiple: true },\n {\n type: 'string',\n name: 'name',\n header: i18next.t('field.name'),\n record: {\n editable: true\n },\n filter: 'search',\n sortable: true,\n width: 150\n },\n {\n type: 'string',\n name: 'description',\n header: i18next.t('field.description'),\n record: {\n editable: true\n },\n filter: 'search',\n width: 200\n },\n {\n type: 'checkbox',\n name: 'active',\n label: true,\n header: i18next.t('field.active'),\n record: {\n editable: true\n },\n filter: true,\n sortable: true,\n width: 60\n },\n {\n type: 'resource-object',\n name: 'updater',\n header: i18next.t('field.updater'),\n record: {\n editable: false\n },\n sortable: true,\n width: 120\n },\n {\n type: 'datetime',\n name: 'updatedAt',\n header: i18next.t('field.updated_at'),\n record: {\n editable: false\n },\n sortable: true,\n width: 180\n }\n ],\n rows: {\n selectable: {\n multiple: true\n }\n },\n sorters: [\n {\n name: 'name'\n }\n ]\n }\n }\n\n async pageUpdated(changes: any, lifecycle: any) {\n if (this.active) {\n // do something here when this page just became as active\n }\n }\n\n async fetchHandler({ page = 1, limit = 100, sortings = [], filters = [] }: FetchOption) {\n const response = await client.query({\n query: gql`\n query ($filters: [Filter!], $pagination: Pagination, $sortings: [Sorting!]) {\n responses: attendees(filters: $filters, pagination: $pagination, sortings: $sortings) {\n items {\n id\n name\n description\n active\n updater {\n id\n name\n }\n updatedAt\n }\n total\n }\n }\n `,\n variables: {\n filters,\n pagination: { page, limit },\n sortings\n }\n })\n\n return {\n total: response.data.responses.total || 0,\n records: response.data.responses.items || []\n }\n }\n\n async _deleteAttendee() {\n if (confirm(i18next.t('text.sure_to_x', { x: i18next.t('text.delete') }))) {\n const ids = this.grist.selected.map(record => record.id)\n if (ids && ids.length > 0) {\n const response = await client.mutate({\n mutation: gql`\n mutation ($ids: [String!]!) {\n deleteAttendees(ids: $ids)\n }\n `,\n variables: {\n ids\n }\n })\n\n if (!response.errors) {\n this.grist.fetch()\n notify({\n message: i18next.t('text.info_x_successfully', { x: i18next.t('text.delete') })\n })\n }\n }\n }\n }\n\n async _updateAttendee() {\n let patches = this.grist.dirtyRecords\n if (patches && patches.length) {\n patches = patches.map(patch => {\n let patchField: any = patch.id ? { id: patch.id } : {}\n const dirtyFields = patch.__dirtyfields__\n for (let key in dirtyFields) {\n patchField[key] = dirtyFields[key].after\n }\n patchField.cuFlag = patch.__dirty__\n\n return patchField\n })\n\n const response = await client.mutate({\n mutation: gql`\n mutation ($patches: [AttendeePatch!]!) {\n updateMultipleAttendee(patches: $patches) {\n name\n }\n }\n `,\n variables: {\n patches\n }\n })\n\n if (!response.errors) {\n this.grist.fetch()\n }\n }\n }\n\n async exportHandler() {\n const exportTargets = this.grist.selected.length ? this.grist.selected : this.grist.dirtyData.records\n const targetFieldSet = new Set(['id', 'name', 'description', 'active'])\n\n return exportTargets.map(attendee => {\n let tempObj = {}\n for (const field of targetFieldSet) {\n tempObj[field] = attendee[field]\n }\n\n return tempObj\n })\n }\n\n async importHandler(records) {\n const popup = openPopup(\n html`\n <attendee-importer\n .attendees=${records}\n @imported=${() => {\n history.back()\n this.grist.fetch()\n }}\n ></attendee-importer>\n `,\n {\n backdrop: true,\n size: 'large',\n title: i18next.t('title.import attendee')\n }\n )\n\n popup.onclosed = () => {\n this.grist.fetch()\n }\n }\n}\n"]}
|
|
@@ -8,10 +8,10 @@ declare const CalendarListPage_base: (new (...args: any[]) => {
|
|
|
8
8
|
disconnectedCallback(): void;
|
|
9
9
|
stateChanged(_state: unknown): void;
|
|
10
10
|
readonly isConnected: boolean;
|
|
11
|
-
}) & (new (...args: any[]) => import("lit").LitElement) & typeof PageView & import("@open-wc/scoped-elements/
|
|
11
|
+
}) & (new (...args: any[]) => import("lit").LitElement) & typeof PageView & import("@open-wc/dedupe-mixin").Constructor<import("@open-wc/scoped-elements/types/src/types").ScopedElementsHost>;
|
|
12
12
|
export declare class CalendarListPage extends CalendarListPage_base {
|
|
13
13
|
static styles: import("lit").CSSResult[];
|
|
14
|
-
static scopedElements: {
|
|
14
|
+
static get scopedElements(): {
|
|
15
15
|
'calendar-importer': typeof CalendarImporter;
|
|
16
16
|
};
|
|
17
17
|
gristConfig: any;
|
|
@@ -4,7 +4,7 @@ import { CommonButtonStyles, CommonGristStyles, ScrollbarStyles } from '@operato
|
|
|
4
4
|
import { PageView, store } from '@operato/shell';
|
|
5
5
|
import { css, html } from 'lit';
|
|
6
6
|
import { customElement, property, query } from 'lit/decorators.js';
|
|
7
|
-
import { ScopedElementsMixin } from '@open-wc/scoped-elements
|
|
7
|
+
import { ScopedElementsMixin } from '@open-wc/scoped-elements';
|
|
8
8
|
import { DataGrist } from '@operato/data-grist';
|
|
9
9
|
import { client } from '@operato/graphql';
|
|
10
10
|
import { i18next, localize } from '@operato/i18n';
|
|
@@ -19,6 +19,11 @@ let CalendarListPage = class CalendarListPage extends connect(store)(localize(i1
|
|
|
19
19
|
super(...arguments);
|
|
20
20
|
this.mode = isMobileDevice() ? 'CARD' : 'GRID';
|
|
21
21
|
}
|
|
22
|
+
static get scopedElements() {
|
|
23
|
+
return {
|
|
24
|
+
'calendar-importer': CalendarImporter
|
|
25
|
+
};
|
|
26
|
+
}
|
|
22
27
|
get context() {
|
|
23
28
|
var _a;
|
|
24
29
|
return {
|
|
@@ -296,9 +301,6 @@ CalendarListPage.styles = [
|
|
|
296
301
|
}
|
|
297
302
|
`
|
|
298
303
|
];
|
|
299
|
-
CalendarListPage.scopedElements = {
|
|
300
|
-
'calendar-importer': CalendarImporter
|
|
301
|
-
};
|
|
302
304
|
__decorate([
|
|
303
305
|
property({ type: Object }),
|
|
304
306
|
__metadata("design:type", Object)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"calendar-list-page.js","sourceRoot":"","sources":["../../../client/pages/calendar/calendar-list-page.ts"],"names":[],"mappings":"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","sourcesContent":["import '@operato/data-grist'\n\nimport { CommonButtonStyles, CommonGristStyles, ScrollbarStyles } from '@operato/styles'\nimport { PageView, store } from '@operato/shell'\nimport { css, html } from 'lit'\nimport { customElement, property, query } from 'lit/decorators.js'\nimport { ScopedElementsMixin } from '@open-wc/scoped-elements/lit-element.js'\nimport { ColumnConfig, DataGrist, FetchOption, SortersControl } from '@operato/data-grist'\nimport { client } from '@operato/graphql'\nimport { i18next, localize } from '@operato/i18n'\nimport { notify, openPopup } from '@operato/layout'\nimport { OxPopup } from '@operato/popup'\nimport { isMobileDevice } from '@operato/utils'\n\nimport { connect } from 'pwa-helpers/connect-mixin'\nimport gql from 'graphql-tag'\n\nimport { CalendarImporter } from './calendar-importer'\n\n@customElement('calendar-list-page')\nexport class CalendarListPage extends connect(store)(localize(i18next)(ScopedElementsMixin(PageView))) {\n static styles = [\n ScrollbarStyles,\n CommonGristStyles,\n css`\n :host {\n display: flex;\n\n width: 100%;\n\n --grid-record-emphasized-background-color: #8b0000;\n --grid-record-emphasized-color: #ff6b6b;\n }\n\n ox-grist {\n overflow-y: auto;\n flex: 1;\n }\n `\n ]\n\n static scopedElements = {\n 'calendar-importer': CalendarImporter\n }\n\n @property({ type: Object }) gristConfig: any\n @property({ type: String }) mode: 'CARD' | 'GRID' | 'LIST' = isMobileDevice() ? 'CARD' : 'GRID'\n\n @query('ox-grist') private grist!: DataGrist\n @query('#sorter-control') private sortersControl!: OxPopup\n\n get context() {\n return {\n title: i18next.t('title.calendar list'),\n search: {\n handler: (search: string) => {\n this.grist.searchText = search\n },\n value: this.grist?.searchText || '',\n autofocus: true\n },\n filter: {\n handler: () => {\n this.grist.toggleHeadroom()\n }\n },\n help: 'calendar/calendar',\n actions: [\n {\n title: i18next.t('button.save'),\n action: this._updateCalendar.bind(this),\n ...CommonButtonStyles.save\n },\n {\n title: i18next.t('button.delete'),\n action: this._deleteCalendar.bind(this),\n ...CommonButtonStyles.delete\n }\n ],\n exportable: {\n name: i18next.t('title.calendar list'),\n data: this.exportHandler.bind(this)\n },\n importable: {\n handler: this.importHandler.bind(this)\n }\n }\n }\n\n render() {\n const mode = this.mode || (isMobileDevice() ? 'CARD' : 'GRID')\n\n return html`\n <ox-grist .mode=${mode} .config=${this.gristConfig} .fetchHandler=${this.fetchHandler.bind(this)}>\n <div slot=\"headroom\">\n <div id=\"filters\">\n <ox-filters-form autofocus></ox-filters-form>\n </div>\n\n <div id=\"sorters\">\n Sort\n <mwc-icon\n @click=${e => {\n const target = e.currentTarget\n this.sortersControl.open({\n right: 0,\n top: target.offsetTop + target.offsetHeight\n })\n }}\n >expand_more</mwc-icon\n >\n <ox-popup id=\"sorter-control\">\n <ox-sorters-control> </ox-sorters-control>\n </ox-popup>\n </div>\n\n <div id=\"modes\">\n <mwc-icon @click=${() => (this.mode = 'GRID')} ?active=${mode == 'GRID'}>grid_on</mwc-icon>\n <mwc-icon @click=${() => (this.mode = 'LIST')} ?active=${mode == 'LIST'}>format_list_bulleted</mwc-icon>\n <mwc-icon @click=${() => (this.mode = 'CARD')} ?active=${mode == 'CARD'}>apps</mwc-icon>\n </div>\n </div>\n </ox-grist>\n `\n }\n\n async pageInitialized(lifecycle: any) {\n this.gristConfig = {\n list: {\n fields: ['name', 'description'],\n details: ['active', 'updatedAt']\n },\n columns: [\n { type: 'gutter', gutterName: 'sequence' },\n { type: 'gutter', gutterName: 'row-selector', multiple: true },\n {\n type: 'string',\n name: 'name',\n header: i18next.t('field.name'),\n record: {\n editable: true\n },\n filter: 'search',\n sortable: true,\n width: 150\n },\n {\n type: 'string',\n name: 'description',\n header: i18next.t('field.description'),\n record: {\n editable: true\n },\n filter: 'search',\n width: 200\n },\n {\n type: 'checkbox',\n name: 'active',\n label: true,\n header: i18next.t('field.active'),\n record: {\n editable: true\n },\n filter: true,\n sortable: true,\n width: 60\n },\n {\n type: 'resource-object',\n name: 'updater',\n header: i18next.t('field.updater'),\n record: {\n editable: false\n },\n sortable: true,\n width: 120\n },\n {\n type: 'datetime',\n name: 'updatedAt',\n header: i18next.t('field.updated_at'),\n record: {\n editable: false\n },\n sortable: true,\n width: 180\n }\n ],\n rows: {\n selectable: {\n multiple: true\n }\n },\n sorters: [\n {\n name: 'name'\n }\n ]\n }\n }\n\n async pageUpdated(changes: any, lifecycle: any) {\n if (this.active) {\n // do something here when this page just became as active\n }\n }\n\n async fetchHandler({ page = 1, limit = 100, sortings = [], filters = [] }: FetchOption) {\n const response = await client.query({\n query: gql`\n query ($filters: [Filter!], $pagination: Pagination, $sortings: [Sorting!]) {\n responses: calendars(filters: $filters, pagination: $pagination, sortings: $sortings) {\n items {\n id\n name\n description\n active\n updater {\n id\n name\n }\n updatedAt\n }\n total\n }\n }\n `,\n variables: {\n filters,\n pagination: { page, limit },\n sortings\n }\n })\n\n return {\n total: response.data.responses.total || 0,\n records: response.data.responses.items || []\n }\n }\n\n async _deleteCalendar() {\n if (confirm(i18next.t('text.sure_to_x', { x: i18next.t('text.delete') }))) {\n const ids = this.grist.selected.map(record => record.id)\n if (ids && ids.length > 0) {\n const response = await client.mutate({\n mutation: gql`\n mutation ($ids: [String!]!) {\n deleteCalendars(ids: $ids)\n }\n `,\n variables: {\n ids\n }\n })\n\n if (!response.errors) {\n this.grist.fetch()\n notify({\n message: i18next.t('text.info_x_successfully', { x: i18next.t('text.delete') })\n })\n }\n }\n }\n }\n\n async _updateCalendar() {\n let patches = this.grist.dirtyRecords\n if (patches && patches.length) {\n patches = patches.map(patch => {\n let patchField: any = patch.id ? { id: patch.id } : {}\n const dirtyFields = patch.__dirtyfields__\n for (let key in dirtyFields) {\n patchField[key] = dirtyFields[key].after\n }\n patchField.cuFlag = patch.__dirty__\n\n return patchField\n })\n\n const response = await client.mutate({\n mutation: gql`\n mutation ($patches: [CalendarPatch!]!) {\n updateMultipleCalendar(patches: $patches) {\n name\n }\n }\n `,\n variables: {\n patches\n }\n })\n\n if (!response.errors) {\n this.grist.fetch()\n }\n }\n }\n\n async exportHandler() {\n const exportTargets = this.grist.selected.length ? this.grist.selected : this.grist.dirtyData.records\n const targetFieldSet = new Set(['id', 'name', 'description', 'active'])\n\n return exportTargets.map(calendar => {\n let tempObj = {}\n for (const field of targetFieldSet) {\n tempObj[field] = calendar[field]\n }\n\n return tempObj\n })\n }\n\n async importHandler(records) {\n const popup = openPopup(\n html`\n <calendar-importer\n .calendars=${records}\n @imported=${() => {\n history.back()\n this.grist.fetch()\n }}\n ></calendar-importer>\n `,\n {\n backdrop: true,\n size: 'large',\n title: i18next.t('title.import calendar')\n }\n )\n\n popup.onclosed = () => {\n this.grist.fetch()\n }\n }\n}\n"]}
|
|
1
|
+
{"version":3,"file":"calendar-list-page.js","sourceRoot":"","sources":["../../../client/pages/calendar/calendar-list-page.ts"],"names":[],"mappings":"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","sourcesContent":["import '@operato/data-grist'\n\nimport { CommonButtonStyles, CommonGristStyles, ScrollbarStyles } from '@operato/styles'\nimport { PageView, store } from '@operato/shell'\nimport { css, html } from 'lit'\nimport { customElement, property, query } from 'lit/decorators.js'\nimport { ScopedElementsMixin } from '@open-wc/scoped-elements'\nimport { ColumnConfig, DataGrist, FetchOption, SortersControl } from '@operato/data-grist'\nimport { client } from '@operato/graphql'\nimport { i18next, localize } from '@operato/i18n'\nimport { notify, openPopup } from '@operato/layout'\nimport { OxPopup } from '@operato/popup'\nimport { isMobileDevice } from '@operato/utils'\n\nimport { connect } from 'pwa-helpers/connect-mixin'\nimport gql from 'graphql-tag'\n\nimport { CalendarImporter } from './calendar-importer'\n\n@customElement('calendar-list-page')\nexport class CalendarListPage extends connect(store)(localize(i18next)(ScopedElementsMixin(PageView))) {\n static styles = [\n ScrollbarStyles,\n CommonGristStyles,\n css`\n :host {\n display: flex;\n\n width: 100%;\n\n --grid-record-emphasized-background-color: #8b0000;\n --grid-record-emphasized-color: #ff6b6b;\n }\n\n ox-grist {\n overflow-y: auto;\n flex: 1;\n }\n `\n ]\n\n static get scopedElements() {\n return {\n 'calendar-importer': CalendarImporter\n }\n }\n\n @property({ type: Object }) gristConfig: any\n @property({ type: String }) mode: 'CARD' | 'GRID' | 'LIST' = isMobileDevice() ? 'CARD' : 'GRID'\n\n @query('ox-grist') private grist!: DataGrist\n @query('#sorter-control') private sortersControl!: OxPopup\n\n get context() {\n return {\n title: i18next.t('title.calendar list'),\n search: {\n handler: (search: string) => {\n this.grist.searchText = search\n },\n value: this.grist?.searchText || '',\n autofocus: true\n },\n filter: {\n handler: () => {\n this.grist.toggleHeadroom()\n }\n },\n help: 'calendar/calendar',\n actions: [\n {\n title: i18next.t('button.save'),\n action: this._updateCalendar.bind(this),\n ...CommonButtonStyles.save\n },\n {\n title: i18next.t('button.delete'),\n action: this._deleteCalendar.bind(this),\n ...CommonButtonStyles.delete\n }\n ],\n exportable: {\n name: i18next.t('title.calendar list'),\n data: this.exportHandler.bind(this)\n },\n importable: {\n handler: this.importHandler.bind(this)\n }\n }\n }\n\n render() {\n const mode = this.mode || (isMobileDevice() ? 'CARD' : 'GRID')\n\n return html`\n <ox-grist .mode=${mode} .config=${this.gristConfig} .fetchHandler=${this.fetchHandler.bind(this)}>\n <div slot=\"headroom\">\n <div id=\"filters\">\n <ox-filters-form autofocus></ox-filters-form>\n </div>\n\n <div id=\"sorters\">\n Sort\n <mwc-icon\n @click=${e => {\n const target = e.currentTarget\n this.sortersControl.open({\n right: 0,\n top: target.offsetTop + target.offsetHeight\n })\n }}\n >expand_more</mwc-icon\n >\n <ox-popup id=\"sorter-control\">\n <ox-sorters-control> </ox-sorters-control>\n </ox-popup>\n </div>\n\n <div id=\"modes\">\n <mwc-icon @click=${() => (this.mode = 'GRID')} ?active=${mode == 'GRID'}>grid_on</mwc-icon>\n <mwc-icon @click=${() => (this.mode = 'LIST')} ?active=${mode == 'LIST'}>format_list_bulleted</mwc-icon>\n <mwc-icon @click=${() => (this.mode = 'CARD')} ?active=${mode == 'CARD'}>apps</mwc-icon>\n </div>\n </div>\n </ox-grist>\n `\n }\n\n async pageInitialized(lifecycle: any) {\n this.gristConfig = {\n list: {\n fields: ['name', 'description'],\n details: ['active', 'updatedAt']\n },\n columns: [\n { type: 'gutter', gutterName: 'sequence' },\n { type: 'gutter', gutterName: 'row-selector', multiple: true },\n {\n type: 'string',\n name: 'name',\n header: i18next.t('field.name'),\n record: {\n editable: true\n },\n filter: 'search',\n sortable: true,\n width: 150\n },\n {\n type: 'string',\n name: 'description',\n header: i18next.t('field.description'),\n record: {\n editable: true\n },\n filter: 'search',\n width: 200\n },\n {\n type: 'checkbox',\n name: 'active',\n label: true,\n header: i18next.t('field.active'),\n record: {\n editable: true\n },\n filter: true,\n sortable: true,\n width: 60\n },\n {\n type: 'resource-object',\n name: 'updater',\n header: i18next.t('field.updater'),\n record: {\n editable: false\n },\n sortable: true,\n width: 120\n },\n {\n type: 'datetime',\n name: 'updatedAt',\n header: i18next.t('field.updated_at'),\n record: {\n editable: false\n },\n sortable: true,\n width: 180\n }\n ],\n rows: {\n selectable: {\n multiple: true\n }\n },\n sorters: [\n {\n name: 'name'\n }\n ]\n }\n }\n\n async pageUpdated(changes: any, lifecycle: any) {\n if (this.active) {\n // do something here when this page just became as active\n }\n }\n\n async fetchHandler({ page = 1, limit = 100, sortings = [], filters = [] }: FetchOption) {\n const response = await client.query({\n query: gql`\n query ($filters: [Filter!], $pagination: Pagination, $sortings: [Sorting!]) {\n responses: calendars(filters: $filters, pagination: $pagination, sortings: $sortings) {\n items {\n id\n name\n description\n active\n updater {\n id\n name\n }\n updatedAt\n }\n total\n }\n }\n `,\n variables: {\n filters,\n pagination: { page, limit },\n sortings\n }\n })\n\n return {\n total: response.data.responses.total || 0,\n records: response.data.responses.items || []\n }\n }\n\n async _deleteCalendar() {\n if (confirm(i18next.t('text.sure_to_x', { x: i18next.t('text.delete') }))) {\n const ids = this.grist.selected.map(record => record.id)\n if (ids && ids.length > 0) {\n const response = await client.mutate({\n mutation: gql`\n mutation ($ids: [String!]!) {\n deleteCalendars(ids: $ids)\n }\n `,\n variables: {\n ids\n }\n })\n\n if (!response.errors) {\n this.grist.fetch()\n notify({\n message: i18next.t('text.info_x_successfully', { x: i18next.t('text.delete') })\n })\n }\n }\n }\n }\n\n async _updateCalendar() {\n let patches = this.grist.dirtyRecords\n if (patches && patches.length) {\n patches = patches.map(patch => {\n let patchField: any = patch.id ? { id: patch.id } : {}\n const dirtyFields = patch.__dirtyfields__\n for (let key in dirtyFields) {\n patchField[key] = dirtyFields[key].after\n }\n patchField.cuFlag = patch.__dirty__\n\n return patchField\n })\n\n const response = await client.mutate({\n mutation: gql`\n mutation ($patches: [CalendarPatch!]!) {\n updateMultipleCalendar(patches: $patches) {\n name\n }\n }\n `,\n variables: {\n patches\n }\n })\n\n if (!response.errors) {\n this.grist.fetch()\n }\n }\n }\n\n async exportHandler() {\n const exportTargets = this.grist.selected.length ? this.grist.selected : this.grist.dirtyData.records\n const targetFieldSet = new Set(['id', 'name', 'description', 'active'])\n\n return exportTargets.map(calendar => {\n let tempObj = {}\n for (const field of targetFieldSet) {\n tempObj[field] = calendar[field]\n }\n\n return tempObj\n })\n }\n\n async importHandler(records) {\n const popup = openPopup(\n html`\n <calendar-importer\n .calendars=${records}\n @imported=${() => {\n history.back()\n this.grist.fetch()\n }}\n ></calendar-importer>\n `,\n {\n backdrop: true,\n size: 'large',\n title: i18next.t('title.import calendar')\n }\n )\n\n popup.onclosed = () => {\n this.grist.fetch()\n }\n }\n}\n"]}
|
|
@@ -8,10 +8,10 @@ declare const EventListPage_base: (new (...args: any[]) => {
|
|
|
8
8
|
disconnectedCallback(): void;
|
|
9
9
|
stateChanged(_state: unknown): void;
|
|
10
10
|
readonly isConnected: boolean;
|
|
11
|
-
}) & (new (...args: any[]) => import("lit").LitElement) & typeof PageView & import("@open-wc/scoped-elements/
|
|
11
|
+
}) & (new (...args: any[]) => import("lit").LitElement) & typeof PageView & import("@open-wc/dedupe-mixin").Constructor<import("@open-wc/scoped-elements/types/src/types").ScopedElementsHost>;
|
|
12
12
|
export declare class EventListPage extends EventListPage_base {
|
|
13
13
|
static styles: import("lit").CSSResult[];
|
|
14
|
-
static scopedElements: {
|
|
14
|
+
static get scopedElements(): {
|
|
15
15
|
'event-importer': typeof EventImporter;
|
|
16
16
|
};
|
|
17
17
|
gristConfig: any;
|
|
@@ -4,7 +4,7 @@ import { CommonButtonStyles, CommonGristStyles, ScrollbarStyles } from '@operato
|
|
|
4
4
|
import { PageView, store } from '@operato/shell';
|
|
5
5
|
import { css, html } from 'lit';
|
|
6
6
|
import { customElement, property, query } from 'lit/decorators.js';
|
|
7
|
-
import { ScopedElementsMixin } from '@open-wc/scoped-elements
|
|
7
|
+
import { ScopedElementsMixin } from '@open-wc/scoped-elements';
|
|
8
8
|
import { DataGrist } from '@operato/data-grist';
|
|
9
9
|
import { client } from '@operato/graphql';
|
|
10
10
|
import { i18next, localize } from '@operato/i18n';
|
|
@@ -19,6 +19,11 @@ let EventListPage = class EventListPage extends connect(store)(localize(i18next)
|
|
|
19
19
|
super(...arguments);
|
|
20
20
|
this.mode = isMobileDevice() ? 'CARD' : 'GRID';
|
|
21
21
|
}
|
|
22
|
+
static get scopedElements() {
|
|
23
|
+
return {
|
|
24
|
+
'event-importer': EventImporter
|
|
25
|
+
};
|
|
26
|
+
}
|
|
22
27
|
get context() {
|
|
23
28
|
var _a;
|
|
24
29
|
return {
|
|
@@ -296,9 +301,6 @@ EventListPage.styles = [
|
|
|
296
301
|
}
|
|
297
302
|
`
|
|
298
303
|
];
|
|
299
|
-
EventListPage.scopedElements = {
|
|
300
|
-
'event-importer': EventImporter
|
|
301
|
-
};
|
|
302
304
|
__decorate([
|
|
303
305
|
property({ type: Object }),
|
|
304
306
|
__metadata("design:type", Object)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"event-list-page.js","sourceRoot":"","sources":["../../../client/pages/event/event-list-page.ts"],"names":[],"mappings":";AAAA,OAAO,qBAAqB,CAAA;AAE5B,OAAO,EAAE,kBAAkB,EAAE,iBAAiB,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAA;AACxF,OAAO,EAAE,QAAQ,EAAE,KAAK,EAAE,MAAM,gBAAgB,CAAA;AAChD,OAAO,EAAE,GAAG,EAAE,IAAI,EAAE,MAAM,KAAK,CAAA;AAC/B,OAAO,EAAE,aAAa,EAAE,QAAQ,EAAE,KAAK,EAAE,MAAM,mBAAmB,CAAA;AAClE,OAAO,EAAE,mBAAmB,EAAE,MAAM,yCAAyC,CAAA;AAC7E,OAAO,EAAgB,SAAS,EAA+B,MAAM,qBAAqB,CAAA;AAC1F,OAAO,EAAE,MAAM,EAAE,MAAM,kBAAkB,CAAA;AACzC,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAA;AACjD,OAAO,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAA;AACnD,OAAO,EAAE,OAAO,EAAE,MAAM,gBAAgB,CAAA;AACxC,OAAO,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAA;AAE/C,OAAO,EAAE,OAAO,EAAE,MAAM,2BAA2B,CAAA;AACnD,OAAO,GAAG,MAAM,aAAa,CAAA;AAE7B,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAA;AAGzC,IAAM,aAAa,GAAnB,MAAM,aAAc,SAAQ,OAAO,CAAC,KAAK,CAAC,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAC,mBAAmB,CAAC,QAAQ,CAAC,CAAC,CAAC;IAA5F;;QA0BuB,SAAI,GAA6B,cAAc,EAAE,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,CAAA;IAiSjG,CAAC;IA5RC,IAAI,OAAO;;QACT,OAAO;YACL,KAAK,EAAE,OAAO,CAAC,CAAC,CAAC,kBAAkB,CAAC;YACpC,MAAM,EAAE;gBACN,OAAO,EAAE,CAAC,MAAc,EAAE,EAAE;oBAC1B,IAAI,CAAC,KAAK,CAAC,UAAU,GAAG,MAAM,CAAA;gBAChC,CAAC;gBACD,KAAK,EAAE,CAAA,MAAA,IAAI,CAAC,KAAK,0CAAE,UAAU,KAAI,EAAE;gBACnC,SAAS,EAAE,IAAI;aAChB;YACD,MAAM,EAAE;gBACN,OAAO,EAAE,GAAG,EAAE;oBACZ,IAAI,CAAC,KAAK,CAAC,cAAc,EAAE,CAAA;gBAC7B,CAAC;aACF;YACD,IAAI,EAAE,gBAAgB;YACtB,OAAO,EAAE;gCAEL,KAAK,EAAE,OAAO,CAAC,CAAC,CAAC,aAAa,CAAC,EAC/B,MAAM,EAAE,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,IACjC,kBAAkB,CAAC,IAAI;gCAG1B,KAAK,EAAE,OAAO,CAAC,CAAC,CAAC,eAAe,CAAC,EACjC,MAAM,EAAE,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,IACjC,kBAAkB,CAAC,MAAM;aAE/B;YACD,UAAU,EAAE;gBACV,IAAI,EAAE,OAAO,CAAC,CAAC,CAAC,kBAAkB,CAAC;gBACnC,IAAI,EAAE,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC;aACpC;YACD,UAAU,EAAE;gBACV,OAAO,EAAE,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC;aACvC;SACF,CAAA;IACH,CAAC;IAED,MAAM;QACJ,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,IAAI,CAAC,cAAc,EAAE,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,CAAA;QAE9D,OAAO,IAAI,CAAA;wBACS,IAAI,YAAY,IAAI,CAAC,WAAW,kBAAkB,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC;;;;;;;;;uBAS/E,CAAC,CAAC,EAAE;YACX,MAAM,MAAM,GAAG,CAAC,CAAC,aAAa,CAAA;YAC9B,IAAI,CAAC,cAAc,CAAC,IAAI,CAAC;gBACvB,KAAK,EAAE,CAAC;gBACR,GAAG,EAAE,MAAM,CAAC,SAAS,GAAG,MAAM,CAAC,YAAY;aAC5C,CAAC,CAAA;QACJ,CAAC;;;;;;;;;+BASgB,GAAG,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,GAAG,MAAM,CAAC,YAAY,IAAI,IAAI,MAAM;+BACpD,GAAG,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,GAAG,MAAM,CAAC,YAAY,IAAI,IAAI,MAAM;+BACpD,GAAG,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,GAAG,MAAM,CAAC,YAAY,IAAI,IAAI,MAAM;;;;KAI9E,CAAA;IACH,CAAC;IAED,KAAK,CAAC,eAAe,CAAC,SAAc;QAClC,IAAI,CAAC,WAAW,GAAG;YACjB,IAAI,EAAE;gBACJ,MAAM,EAAE,CAAC,MAAM,EAAE,aAAa,CAAC;gBAC/B,OAAO,EAAE,CAAC,QAAQ,EAAE,WAAW,CAAC;aACjC;YACD,OAAO,EAAE;gBACP,EAAE,IAAI,EAAE,QAAQ,EAAE,UAAU,EAAE,UAAU,EAAE;gBAC1C,EAAE,IAAI,EAAE,QAAQ,EAAE,UAAU,EAAE,cAAc,EAAE,QAAQ,EAAE,IAAI,EAAE;gBAC9D;oBACE,IAAI,EAAE,QAAQ;oBACd,IAAI,EAAE,MAAM;oBACZ,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,YAAY,CAAC;oBAC/B,MAAM,EAAE;wBACN,QAAQ,EAAE,IAAI;qBACf;oBACD,MAAM,EAAE,QAAQ;oBAChB,QAAQ,EAAE,IAAI;oBACd,KAAK,EAAE,GAAG;iBACX;gBACD;oBACE,IAAI,EAAE,QAAQ;oBACd,IAAI,EAAE,aAAa;oBACnB,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,mBAAmB,CAAC;oBACtC,MAAM,EAAE;wBACN,QAAQ,EAAE,IAAI;qBACf;oBACD,MAAM,EAAE,QAAQ;oBAChB,KAAK,EAAE,GAAG;iBACX;gBACD;oBACE,IAAI,EAAE,UAAU;oBAChB,IAAI,EAAE,QAAQ;oBACd,KAAK,EAAE,IAAI;oBACX,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,cAAc,CAAC;oBACjC,MAAM,EAAE;wBACN,QAAQ,EAAE,IAAI;qBACf;oBACD,MAAM,EAAE,IAAI;oBACZ,QAAQ,EAAE,IAAI;oBACd,KAAK,EAAE,EAAE;iBACV;gBACD;oBACE,IAAI,EAAE,iBAAiB;oBACvB,IAAI,EAAE,SAAS;oBACf,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,eAAe,CAAC;oBAClC,MAAM,EAAE;wBACN,QAAQ,EAAE,KAAK;qBAChB;oBACD,QAAQ,EAAE,IAAI;oBACd,KAAK,EAAE,GAAG;iBACX;gBACD;oBACE,IAAI,EAAE,UAAU;oBAChB,IAAI,EAAE,WAAW;oBACjB,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,kBAAkB,CAAC;oBACrC,MAAM,EAAE;wBACN,QAAQ,EAAE,KAAK;qBAChB;oBACD,QAAQ,EAAE,IAAI;oBACd,KAAK,EAAE,GAAG;iBACX;aACF;YACD,IAAI,EAAE;gBACJ,UAAU,EAAE;oBACV,QAAQ,EAAE,IAAI;iBACf;aACF;YACD,OAAO,EAAE;gBACP;oBACE,IAAI,EAAE,MAAM;iBACb;aACF;SACF,CAAA;IACH,CAAC;IAED,KAAK,CAAC,WAAW,CAAC,OAAY,EAAE,SAAc;QAC5C,IAAI,IAAI,CAAC,MAAM,EAAE;YACf,yDAAyD;SAC1D;IACH,CAAC;IAED,KAAK,CAAC,YAAY,CAAC,EAAE,IAAI,GAAG,CAAC,EAAE,KAAK,GAAG,GAAG,EAAE,QAAQ,GAAG,EAAE,EAAE,OAAO,GAAG,EAAE,EAAe;QACpF,MAAM,QAAQ,GAAG,MAAM,MAAM,CAAC,KAAK,CAAC;YAClC,KAAK,EAAE,GAAG,CAAA;;;;;;;;;;;;;;;;;OAiBT;YACD,SAAS,EAAE;gBACT,OAAO;gBACP,UAAU,EAAE,EAAE,IAAI,EAAE,KAAK,EAAE;gBAC3B,QAAQ;aACT;SACF,CAAC,CAAA;QAEF,OAAO;YACL,KAAK,EAAE,QAAQ,CAAC,IAAI,CAAC,SAAS,CAAC,KAAK,IAAI,CAAC;YACzC,OAAO,EAAE,QAAQ,CAAC,IAAI,CAAC,SAAS,CAAC,KAAK,IAAI,EAAE;SAC7C,CAAA;IACH,CAAC;IAED,KAAK,CAAC,YAAY;QAChB,IAAI,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,gBAAgB,EAAE,EAAE,CAAC,EAAE,OAAO,CAAC,CAAC,CAAC,aAAa,CAAC,EAAE,CAAC,CAAC,EAAE;YACzE,MAAM,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,MAAM,CAAC,EAAE,CAAC,CAAA;YACxD,IAAI,GAAG,IAAI,GAAG,CAAC,MAAM,GAAG,CAAC,EAAE;gBACzB,MAAM,QAAQ,GAAG,MAAM,MAAM,CAAC,MAAM,CAAC;oBACnC,QAAQ,EAAE,GAAG,CAAA;;;;WAIZ;oBACD,SAAS,EAAE;wBACT,GAAG;qBACJ;iBACF,CAAC,CAAA;gBAEF,IAAI,CAAC,QAAQ,CAAC,MAAM,EAAE;oBACpB,IAAI,CAAC,KAAK,CAAC,KAAK,EAAE,CAAA;oBAClB,MAAM,CAAC;wBACL,OAAO,EAAE,OAAO,CAAC,CAAC,CAAC,0BAA0B,EAAE,EAAE,CAAC,EAAE,OAAO,CAAC,CAAC,CAAC,aAAa,CAAC,EAAE,CAAC;qBAChF,CAAC,CAAA;iBACH;aACF;SACF;IACH,CAAC;IAED,KAAK,CAAC,YAAY;QAChB,IAAI,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC,YAAY,CAAA;QACrC,IAAI,OAAO,IAAI,OAAO,CAAC,MAAM,EAAE;YAC7B,OAAO,GAAG,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,EAAE;gBAC5B,IAAI,UAAU,GAAQ,KAAK,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,EAAE,EAAE,KAAK,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,CAAA;gBACtD,MAAM,WAAW,GAAG,KAAK,CAAC,eAAe,CAAA;gBACzC,KAAK,IAAI,GAAG,IAAI,WAAW,EAAE;oBAC3B,UAAU,CAAC,GAAG,CAAC,GAAG,WAAW,CAAC,GAAG,CAAC,CAAC,KAAK,CAAA;iBACzC;gBACD,UAAU,CAAC,MAAM,GAAG,KAAK,CAAC,SAAS,CAAA;gBAEnC,OAAO,UAAU,CAAA;YACnB,CAAC,CAAC,CAAA;YAEF,MAAM,QAAQ,GAAG,MAAM,MAAM,CAAC,MAAM,CAAC;gBACnC,QAAQ,EAAE,GAAG,CAAA;;;;;;SAMZ;gBACD,SAAS,EAAE;oBACT,OAAO;iBACR;aACF,CAAC,CAAA;YAEF,IAAI,CAAC,QAAQ,CAAC,MAAM,EAAE;gBACpB,IAAI,CAAC,KAAK,CAAC,KAAK,EAAE,CAAA;aACnB;SACF;IACH,CAAC;IAED,KAAK,CAAC,aAAa;QACjB,MAAM,aAAa,GAAG,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,SAAS,CAAC,OAAO,CAAA;QACrG,MAAM,cAAc,GAAG,IAAI,GAAG,CAAC,CAAC,IAAI,EAAE,MAAM,EAAE,aAAa,EAAE,QAAQ,CAAC,CAAC,CAAA;QAEvE,OAAO,aAAa,CAAC,GAAG,CAAC,KAAK,CAAC,EAAE;YAC/B,IAAI,OAAO,GAAG,EAAE,CAAA;YAChB,KAAK,MAAM,KAAK,IAAI,cAAc,EAAE;gBAClC,OAAO,CAAC,KAAK,CAAC,GAAG,KAAK,CAAC,KAAK,CAAC,CAAA;aAC9B;YAED,OAAO,OAAO,CAAA;QAChB,CAAC,CAAC,CAAA;IACJ,CAAC;IAED,KAAK,CAAC,aAAa,CAAC,OAAO;QACzB,MAAM,KAAK,GAAG,SAAS,CACrB,IAAI,CAAA;;oBAEU,OAAO;sBACL,GAAG,EAAE;YACf,OAAO,CAAC,IAAI,EAAE,CAAA;YACd,IAAI,CAAC,KAAK,CAAC,KAAK,EAAE,CAAA;QACpB,CAAC;;OAEJ,EACD;YACE,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,OAAO;YACb,KAAK,EAAE,OAAO,CAAC,CAAC,CAAC,oBAAoB,CAAC;SACvC,CACF,CAAA;QAED,KAAK,CAAC,QAAQ,GAAG,GAAG,EAAE;YACpB,IAAI,CAAC,KAAK,CAAC,KAAK,EAAE,CAAA;QACpB,CAAC,CAAA;IACH,CAAC;;AAzTM,oBAAM,GAAG;IACd,eAAe;IACf,iBAAiB;IACjB,GAAG,CAAA;;;;;;;;;;;;;;KAcF;CACF,CAAA;AAEM,4BAAc,GAAG;IACtB,gBAAgB,EAAE,aAAa;CAChC,CAAA;AAED;IAAC,QAAQ,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;kDAAiB;AAC5C;IAAC,QAAQ,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;2CAAoE;AAE/F;IAAC,KAAK,CAAC,UAAU,CAAC;8BAAiB,SAAS;4CAAA;AAC5C;IAAC,KAAK,CAAC,iBAAiB,CAAC;8BAA0B,OAAO;qDAAA;AA7B/C,aAAa;IADzB,aAAa,CAAC,iBAAiB,CAAC;GACpB,aAAa,CA2TzB;SA3TY,aAAa","sourcesContent":["import '@operato/data-grist'\n\nimport { CommonButtonStyles, CommonGristStyles, ScrollbarStyles } from '@operato/styles'\nimport { PageView, store } from '@operato/shell'\nimport { css, html } from 'lit'\nimport { customElement, property, query } from 'lit/decorators.js'\nimport { ScopedElementsMixin } from '@open-wc/scoped-elements/lit-element.js'\nimport { ColumnConfig, DataGrist, FetchOption, SortersControl } from '@operato/data-grist'\nimport { client } from '@operato/graphql'\nimport { i18next, localize } from '@operato/i18n'\nimport { notify, openPopup } from '@operato/layout'\nimport { OxPopup } from '@operato/popup'\nimport { isMobileDevice } from '@operato/utils'\n\nimport { connect } from 'pwa-helpers/connect-mixin'\nimport gql from 'graphql-tag'\n\nimport { EventImporter } from './event-importer'\n\n@customElement('event-list-page')\nexport class EventListPage extends connect(store)(localize(i18next)(ScopedElementsMixin(PageView))) {\n static styles = [\n ScrollbarStyles,\n CommonGristStyles,\n css`\n :host {\n display: flex;\n\n width: 100%;\n\n --grid-record-emphasized-background-color: #8b0000;\n --grid-record-emphasized-color: #ff6b6b;\n }\n\n ox-grist {\n overflow-y: auto;\n flex: 1;\n }\n `\n ]\n\n static scopedElements = {\n 'event-importer': EventImporter\n }\n\n @property({ type: Object }) gristConfig: any\n @property({ type: String }) mode: 'CARD' | 'GRID' | 'LIST' = isMobileDevice() ? 'CARD' : 'GRID'\n\n @query('ox-grist') private grist!: DataGrist\n @query('#sorter-control') private sortersControl!: OxPopup\n\n get context() {\n return {\n title: i18next.t('title.event list'),\n search: {\n handler: (search: string) => {\n this.grist.searchText = search\n },\n value: this.grist?.searchText || '',\n autofocus: true\n },\n filter: {\n handler: () => {\n this.grist.toggleHeadroom()\n }\n },\n help: 'calendar/event',\n actions: [\n {\n title: i18next.t('button.save'),\n action: this._updateEvent.bind(this),\n ...CommonButtonStyles.save\n },\n {\n title: i18next.t('button.delete'),\n action: this._deleteEvent.bind(this),\n ...CommonButtonStyles.delete\n }\n ],\n exportable: {\n name: i18next.t('title.event list'),\n data: this.exportHandler.bind(this)\n },\n importable: {\n handler: this.importHandler.bind(this)\n }\n }\n }\n\n render() {\n const mode = this.mode || (isMobileDevice() ? 'CARD' : 'GRID')\n\n return html`\n <ox-grist .mode=${mode} .config=${this.gristConfig} .fetchHandler=${this.fetchHandler.bind(this)}>\n <div slot=\"headroom\">\n <div id=\"filters\">\n <ox-filters-form autofocus></ox-filters-form>\n </div>\n\n <div id=\"sorters\">\n Sort\n <mwc-icon\n @click=${e => {\n const target = e.currentTarget\n this.sortersControl.open({\n right: 0,\n top: target.offsetTop + target.offsetHeight\n })\n }}\n >expand_more</mwc-icon\n >\n <ox-popup id=\"sorter-control\">\n <ox-sorters-control> </ox-sorters-control>\n </ox-popup>\n </div>\n\n <div id=\"modes\">\n <mwc-icon @click=${() => (this.mode = 'GRID')} ?active=${mode == 'GRID'}>grid_on</mwc-icon>\n <mwc-icon @click=${() => (this.mode = 'LIST')} ?active=${mode == 'LIST'}>format_list_bulleted</mwc-icon>\n <mwc-icon @click=${() => (this.mode = 'CARD')} ?active=${mode == 'CARD'}>apps</mwc-icon>\n </div>\n </div>\n </ox-grist>\n `\n }\n\n async pageInitialized(lifecycle: any) {\n this.gristConfig = {\n list: {\n fields: ['name', 'description'],\n details: ['active', 'updatedAt']\n },\n columns: [\n { type: 'gutter', gutterName: 'sequence' },\n { type: 'gutter', gutterName: 'row-selector', multiple: true },\n {\n type: 'string',\n name: 'name',\n header: i18next.t('field.name'),\n record: {\n editable: true\n },\n filter: 'search',\n sortable: true,\n width: 150\n },\n {\n type: 'string',\n name: 'description',\n header: i18next.t('field.description'),\n record: {\n editable: true\n },\n filter: 'search',\n width: 200\n },\n {\n type: 'checkbox',\n name: 'active',\n label: true,\n header: i18next.t('field.active'),\n record: {\n editable: true\n },\n filter: true,\n sortable: true,\n width: 60\n },\n {\n type: 'resource-object',\n name: 'updater',\n header: i18next.t('field.updater'),\n record: {\n editable: false\n },\n sortable: true,\n width: 120\n },\n {\n type: 'datetime',\n name: 'updatedAt',\n header: i18next.t('field.updated_at'),\n record: {\n editable: false\n },\n sortable: true,\n width: 180\n }\n ],\n rows: {\n selectable: {\n multiple: true\n }\n },\n sorters: [\n {\n name: 'name'\n }\n ]\n }\n }\n\n async pageUpdated(changes: any, lifecycle: any) {\n if (this.active) {\n // do something here when this page just became as active\n }\n }\n\n async fetchHandler({ page = 1, limit = 100, sortings = [], filters = [] }: FetchOption) {\n const response = await client.query({\n query: gql`\n query ($filters: [Filter!], $pagination: Pagination, $sortings: [Sorting!]) {\n responses: events(filters: $filters, pagination: $pagination, sortings: $sortings) {\n items {\n id\n name\n description\n active\n updater {\n id\n name\n }\n updatedAt\n }\n total\n }\n }\n `,\n variables: {\n filters,\n pagination: { page, limit },\n sortings\n }\n })\n\n return {\n total: response.data.responses.total || 0,\n records: response.data.responses.items || []\n }\n }\n\n async _deleteEvent() {\n if (confirm(i18next.t('text.sure_to_x', { x: i18next.t('text.delete') }))) {\n const ids = this.grist.selected.map(record => record.id)\n if (ids && ids.length > 0) {\n const response = await client.mutate({\n mutation: gql`\n mutation ($ids: [String!]!) {\n deleteEvents(ids: $ids)\n }\n `,\n variables: {\n ids\n }\n })\n\n if (!response.errors) {\n this.grist.fetch()\n notify({\n message: i18next.t('text.info_x_successfully', { x: i18next.t('text.delete') })\n })\n }\n }\n }\n }\n\n async _updateEvent() {\n let patches = this.grist.dirtyRecords\n if (patches && patches.length) {\n patches = patches.map(patch => {\n let patchField: any = patch.id ? { id: patch.id } : {}\n const dirtyFields = patch.__dirtyfields__\n for (let key in dirtyFields) {\n patchField[key] = dirtyFields[key].after\n }\n patchField.cuFlag = patch.__dirty__\n\n return patchField\n })\n\n const response = await client.mutate({\n mutation: gql`\n mutation ($patches: [EventPatch!]!) {\n updateMultipleEvent(patches: $patches) {\n name\n }\n }\n `,\n variables: {\n patches\n }\n })\n\n if (!response.errors) {\n this.grist.fetch()\n }\n }\n }\n\n async exportHandler() {\n const exportTargets = this.grist.selected.length ? this.grist.selected : this.grist.dirtyData.records\n const targetFieldSet = new Set(['id', 'name', 'description', 'active'])\n\n return exportTargets.map(event => {\n let tempObj = {}\n for (const field of targetFieldSet) {\n tempObj[field] = event[field]\n }\n\n return tempObj\n })\n }\n\n async importHandler(records) {\n const popup = openPopup(\n html`\n <event-importer\n .events=${records}\n @imported=${() => {\n history.back()\n this.grist.fetch()\n }}\n ></event-importer>\n `,\n {\n backdrop: true,\n size: 'large',\n title: i18next.t('title.import event')\n }\n )\n\n popup.onclosed = () => {\n this.grist.fetch()\n }\n }\n}\n"]}
|
|
1
|
+
{"version":3,"file":"event-list-page.js","sourceRoot":"","sources":["../../../client/pages/event/event-list-page.ts"],"names":[],"mappings":"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","sourcesContent":["import '@operato/data-grist'\n\nimport { CommonButtonStyles, CommonGristStyles, ScrollbarStyles } from '@operato/styles'\nimport { PageView, store } from '@operato/shell'\nimport { css, html } from 'lit'\nimport { customElement, property, query } from 'lit/decorators.js'\nimport { ScopedElementsMixin } from '@open-wc/scoped-elements'\nimport { ColumnConfig, DataGrist, FetchOption, SortersControl } from '@operato/data-grist'\nimport { client } from '@operato/graphql'\nimport { i18next, localize } from '@operato/i18n'\nimport { notify, openPopup } from '@operato/layout'\nimport { OxPopup } from '@operato/popup'\nimport { isMobileDevice } from '@operato/utils'\n\nimport { connect } from 'pwa-helpers/connect-mixin'\nimport gql from 'graphql-tag'\n\nimport { EventImporter } from './event-importer'\n\n@customElement('event-list-page')\nexport class EventListPage extends connect(store)(localize(i18next)(ScopedElementsMixin(PageView))) {\n static styles = [\n ScrollbarStyles,\n CommonGristStyles,\n css`\n :host {\n display: flex;\n\n width: 100%;\n\n --grid-record-emphasized-background-color: #8b0000;\n --grid-record-emphasized-color: #ff6b6b;\n }\n\n ox-grist {\n overflow-y: auto;\n flex: 1;\n }\n `\n ]\n\n static get scopedElements() {\n return {\n 'event-importer': EventImporter\n }\n }\n\n @property({ type: Object }) gristConfig: any\n @property({ type: String }) mode: 'CARD' | 'GRID' | 'LIST' = isMobileDevice() ? 'CARD' : 'GRID'\n\n @query('ox-grist') private grist!: DataGrist\n @query('#sorter-control') private sortersControl!: OxPopup\n\n get context() {\n return {\n title: i18next.t('title.event list'),\n search: {\n handler: (search: string) => {\n this.grist.searchText = search\n },\n value: this.grist?.searchText || '',\n autofocus: true\n },\n filter: {\n handler: () => {\n this.grist.toggleHeadroom()\n }\n },\n help: 'calendar/event',\n actions: [\n {\n title: i18next.t('button.save'),\n action: this._updateEvent.bind(this),\n ...CommonButtonStyles.save\n },\n {\n title: i18next.t('button.delete'),\n action: this._deleteEvent.bind(this),\n ...CommonButtonStyles.delete\n }\n ],\n exportable: {\n name: i18next.t('title.event list'),\n data: this.exportHandler.bind(this)\n },\n importable: {\n handler: this.importHandler.bind(this)\n }\n }\n }\n\n render() {\n const mode = this.mode || (isMobileDevice() ? 'CARD' : 'GRID')\n\n return html`\n <ox-grist .mode=${mode} .config=${this.gristConfig} .fetchHandler=${this.fetchHandler.bind(this)}>\n <div slot=\"headroom\">\n <div id=\"filters\">\n <ox-filters-form autofocus></ox-filters-form>\n </div>\n\n <div id=\"sorters\">\n Sort\n <mwc-icon\n @click=${e => {\n const target = e.currentTarget\n this.sortersControl.open({\n right: 0,\n top: target.offsetTop + target.offsetHeight\n })\n }}\n >expand_more</mwc-icon\n >\n <ox-popup id=\"sorter-control\">\n <ox-sorters-control> </ox-sorters-control>\n </ox-popup>\n </div>\n\n <div id=\"modes\">\n <mwc-icon @click=${() => (this.mode = 'GRID')} ?active=${mode == 'GRID'}>grid_on</mwc-icon>\n <mwc-icon @click=${() => (this.mode = 'LIST')} ?active=${mode == 'LIST'}>format_list_bulleted</mwc-icon>\n <mwc-icon @click=${() => (this.mode = 'CARD')} ?active=${mode == 'CARD'}>apps</mwc-icon>\n </div>\n </div>\n </ox-grist>\n `\n }\n\n async pageInitialized(lifecycle: any) {\n this.gristConfig = {\n list: {\n fields: ['name', 'description'],\n details: ['active', 'updatedAt']\n },\n columns: [\n { type: 'gutter', gutterName: 'sequence' },\n { type: 'gutter', gutterName: 'row-selector', multiple: true },\n {\n type: 'string',\n name: 'name',\n header: i18next.t('field.name'),\n record: {\n editable: true\n },\n filter: 'search',\n sortable: true,\n width: 150\n },\n {\n type: 'string',\n name: 'description',\n header: i18next.t('field.description'),\n record: {\n editable: true\n },\n filter: 'search',\n width: 200\n },\n {\n type: 'checkbox',\n name: 'active',\n label: true,\n header: i18next.t('field.active'),\n record: {\n editable: true\n },\n filter: true,\n sortable: true,\n width: 60\n },\n {\n type: 'resource-object',\n name: 'updater',\n header: i18next.t('field.updater'),\n record: {\n editable: false\n },\n sortable: true,\n width: 120\n },\n {\n type: 'datetime',\n name: 'updatedAt',\n header: i18next.t('field.updated_at'),\n record: {\n editable: false\n },\n sortable: true,\n width: 180\n }\n ],\n rows: {\n selectable: {\n multiple: true\n }\n },\n sorters: [\n {\n name: 'name'\n }\n ]\n }\n }\n\n async pageUpdated(changes: any, lifecycle: any) {\n if (this.active) {\n // do something here when this page just became as active\n }\n }\n\n async fetchHandler({ page = 1, limit = 100, sortings = [], filters = [] }: FetchOption) {\n const response = await client.query({\n query: gql`\n query ($filters: [Filter!], $pagination: Pagination, $sortings: [Sorting!]) {\n responses: events(filters: $filters, pagination: $pagination, sortings: $sortings) {\n items {\n id\n name\n description\n active\n updater {\n id\n name\n }\n updatedAt\n }\n total\n }\n }\n `,\n variables: {\n filters,\n pagination: { page, limit },\n sortings\n }\n })\n\n return {\n total: response.data.responses.total || 0,\n records: response.data.responses.items || []\n }\n }\n\n async _deleteEvent() {\n if (confirm(i18next.t('text.sure_to_x', { x: i18next.t('text.delete') }))) {\n const ids = this.grist.selected.map(record => record.id)\n if (ids && ids.length > 0) {\n const response = await client.mutate({\n mutation: gql`\n mutation ($ids: [String!]!) {\n deleteEvents(ids: $ids)\n }\n `,\n variables: {\n ids\n }\n })\n\n if (!response.errors) {\n this.grist.fetch()\n notify({\n message: i18next.t('text.info_x_successfully', { x: i18next.t('text.delete') })\n })\n }\n }\n }\n }\n\n async _updateEvent() {\n let patches = this.grist.dirtyRecords\n if (patches && patches.length) {\n patches = patches.map(patch => {\n let patchField: any = patch.id ? { id: patch.id } : {}\n const dirtyFields = patch.__dirtyfields__\n for (let key in dirtyFields) {\n patchField[key] = dirtyFields[key].after\n }\n patchField.cuFlag = patch.__dirty__\n\n return patchField\n })\n\n const response = await client.mutate({\n mutation: gql`\n mutation ($patches: [EventPatch!]!) {\n updateMultipleEvent(patches: $patches) {\n name\n }\n }\n `,\n variables: {\n patches\n }\n })\n\n if (!response.errors) {\n this.grist.fetch()\n }\n }\n }\n\n async exportHandler() {\n const exportTargets = this.grist.selected.length ? this.grist.selected : this.grist.dirtyData.records\n const targetFieldSet = new Set(['id', 'name', 'description', 'active'])\n\n return exportTargets.map(event => {\n let tempObj = {}\n for (const field of targetFieldSet) {\n tempObj[field] = event[field]\n }\n\n return tempObj\n })\n }\n\n async importHandler(records) {\n const popup = openPopup(\n html`\n <event-importer\n .events=${records}\n @imported=${() => {\n history.back()\n this.grist.fetch()\n }}\n ></event-importer>\n `,\n {\n backdrop: true,\n size: 'large',\n title: i18next.t('title.import event')\n }\n )\n\n popup.onclosed = () => {\n this.grist.fetch()\n }\n }\n}\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../../node_modules/lerna/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/tslib/tslib.d.ts","../client/bootstrap.ts","../client/index.ts","../../../node_modules/lit/node_modules/@lit/reactive-element/css-tag.d.ts","../../../node_modules/lit/node_modules/@lit/reactive-element/reactive-controller.d.ts","../../../node_modules/lit/node_modules/@lit/reactive-element/reactive-element.d.ts","../../../node_modules/@types/trusted-types/lib/index.d.ts","../../../node_modules/@types/trusted-types/index.d.ts","../../../node_modules/lit/node_modules/lit-html/directive.d.ts","../../../node_modules/lit/node_modules/lit-html/lit-html.d.ts","../../../node_modules/lit-element/node_modules/@lit/reactive-element/reactive-element.d.ts","../../../node_modules/lit-element/node_modules/lit-html/lit-html.d.ts","../../../node_modules/lit-element/lit-element.d.ts","../../../node_modules/lit/node_modules/lit-html/is-server.d.ts","../../../node_modules/lit/index.d.ts","../../../node_modules/lit-html/directive.d.ts","../../../node_modules/lit-html/lit-html.d.ts","../../../node_modules/@material/web/icon/internal/icon.d.ts","../../../node_modules/@material/web/icon/icon.d.ts","../../../node_modules/@material/web/internal/controller/attachable-controller.d.ts","../../../node_modules/@material/web/focus/internal/focus-ring.d.ts","../../../node_modules/@material/web/focus/md-focus-ring.d.ts","../../../node_modules/@material/web/ripple/internal/ripple.d.ts","../../../node_modules/@material/web/ripple/ripple.d.ts","../../../node_modules/@material/web/labs/behaviors/mixin.d.ts","../../../node_modules/@material/web/labs/behaviors/element-internals.d.ts","../../../node_modules/@material/web/internal/controller/form-submitter.d.ts","../../../node_modules/@material/web/button/internal/button.d.ts","../../../node_modules/@material/web/button/internal/text-button.d.ts","../../../node_modules/@material/web/button/text-button.d.ts","../../../node_modules/dayjs/esm/locale/types.d.ts","../../../node_modules/dayjs/esm/locale/index.d.ts","../../../node_modules/dayjs/esm/index.d.ts","../../../node_modules/@operato/event-view/dist/src/types.d.ts","../../../node_modules/@operato/event-view/dist/src/calendar-monthly.d.ts","../../../node_modules/@operato/event-view/dist/src/calendar-weekly.d.ts","../../../node_modules/@operato/event-view/dist/src/ox-event-view.d.ts","../../../node_modules/lit/node_modules/@lit/reactive-element/decorators/base.d.ts","../../../node_modules/lit/node_modules/@lit/reactive-element/decorators/custom-element.d.ts","../../../node_modules/lit/node_modules/@lit/reactive-element/decorators/property.d.ts","../../../node_modules/lit/node_modules/@lit/reactive-element/decorators/state.d.ts","../../../node_modules/lit/node_modules/@lit/reactive-element/decorators/event-options.d.ts","../../../node_modules/lit/node_modules/@lit/reactive-element/decorators/query.d.ts","../../../node_modules/lit/node_modules/@lit/reactive-element/decorators/query-all.d.ts","../../../node_modules/lit/node_modules/@lit/reactive-element/decorators/query-async.d.ts","../../../node_modules/lit/node_modules/@lit/reactive-element/decorators/query-assigned-nodes.d.ts","../../../node_modules/lit/node_modules/@lit/reactive-element/decorators/query-assigned-elements.d.ts","../../../node_modules/lit/decorators.d.ts","../../../node_modules/redux/index.d.ts","../../../node_modules/pwa-helpers/connect-mixin.d.ts","../../../node_modules/@operato/shell/dist/src/types/domain.d.ts","../../../node_modules/@operato/shell/dist/src/types/user.d.ts","../../../node_modules/@operato/shell/dist/src/types/role.d.ts","../../../node_modules/@operato/shell/dist/src/types/privilege.d.ts","../../../node_modules/@operato/shell/dist/src/types/types.d.ts","../../../node_modules/@operato/shell/dist/src/types/index.d.ts","../../../node_modules/pwa-helpers/lazy-reducer-enhancer.d.ts","../../../node_modules/@operato/shell/dist/src/store.d.ts","../../../node_modules/@operato/shell/dist/src/actions/app.d.ts","../../../node_modules/@operato/shell/dist/src/actions/route.d.ts","../../../node_modules/@operato/shell/dist/src/actions/busy.d.ts","../../../node_modules/@operato/shell/dist/src/actions/const.d.ts","../../../node_modules/@operato/shell/dist/src/actions/index.d.ts","../../../node_modules/@operato/shell/dist/src/app/pages/page-view.d.ts","../../../node_modules/@operato/shell/dist/src/object-store.d.ts","../../../node_modules/@operato/shell/dist/src/custom-alert.d.ts","../../../node_modules/@operato/shell/dist/src/index.d.ts","../../../node_modules/@operato/event-view/dist/src/index.d.ts","../../../node_modules/@operato/styles/dist/src/headroom-styles.d.ts","../../../node_modules/@operato/styles/dist/src/scrollbar-styles.d.ts","../../../node_modules/@operato/styles/dist/src/spinner-styles.d.ts","../../../node_modules/@operato/styles/dist/src/tooltip-styles.d.ts","../../../node_modules/@operato/styles/dist/src/common-button-styles.d.ts","../../../node_modules/@operato/styles/dist/src/common-grist-styles.d.ts","../../../node_modules/@operato/styles/dist/src/button-container-styles.d.ts","../../../node_modules/@operato/styles/dist/src/common-header-styles.d.ts","../../../node_modules/@operato/styles/dist/src/index.d.ts","../client/pages/calendar/calendar-page.ts","../../../node_modules/@operato/data-grist/dist/src/data-card/data-card-field.d.ts","../../../node_modules/@operato/data-grist/dist/src/data-card/data-card-gutter.d.ts","../../../node_modules/@operato/data-grist/dist/src/data-grid/data-grid-field.d.ts","../../../node_modules/@operato/data-grist/dist/src/record-view/record-view-body.d.ts","../../../node_modules/@operato/data-grist/dist/src/record-view/record-view.d.ts","../../../node_modules/@operato/data-grist/dist/src/empty-note.d.ts","../../../node_modules/@operato/popup/dist/src/ox-popup.d.ts","../../../node_modules/@operato/data-grist/dist/src/data-grid/data-grid-header.d.ts","../../../node_modules/@operato/data-grist/dist/src/data-grid/data-grid-accum-field.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/@operato/data-grist/dist/src/data-grid/data-grid-body.d.ts","../../../node_modules/@operato/data-grist/dist/src/data-grid/data-grid-footer.d.ts","../../../node_modules/@operato/data-grist/dist/src/data-manipulator.d.ts","../../../node_modules/@operato/data-grist/dist/src/data-grid/data-grid.d.ts","../../../node_modules/@operato/data-grist/dist/src/data-list/data-list-gutter.d.ts","../../../node_modules/@operato/data-grist/dist/src/data-list/data-list-field.d.ts","../../../node_modules/@operato/data-grist/dist/src/data-list/record-partial.d.ts","../../../node_modules/@operato/data-grist/dist/src/data-list/data-list.d.ts","../../../node_modules/@operato/data-grist/dist/src/data-card/data-card.d.ts","../../../node_modules/@operato/data-grist/dist/src/data-consumer.d.ts","../../../node_modules/@operato/data-grist/dist/src/data-grist.d.ts","../../../node_modules/@operato/data-grist/dist/src/record-view/record-creator.d.ts","../../../node_modules/@operato/data-grist/dist/src/record-view/index.d.ts","../../../node_modules/@operato/data-grist/dist/src/data-card/data-card-gutter-menu.d.ts","../../../node_modules/@operato/data-grist/dist/src/data-card/record-card.d.ts","../../../node_modules/@operato/data-grist/dist/src/data-report/data-report-field.d.ts","../../../node_modules/@operato/data-grist/dist/src/editors/ox-grist-editor.d.ts","../../../node_modules/@operato/data-grist/dist/src/editors/registry.d.ts","../../../node_modules/@operato/data-grist/dist/src/editors/ox-grist-editor-image.d.ts","../../../node_modules/@operato/data-grist/dist/src/editors/index.d.ts","../../../node_modules/@operato/data-grist/dist/src/filters/registry.d.ts","../../../node_modules/@operato/data-grist/dist/src/filters/filter-select.d.ts","../../../node_modules/@operato/data-grist/dist/src/filters/filter-input.d.ts","../../../node_modules/@operato/data-grist/dist/src/filters/filter-checkbox.d.ts","../../../node_modules/@operato/data-grist/dist/src/filters/filter-range-date.d.ts","../../../node_modules/@operato/data-grist/dist/src/filters/filter-range-number.d.ts","../../../node_modules/@operato/data-grist/dist/src/filters/filter-select-buttons.d.ts","../../../node_modules/@operato/popup/dist/src/ox-popup-list.d.ts","../../../node_modules/@operato/data-grist/dist/src/filters/filters-form.d.ts","../../../node_modules/@operato/data-grist/dist/src/filters/index.d.ts","../../../node_modules/@operato/data-grist/dist/src/renderers/ox-grist-renderer.d.ts","../../../node_modules/@operato/data-grist/dist/src/types.d.ts","../../../node_modules/@operato/data-grist/dist/src/configure/zero-config.d.ts","../../../node_modules/@operato/data-grist/dist/src/data-report/data-report-header.d.ts","../../../node_modules/@operato/data-grist/dist/src/data-report/data-report-body.d.ts","../../../node_modules/@operato/data-grist/dist/src/data-report/data-report-component.d.ts","../../../node_modules/@operato/data-grist/dist/src/data-report.d.ts","../../../node_modules/@operato/data-grist/dist/src/renderers/registry.d.ts","../../../node_modules/@operato/data-grist/dist/src/renderers/ox-grist-renderer-boolean.d.ts","../../../node_modules/@operato/data-grist/dist/src/renderers/ox-grist-renderer-color.d.ts","../../../node_modules/@operato/data-grist/dist/src/renderers/ox-grist-renderer-date.d.ts","../../../node_modules/@operato/data-grist/dist/src/renderers/ox-grist-renderer-link.d.ts","../../../node_modules/@operato/data-grist/dist/src/renderers/ox-grist-renderer-password.d.ts","../../../node_modules/@operato/data-grist/dist/src/renderers/ox-grist-renderer-progress.d.ts","../../../node_modules/@operato/data-grist/dist/src/renderers/ox-grist-renderer-text.d.ts","../../../node_modules/@operato/data-grist/dist/src/renderers/ox-grist-renderer-select.d.ts","../../../node_modules/@operato/data-grist/dist/src/renderers/ox-grist-renderer-image.d.ts","../../../node_modules/@operato/data-grist/dist/src/renderers/ox-grist-renderer-file.d.ts","../../../node_modules/@operato/data-grist/dist/src/renderers/ox-grist-renderer-json5.d.ts","../../../node_modules/@operato/data-grist/dist/src/renderers/index.d.ts","../../../node_modules/@operato/data-grist/dist/src/handlers/registry.d.ts","../../../node_modules/@operato/data-grist/dist/src/handlers/index.d.ts","../../../node_modules/@operato/data-grist/dist/src/formatters/registry.d.ts","../../../node_modules/@operato/data-grist/dist/src/formatters/index.d.ts","../../../node_modules/@operato/data-grist/dist/src/gutters/registry.d.ts","../../../node_modules/@operato/data-grist/dist/src/gutters/index.d.ts","../../../node_modules/@operato/data-grist/dist/src/sorters/sorters-control.d.ts","../../../node_modules/@operato/data-grist/dist/src/utils/list-param.d.ts","../../../node_modules/@operato/data-grist/dist/src/index.d.ts","../../../node_modules/@operato/data-grist/dist/index.d.ts","../../../node_modules/@open-wc/dedupe-mixin/index.d.ts","../../../node_modules/@open-wc/scoped-elements/types.d.ts","../../../node_modules/@open-wc/scoped-elements/lit-element.d.ts","../../../node_modules/@operato/graphql/dist/src/gql-context.d.ts","../../../node_modules/graphql/version.d.ts","../../../node_modules/graphql/jsutils/maybe.d.ts","../../../node_modules/graphql/language/source.d.ts","../../../node_modules/graphql/jsutils/objmap.d.ts","../../../node_modules/graphql/jsutils/path.d.ts","../../../node_modules/graphql/jsutils/promiseorvalue.d.ts","../../../node_modules/graphql/language/kinds.d.ts","../../../node_modules/graphql/language/tokenkind.d.ts","../../../node_modules/graphql/language/ast.d.ts","../../../node_modules/graphql/language/location.d.ts","../../../node_modules/graphql/error/graphqlerror.d.ts","../../../node_modules/graphql/language/directivelocation.d.ts","../../../node_modules/graphql/type/directives.d.ts","../../../node_modules/graphql/type/schema.d.ts","../../../node_modules/graphql/type/definition.d.ts","../../../node_modules/graphql/execution/execute.d.ts","../../../node_modules/graphql/graphql.d.ts","../../../node_modules/graphql/type/scalars.d.ts","../../../node_modules/graphql/type/introspection.d.ts","../../../node_modules/graphql/type/validate.d.ts","../../../node_modules/graphql/type/assertname.d.ts","../../../node_modules/graphql/type/index.d.ts","../../../node_modules/graphql/language/printlocation.d.ts","../../../node_modules/graphql/language/lexer.d.ts","../../../node_modules/graphql/language/parser.d.ts","../../../node_modules/graphql/language/printer.d.ts","../../../node_modules/graphql/language/visitor.d.ts","../../../node_modules/graphql/language/predicates.d.ts","../../../node_modules/graphql/language/index.d.ts","../../../node_modules/graphql/execution/subscribe.d.ts","../../../node_modules/graphql/execution/values.d.ts","../../../node_modules/graphql/execution/index.d.ts","../../../node_modules/graphql/subscription/index.d.ts","../../../node_modules/graphql/utilities/typeinfo.d.ts","../../../node_modules/graphql/validation/validationcontext.d.ts","../../../node_modules/graphql/validation/validate.d.ts","../../../node_modules/graphql/validation/specifiedrules.d.ts","../../../node_modules/graphql/validation/rules/executabledefinitionsrule.d.ts","../../../node_modules/graphql/validation/rules/fieldsoncorrecttyperule.d.ts","../../../node_modules/graphql/validation/rules/fragmentsoncompositetypesrule.d.ts","../../../node_modules/graphql/validation/rules/knownargumentnamesrule.d.ts","../../../node_modules/graphql/validation/rules/knowndirectivesrule.d.ts","../../../node_modules/graphql/validation/rules/knownfragmentnamesrule.d.ts","../../../node_modules/graphql/validation/rules/knowntypenamesrule.d.ts","../../../node_modules/graphql/validation/rules/loneanonymousoperationrule.d.ts","../../../node_modules/graphql/validation/rules/nofragmentcyclesrule.d.ts","../../../node_modules/graphql/validation/rules/noundefinedvariablesrule.d.ts","../../../node_modules/graphql/validation/rules/nounusedfragmentsrule.d.ts","../../../node_modules/graphql/validation/rules/nounusedvariablesrule.d.ts","../../../node_modules/graphql/validation/rules/overlappingfieldscanbemergedrule.d.ts","../../../node_modules/graphql/validation/rules/possiblefragmentspreadsrule.d.ts","../../../node_modules/graphql/validation/rules/providedrequiredargumentsrule.d.ts","../../../node_modules/graphql/validation/rules/scalarleafsrule.d.ts","../../../node_modules/graphql/validation/rules/singlefieldsubscriptionsrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueargumentnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniquedirectivesperlocationrule.d.ts","../../../node_modules/graphql/validation/rules/uniquefragmentnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueinputfieldnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueoperationnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniquevariablenamesrule.d.ts","../../../node_modules/graphql/validation/rules/valuesofcorrecttyperule.d.ts","../../../node_modules/graphql/validation/rules/variablesareinputtypesrule.d.ts","../../../node_modules/graphql/validation/rules/variablesinallowedpositionrule.d.ts","../../../node_modules/graphql/validation/rules/loneschemadefinitionrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueoperationtypesrule.d.ts","../../../node_modules/graphql/validation/rules/uniquetypenamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueenumvaluenamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniquefielddefinitionnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueargumentdefinitionnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniquedirectivenamesrule.d.ts","../../../node_modules/graphql/validation/rules/possibletypeextensionsrule.d.ts","../../../node_modules/graphql/validation/rules/custom/nodeprecatedcustomrule.d.ts","../../../node_modules/graphql/validation/rules/custom/noschemaintrospectioncustomrule.d.ts","../../../node_modules/graphql/validation/index.d.ts","../../../node_modules/graphql/error/syntaxerror.d.ts","../../../node_modules/graphql/error/locatederror.d.ts","../../../node_modules/graphql/error/index.d.ts","../../../node_modules/graphql/utilities/getintrospectionquery.d.ts","../../../node_modules/graphql/utilities/getoperationast.d.ts","../../../node_modules/graphql/utilities/getoperationroottype.d.ts","../../../node_modules/graphql/utilities/introspectionfromschema.d.ts","../../../node_modules/graphql/utilities/buildclientschema.d.ts","../../../node_modules/graphql/utilities/buildastschema.d.ts","../../../node_modules/graphql/utilities/extendschema.d.ts","../../../node_modules/graphql/utilities/lexicographicsortschema.d.ts","../../../node_modules/graphql/utilities/printschema.d.ts","../../../node_modules/graphql/utilities/typefromast.d.ts","../../../node_modules/graphql/utilities/valuefromast.d.ts","../../../node_modules/graphql/utilities/valuefromastuntyped.d.ts","../../../node_modules/graphql/utilities/astfromvalue.d.ts","../../../node_modules/graphql/utilities/coerceinputvalue.d.ts","../../../node_modules/graphql/utilities/concatast.d.ts","../../../node_modules/graphql/utilities/separateoperations.d.ts","../../../node_modules/graphql/utilities/stripignoredcharacters.d.ts","../../../node_modules/graphql/utilities/typecomparators.d.ts","../../../node_modules/graphql/utilities/assertvalidname.d.ts","../../../node_modules/graphql/utilities/findbreakingchanges.d.ts","../../../node_modules/graphql/utilities/typedquerydocumentnode.d.ts","../../../node_modules/graphql/utilities/index.d.ts","../../../node_modules/graphql/index.d.ts","../../../node_modules/ts-invariant/lib/invariant.d.ts","../../../node_modules/@apollo/client/invarianterrorcodes.d.ts","../../../node_modules/@apollo/client/utilities/globals/invariantwrappers.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/documenttransform.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/print.d.ts","../../../node_modules/@apollo/client/utilities/graphql/storeutils.d.ts","../../../node_modules/@apollo/client/utilities/graphql/transform.d.ts","../../../node_modules/@apollo/client/utilities/graphql/operations.d.ts","../../../node_modules/@graphql-typed-document-node/core/typings/index.d.ts","../../../node_modules/@wry/trie/lib/index.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/fragmentregistry.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/utilities/caching/getmemoryinternals.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/symbol-observable/index.d.ts","../../../node_modules/@apollo/client/utilities/observables/observable.d.ts","../../../node_modules/@apollo/client/utilities/promises/decoration.d.ts","../../../node_modules/@apollo/client/utilities/common/objects.d.ts","../../../node_modules/@apollo/client/utilities/common/mergedeep.d.ts","../../../node_modules/@apollo/client/utilities/common/clonedeep.d.ts","../../../node_modules/@apollo/client/utilities/common/maybedeepfreeze.d.ts","../../../node_modules/@apollo/client/utilities/observables/iteration.d.ts","../../../node_modules/@apollo/client/utilities/observables/asyncmap.d.ts","../../../node_modules/@apollo/client/utilities/observables/concast.d.ts","../../../node_modules/@apollo/client/utilities/observables/subclassing.d.ts","../../../node_modules/@apollo/client/utilities/common/arrays.d.ts","../../../node_modules/@apollo/client/utilities/common/errorhandling.d.ts","../../../node_modules/@apollo/client/utilities/common/canuse.d.ts","../../../node_modules/@apollo/client/utilities/common/compact.d.ts","../../../node_modules/@apollo/client/utilities/common/makeuniqueid.d.ts","../../../node_modules/@apollo/client/utilities/common/stringifyfordisplay.d.ts","../../../node_modules/@apollo/client/utilities/common/mergeoptions.d.ts","../../../node_modules/@apollo/client/utilities/common/incrementalresult.d.ts","../../../node_modules/@apollo/client/utilities/common/canonicalstringify.d.ts","../../../node_modules/@apollo/client/utilities/types/primitive.d.ts","../../../node_modules/@apollo/client/utilities/types/deepomit.d.ts","../../../node_modules/@apollo/client/utilities/common/omitdeep.d.ts","../../../node_modules/@apollo/client/utilities/common/striptypename.d.ts","../../../node_modules/@apollo/client/utilities/types/isstrictlyany.d.ts","../../../node_modules/@apollo/client/utilities/types/deeppartial.d.ts","../../../node_modules/@apollo/client/utilities/types/onlyrequiredproperties.d.ts","../../../node_modules/@wry/caches/lib/common.d.ts","../../../node_modules/@wry/caches/lib/strong.d.ts","../../../node_modules/@wry/caches/lib/weak.d.ts","../../../node_modules/@wry/caches/lib/index.d.ts","../../../node_modules/@apollo/client/utilities/caching/caches.d.ts","../../../node_modules/@apollo/client/utilities/caching/sizes.d.ts","../../../node_modules/@apollo/client/utilities/caching/index.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/filteroperationvariables.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/@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/active-request-counter-link.d.ts","../../../node_modules/@operato/graphql/dist/src/index.d.ts","../../../node_modules/i18next/index.d.ts","../../../node_modules/@operato/i18n/dist/src/config.d.ts","../../../node_modules/@operato/i18n/dist/src/localize.d.ts","../../../node_modules/@operato/i18n/dist/src/ox-i18n.d.ts","../../../node_modules/@operato/i18n/dist/src/ox-i18n-selector.d.ts","../../../node_modules/@operato/i18n/dist/src/index.d.ts","../../../node_modules/@operato/layout/dist/src/initializer.d.ts","../../../node_modules/@operato/popup/dist/src/ox-popup-menu.d.ts","../../../node_modules/@operato/popup/dist/src/ox-popup-menuitem.d.ts","../../../node_modules/@material/web/elevation/internal/elevation.d.ts","../../../node_modules/@material/web/elevation/elevation.d.ts","../../../node_modules/@material/web/button/internal/elevated-button.d.ts","../../../node_modules/@material/web/button/elevated-button.d.ts","../../../node_modules/@operato/popup/dist/src/ox-prompt.d.ts","../../../node_modules/@operato/popup/dist/src/ox-floating-overlay.d.ts","../../../node_modules/@operato/popup/dist/src/open-popup.d.ts","../../../node_modules/@operato/popup/dist/src/index.d.ts","../../../node_modules/@operato/layout/dist/src/layouts/ox-snack-bar.d.ts","../../../node_modules/@operato/layout/dist/src/components/ox-resize-splitter.d.ts","../../../node_modules/@operato/layout/dist/src/layouts/ox-header-bar.d.ts","../../../node_modules/@operato/layout/dist/src/layouts/ox-nav-bar.d.ts","../../../node_modules/@operato/layout/dist/src/layouts/ox-aside-bar.d.ts","../../../node_modules/@operato/layout/dist/src/layouts/ox-footer-bar.d.ts","../../../node_modules/@operato/layout/dist/src/layouts/ox-page-header-bar.d.ts","../../../node_modules/@operato/layout/dist/src/layouts/ox-page-footer-bar.d.ts","../../../node_modules/@operato/layout/dist/src/actions/layout.d.ts","../../../node_modules/@operato/layout/dist/src/actions/snackbar.d.ts","../../../node_modules/@operato/layout/dist/src/components/ox-split-pane.d.ts","../../../node_modules/@operato/layout/dist/src/index.d.ts","../../../node_modules/@operato/utils/dist/src/sleep.d.ts","../../../node_modules/@operato/utils/dist/src/async-lock.d.ts","../../../node_modules/@operato/utils/dist/src/file-drop-helper.d.ts","../../../node_modules/@operato/utils/dist/src/context-path.d.ts","../../../node_modules/@operato/utils/dist/src/os.d.ts","../../../node_modules/@operato/utils/dist/src/swipe-listener.d.ts","../../../node_modules/@operato/utils/dist/src/fullscreen.d.ts","../../../node_modules/@operato/utils/dist/src/parse-jwt.d.ts","../../../node_modules/@operato/utils/dist/src/password-pattern.d.ts","../../../node_modules/@operato/utils/dist/src/closest-element.d.ts","../../../node_modules/@operato/utils/dist/src/detect-overflow.d.ts","../../../node_modules/@operato/utils/dist/src/timecapsule/snapshot-taker.d.ts","../../../node_modules/@operato/utils/dist/src/timecapsule/timecapsule.d.ts","../../../node_modules/@operato/utils/dist/src/timecapsule/index.d.ts","../../../node_modules/@operato/utils/dist/src/clipboard.d.ts","../../../node_modules/@operato/utils/dist/src/format.d.ts","../../../node_modules/@operato/utils/dist/src/adjust-list-param.d.ts","../../../node_modules/@operato/utils/dist/src/is-unvalued.d.ts","../../../node_modules/@operato/utils/dist/src/stringify-bignum.d.ts","../../../node_modules/@operato/utils/dist/src/encode-form-params.d.ts","../../../node_modules/@operato/utils/dist/src/cookie.d.ts","../../../node_modules/@operato/utils/dist/src/number-parser.d.ts","../../../node_modules/@operato/utils/dist/src/index.d.ts","../client/pages/calendar/calendar-importer.ts","../client/pages/calendar/calendar-list-page.ts","../client/pages/event/event-importer.ts","../client/pages/event/event-list-page.ts","../client/pages/attendee/attendee-importer.ts","../client/pages/attendee/attendee-list-page.ts","../client/route.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/file.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/filereader.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/index.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/dom-events.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/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/sea.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@jest/expect-utils/build/index.d.ts","../../../node_modules/chalk/index.d.ts","../../../node_modules/@sinclair/typebox/typebox.d.ts","../../../node_modules/@jest/schemas/build/index.d.ts","../../../node_modules/pretty-format/build/index.d.ts","../../../node_modules/jest-diff/build/index.d.ts","../../../node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/expect/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","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":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"7a1971efcba559ea9002ada4c4e3c925004fb67a755300d53b5edf9399354900",{"version":"1f8f1bd57f21c36cc25547a0cb99a097f5e5443815789833d230741315a3a948","signature":"aac4ddff3d5c1247433870879e9838b1e23b81a9b62c75f59c3e1b64802f2b16"},"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","274ed44f5d5ebbdb30e8257c5445d59a0b42f2524d9a2c882cf38823d8a260ec","1e5743b25a63fd34ffbae89adcbf248ee17db6ed08d90079ffa93803c3e80d2a",{"version":"d76de9e4667a54c93c8207f2d3ee87fca7d42d263f9b769adddc595482ecde1d","affectsGlobalScope":true},"15fe687c59d62741b4494d5e623d497d55eb38966ecf5bea7f36e48fc3fbe15e",{"version":"2c3b8be03577c98530ef9cb1a76e2c812636a871f367e9edf4c5f3ce702b77f8","affectsGlobalScope":true},"2f84bc2655654a2d8c149f5086a7e99ba1f2807dfc3a5b4ab7ee6e01f5e40e8f","0c8bec80ec9f9c2280384f378658f7617e0cdec533ce73917924e56bedbad096",{"version":"d76de9e4667a54c93c8207f2d3ee87fca7d42d263f9b769adddc595482ecde1d","affectsGlobalScope":true},"0c8bec80ec9f9c2280384f378658f7617e0cdec533ce73917924e56bedbad096","bb0b973bdc7d00b95dab73142cef7f92ba96f276b152c80c2c933ac3ead51431","5e7e090243bf203382a5cb04eabbdc38d78f6d5922f16f543e4da8fa007d5ff9","cd823094ded7c8ac4f94ab6dc387dab699293eb8323d9f948304efc07e4ae7b2","c567d37119d6f56381af48eb7516030ccf35a36f9aca045e238d9c207a7c536c","b448dfbb5a6c4505f6b6beab587cf41f180ad62bcb506b44e3f2c09d20ba63a9","5565deadc1d553f9f1ef370351432c258d2a6f1a5ca47e574e5430db824468c7",{"version":"4ae1ed87c59518f4e0918a21409ec3020e97037a386b57953c6b9fed9cad6949","affectsGlobalScope":true},"905800cc110167503d0cf58bb0dd6fa4aaac1e9cedc9bd9c48e5d1f8b5b8d4c8","d17be577b99e59611df19ca2cf0356df554f55bb06617c21321fc4ec06b820d0",{"version":"5f30145fbc8ca508ae4e0d90a4fe9eaff490783f380a92f6aa262accdf7887b7","affectsGlobalScope":true},"2c887f29f6796ea68247c626acbef560ff29bb8d0042b641e4fc69559841463d",{"version":"f882b77c5939860d599b4b7bc39f741ebcd56123e18b284500f4b8923acd2e72","affectsGlobalScope":true},"0230bc76ed3a464531a43d2434d315b9cc2096aaca28bdaa65b8f9dce9f3bc81","559d2d1cd7f37dc2ac59e7adce198ad16a5eb0c7273d67b8e4ff72821b7c853f","afa8760622183e35e86f516574217eb1853b08cf2168be0bfe991643ece1a8fe","55abfe582ce4b1917687712edf558626a341b1b1f339452509d879b633a94557","0f28503979e769f6ee6e55350f621dc00e300f15688d52b02edc62d837d29b1d",{"version":"fe869c79d427e84d916011d082def68a793c3c13e157079fec399f250418bd50","affectsGlobalScope":true},{"version":"73a0ee6395819b063df4b148211985f2e1442945c1a057204cf4cf6281760dc3","affectsGlobalScope":true},"7f0717e1c516c7b6b6acbc2177d1bd910a5d1abb757c85182ca8d089c9b6e398","ccff6a039925da0bbddce77e8fe06865bb4bc144f8ca2f729b4390015044183b","17170eef7dfaf323a9d13878c01dc18612d3fb575a476d04ae151811e6b7a50b","a10cf8580197574d07cbf52a7db7fb0bd4ce265b4a2daad0f6bd743e15ceb9d6","31ac26722af0fc8b2f5977fdc61b7ee96fcd964ce5195cdd1be4f4396ff745e5","1f1b15c57e5c8cc81559bd6b881ea87a2a9a0114b0c090c9333fbb02def27290","444402ce58193c6200a4bc0f2fa49981fc2876a75c52c8348a2293b25116ddf9","278773120821f65d2c545914678eaf7119036962fb509415d8fbee90f48febdf","049bebe48b63ecbd1a7c90ce9a523bf894174cdfd73cb6d535c695e1ddb52281","6d1b27c60d543e0ccee15646fb1410fdcdd2f9924638dbecf550174f9ad1a433","35ab2aa25db33860d80b44f6b4281d40e11638cf6540f45bc15090ffcbeeed22","87b6665f770bf1569b1842e7a3b6728de9b04f3c2036505b93de312b92e2906e","6eab9baa28d5af65e9725319dda4f7a34dadefa8d2a7180efed1f156aaa64f1d","74800ff360a51f013407726011b96c0310dd4f3e5789abc73b166385a7ebdd77","6e303e9b77772e5496a58307cffc158a497301f7ec462d52a77f1f6985a8b158","b144df450421a0b83fa165d973afae89fc2d73bfbda5403cabdf13a6dfc3cc6d","f0380f581cb015778c0fe51e95b5b7f6dae237280654558469b2486c1572268a",{"version":"fd624f7d7b264922476685870f08c5e1c6d6a0f05dee2429a9747b41f6b699d4","affectsGlobalScope":true},"23c05cc4d97aa608b5ea8badadb4e1b0c4e306ed5d651c5d1760552e91d1ad92","4d4cf93a6b4c81851ad759e4569b6feb7a701e80b13a6f9d8d9c6012bbb86bd6","2e6035af8f3e43bf95e4983329c8277d66f9b271106af27b99a85d1c1b9daf4a","774308610e8d4a9954cd93840f99decbf340accfe3ad7365547950ede8162c92","36c15dd26c66c97b9df26ce34baacdb13fc760c5b9a2d789dcc317d27b189257","3d7c0b593a29d717b2b2ba3f03f819c3c48bf9e250d79c4a31860af80f177e8c","f228d440342f5d0933f5db093aafab2f07de24a427b4488ccfae27b7457d7666","701978f3975f96e76e3ffc2e1762e3a97e3d323812049fb6fdfd559579b89708",{"version":"4ab17f80ced148d509345cee706b2b85941515dd76e32cf47118bcdf6a4bd56a","affectsGlobalScope":true},"641089f0b8094ef74b9d4b3364d5dec1592d5e3b8a51c1ba491bc8872049e79a","bbbdb165aa809434877352b36d1828259f6e2fa83b849da0cd36ded2dac074fc","b42033bf1067564808e4d360d79281667c2b3b0792c2d615ab641eb85974d4ba","7af29b0589483f7bb8a99405ddb849f34bc053146184561ed4179e02f5fe4d0f","78faa3783191b2d5d5f7a9e835ee3f6a1456dc391d6eb5b40d3a27dfd9decd6e","08d32a8fc63dbf34214ebb90c547ef20082d7d60126ad146ef8704528fb5e99d","fc48282c397084016a939e1b3f91dcaf4199b6cba339d91d8b2dc2acade79762","eee4830208488d834cf35c684a7775c516b27e04ebe5a0d5c058d89a56ed1f65","a6203646763fb7340123eace99b924c9586ea3cf56f65fe8c56308e6ecb2b805","bf90d5c500d2be8276252beafb8f0c64db0892f5a0149b34f3315dfc665868fc","cf93fb9208a01c80f0fad245c4360356e5de6c2384b7641acf0b9cc2f5c42448","336398b0efaf964124e636a9b29c4edd5870aee79ac64bf87be58a9d66b7c048","571bc65ec37ba124e762bb822e14a2b8502dc684e356be8feaccbd6b9cadd023","2bbbefc1235500bdb5091f240dc8cba861a95342272f7d11b7574a0d2ef4f85e","7cd455fc4c4818f19263d73b29c59f3fb5fd54b45a6ab83ca3eb3661281db56b","1c6b9b5501774a2ece6574be8e26092800e3f1f836f8c179b4f9fdd271a620f8","bcd2426fd141157e04e3a8eff914b575403587f398cf0878f07c2f283e0d1afd","bac8ff394e831e4dd3f0961d6abb414b0e2b4ba16fdeb502d087ebf0340ed5f6","b8965484c1a08eeac238cf02a1498d72f3f3610059570a2c0fd207eb34245146",{"version":"e0f67f56df946dd9a6d6ae75f63eca079fd09b9ba0d9f13bdade5b5baf03eeeb","signature":"51ce985ef6c5b8553c6e05d54abd80818f824834b8362598a18ca24f9173f36a"},"cc6bcd576056d8ccc3bb297b152e9e4d694fa13a3790078fc9c03f361d82060b","038f7ba9c3cb0d2097d1fb3f6294c355999e257e42d6769280e1a978c84f871c","09c3ceafecc2e08f123ca5ee0886564dd574bfb3963d3d102bb31f0b1b6a8ecc","48ad022e52419d1016325b379d0ec9983e7543fa291d85bab1e05db4ba4d991e","9ca4c5743ac77f84a83e5c6812ca41880b5f532c8a344343c0ec5a307b8d5fe3","b4e0c5592f4108bc1c855177aaa1b61d09d02f8e0f59089388aba7206c47d4d7","cf9ea56da5e5ff29d5bcc81494fc845509b35d7bb498455b491b53feb40573e2","be88db092944405c7145d8c0242b9ad8434792fc6b709b03a10b349c32936d14","f4ce147c4745d8662c66dc47cc77226bf79eb00766801c8225b570d1335f0de0","b8442e9db28157344d1bc5d8a5a256f1692de213f0c0ddeb84359834015a008c","458111fc89d11d2151277c822dfdc1a28fa5b6b2493cf942e37d4cd0a6ee5f22","da2b6356b84a40111aaecb18304ea4e4fcb43d70efb1c13ca7d7a906445ee0d3","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","6f294731b495c65ecf46a5694f0082954b961cf05463bea823f8014098eaffa0","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","68a0d0c508e1b6d8d23a519a8a0a3303dc5baa4849ca049f21e5bad41945e3fc","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","b03afe4bec768ae333582915146f48b161e567a81b5ebc31c4d78af089770ac9","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","4f6a12044ee6f458db11964153830abbc499e73d065c51c329ec97407f4b13dd","3d9c5289873e27c3c4fafb5b5302d384484495d517b64892e515a7b30ee8903b","cdc4e7fd1b86c67e46621ee7ab6b709a582912caa997d9874e13c9896a0b9cc9","325ed40ce0219dd26de91b25a23fa0e17b9b6c8bd2921dec6178d81aaf7fc969","6a82472fbb0445e81d7975c7c63d3deb69285ce74081268ca3b3a66863ac54b2","27fd44ac917b8f78d65173dccad092de47f408db592e1abb355f661d49646312","700828225cf903b1fce7dbac7d6afe27aab606cf6f38d29382f6d8cce445f3f9","beab932797dc68066e0d458ee92dcc8cd6bc356599a70689007f68e74e340c8e","832b1083b3fe23aaa13484835124c9150c7ccb80f3a8c2bf007ce183f2592b07","03f3f03872ff6a90ecf2f05abf86b743b479e28111a53860316cbd3acd16e652","5125dcacb1417e6bfaf4ddebbc2c0574f29d8770f0b2f83c478c3a070566342a","d55838a1d000c98fd596e2b7d39342b564151355e9256117e83bb1b613801168","9351b38c9e979dc5cfdfe72a3a84adf234366740c69181c86036b362144bfb8a","15b4d80e51b3ea458c75c3a68644a41024f7d83c12f1b37715a53a8a7f0fe9f8","7df0848e1a42b4e997f23f3d432ef1920a6c3b0587d32aedb6ae851f3b1aee2b","b5d1c04406f012961931edc572ce53e835d8308178b58ae127624dbfdc63fec3","998699eba617b9157327ec3be6a0da70bc0ffd86a40a20c21ed619f6f5eda300","988e6ed31d7d505106c63046218e13120a1d058854dc0007ce729fea94e5a557","32acecbba5dbfbe22f171d1aeffbd1df9c8d8d17e386479eabbde7209e936917","5b2dafe66896138a12fc33743126ed316f93971f5233fccaf602784a3c8ac22d","99a2a7093ce043534c17c2ebebdce37f1c14ac2b77780a476cfb70e5a9d035e2","4285b3976062212af73781ab61cd2d35014d6c8922ccbc082272ea14b56c4119","f0512312084ae789be5862be6bbbb4bd4ece73ca1bdaa3193b1a2e3dc0b8ea42","e1925458d0ea29d0b4d314ac029c368dcc5b5b0421be3c05c36a12df92840401","ea65e3ce32dcbb61edb379f86b303732103a887fcfe61fb0434cd5398fc8c272","19236d2b3a4d329eecb7d867e62ba2ce8ff2a1c290d9b9cadc246e1e860232ca","c348a5e4481d61843505811ed74ca62234d5bde08db286a719a7421bf64fc8c2","5e0042ca0dbe77639779a6f861c2a32fdff5094031e013fccf95508b49f6d7ee","a71c55c9a1b3b2ec65730253d006210e146e9e6dea66ddd6ead989f4594b38c5","8c25ae69aa019b934abf435c960a99cf743762cbba8efad5d0066ff5f85eec00","e9dd5f52c1e6edc780ececd7b176b1ad8ce106f35a9f0fdb67f3c8668522e839","19f4c3da100f6ae2baeb548f5334cd238ea8da4a62812afe579f9ecc4fd6b35a","45d0f7764762786437b6c56387f6dc20a8b3cee0d41764c009638c62dbffb01a","386e5858ba95acd2c0fa5ed0c5bff19addb0ef8c32ebcaf171d5bdcbb9ab8a3e","8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","a208a319c19376e0e8d953d58ddee7b2cc8de3be72e110f97c7fbaa23bf1e5b4","709f62b8c98e1db14602e873218cc5d22f81d64cd88f25adb5b4d2705a7e5d5c","284bf56773e6da050a953484eaca4beaceedce83b49be512a527ce88111a9a1a","b248a2c86a9608ef3f4c5480fda53e28daaa858fdfbfbe9ed31e0e0a0aa83b69","04a54102a8f6780bee6e4fb11f2a4385bd5db1c108232b61ebf197296005fc55","a5acce94760166021b02598b5b4e9048d761cd713d0094743979f8dc97171395","c75c4ce24b1f7976aabe62f58b079210dda7c8bff461cb852903ce0063b876f5","1b0dddfa3431d9cf7489393f6eda8c39d64b0ad5006e61b323b41e946de1cb64","69f943fd9ea150bdae776e0753da4e9e7cb5bcd2c3b357241669cb7b1146a8ef","2f3641dc015c1f0d5a0c6d3425c05cccb6b4a58960014138e988d7ac7e89e95b","d76e3643450c47b47c246ddefcaee7210175a5200f96c68c36f22290ae908999","c4178d7f38a1a95f9e7763e4ede95a8ff29c134ce9dde7a5532c617489e73e32","9cac36fd227125723097775e2700432838e54d9c1530cd45f36653e20513dc61","1905cf2a2c68efce92637b0637dd1db38e2fd5683e61901e6447bcf8fca752f7","b461bba9fdefa4860fbbe4ab8d584aba4ff2410d7a940ccd08d797ba62b9b4ad","d38038c1daa64482b31d0ec1fa336d9a47b09e647cf788ceef2fb3e8310bb09f","a2ce66067019351078533b6eddb5240e96f01686f8014f8959d63a2587557fb7","27909ca3d149c1c6f45b29b6e2ef4b1cbf709bfe6c0c66276d4541f6afc8031d","5a6534f5d0435656321853f3e16dd4c7f944162ec9af7a99ff9d0142947bf359","27909ca3d149c1c6f45b29b6e2ef4b1cbf709bfe6c0c66276d4541f6afc8031d","b1d629950cf09eed9cc08a0f2f4ac780de6f05c2e542b907777f7eedfe77097f","27909ca3d149c1c6f45b29b6e2ef4b1cbf709bfe6c0c66276d4541f6afc8031d","d5d357f555e6f34eae1b87fa0d2622cd4d243145c705dc6408ceae7f591cfd40","30d0c3169d63adaa3d171a6c5fad4bb3c904d70608bea6024d1d906baca96be1","3854977cd654de296953b729bfd49a31b1073d6d1276f3c79a8c68704694af3e","80a3bbe0e4fdfaac2c0a8b92a3ed66d3ded5e8f454c5790c8d593872fc1197f1","88cda4269c54f0803834fd62b2fac61af8bff7a085693f7ca9df85c1f19dee8a",{"version":"e197068b5a6410392b8a2e5d3b0752c17fcac5f087360d8a1c4cef55e7cd53d4","affectsGlobalScope":true},"520b1f1c9a0ff8b820c7107a9848ff33595a5c7289b20aca9ec75a09f3167992","7d54d48a4365f355a7759b1e29f43dea9163a9445d3f26e1234dea0af3e6a16d","78647004e18e4c16b8a2e8345fca9267573d1c5a29e11ddfee71858fd077ef6e","0804044cd0488cb7212ddbc1d0f8e1a5bd32970335dbfc613052304a1b0318f9","b725acb041d2a18fde8f46c48a1408418489c4aa222f559b1ef47bf267cb4be0","85084ae98c1d319e38ef99b1216d3372a9afd7a368022c01c3351b339d52cb58","898ec2410fae172e0a9416448b0838bed286322a5c0c8959e8e39400cd4c5697","692345a43bac37c507fa7065c554258435ab821bbe4fb44b513a70063e932b45","cddd50d7bd9d7fddda91a576db9f61655d1a55e2d870f154485812f6e39d4c15","0539583b089247b73a21eb4a5f7e43208a129df6300d6b829dc1039b79b6c8c4","7aba43bc7764fcd02232382c780c3e99ef8dbfdac3c58605a0b3781fab3d8044","522edc786ed48304671b935cf7d3ed63acc6636ab9888c6e130b97a6aea92b46","1e1ed5600d80406a10428e349af8b6f09949cd5054043ea8588903e8f9e8d705","de21641eb8edcbc08dd0db4ee70eea907cd07fe72267340b5571c92647f10a77","a53039ba614075aeb702271701981babbd0d4f4dcbf319ddee4c08fb8196cc7a","6758f7b72fa4d38f4f4b865516d3d031795c947a45cc24f2cfba43c91446d678","da679a5bb46df3c6d84f637f09e6689d6c2d07e907ea16adc161e4529a4954d6","dc1a664c33f6ddd2791569999db2b3a476e52c5eeb5474768ffa542b136d78c0","bdf7abbd7df4f29b3e0728684c790e80590b69d92ed8d3bf8e66d4bd713941fe","8decb32fc5d44b403b46c3bb4741188df4fbc3c66d6c65669000c5c9cd506523","4beaf337ee755b8c6115ff8a17e22ceab986b588722a52c776b8834af64e0f38","c26dd198f2793bbdcc55103823a2767d6223a7fdb92486c18b86deaf63208354","93551b302a808f226f0846ad8012354f2d53d6dedc33b540d6ca69836781a574","f0ff1c010d5046af3874d3b4df746c6f3921e4b3fbdec61dee0792fc0cb36ccd","778b684ebc6b006fcffeab77d25b34bf6e400100e0ec0c76056e165c6399ab05","463851fa993af55fb0296e0d6afa27407ef91bf6917098dd665aba1200d250c7","67c6de7a9c490bda48eb401bea93904b6bbfc60e47427e887e6a3da6195540be","be8f369f8d7e887eab87a3e4e41f1afcf61bf06056801383152aa83bda1f6a72","352bfb5f3a9d8a9c2464ad2dc0b2dc56a8212650a541fb550739c286dd341de1","a5aae636d9afdacb22d98e4242487436d8296e5a345348325ccc68481fe1b690","d007c769e33e72e51286b816d82cd7c3a280cba714e7f958691155068bd7150a","764150c107451d2fd5b6de305cff0a9dcecf799e08e6f14b5a6748724db46d8a","b04cf223c338c09285010f5308b980ee6d8bfa203824ed2537516f15e92e8c43","4b387f208d1e468193a45a51005b1ed5b666010fc22a15dc1baf4234078b636e","70441eda704feffd132be0c1541f2c7f6bbaafce25cb9b54b181e26af3068e79","d1addb12403afea87a1603121396261a45190886c486c88e1a5d456be17c2049","15d43873064dc8787ca1e4c39149be59183c404d48a8cd5a0ea019bb5fdf8d58","ea4b5d319625203a5a96897b057fddf6017d0f9a902c16060466fe69cc007243","3d06897c536b4aad2b2b015d529270439f2cadd89ca2ff7bd8898ee84898dd88","ab01d8fcb89fae8eda22075153053fefac69f7d9571a389632099e7a53f1922d","bac0ec1f4c61abc7c54ccebb0f739acb0cdbc22b1b19c91854dc142019492961","566b0806f9016fa067b7fecf3951fcc295c30127e5141223393bde16ad04aa4a","8e801abfeda45b1b93e599750a0a8d25074d30d4cc01e3563e56c0ff70edeb68","902997f91b09620835afd88e292eb217fbd55d01706b82b9a014ff408f357559","a3727a926e697919fb59407938bd8573964b3bf543413b685996a47df5645863","83f36c0792d352f641a213ee547d21ea02084a148355aa26b6ef82c4f61c1280","dce7d69c17a438554c11bbf930dec2bee5b62184c0494d74da336daee088ab69","1e8f2cda9735002728017933c54ccea7ebee94b9c68a59a4aac1c9a58aa7da7d","e327a2b222cf9e5c93d7c1ed6468ece2e7b9d738e5da04897f1a99f49d42cca1","65165246b59654ec4e1501dd87927a0ef95d57359709e00e95d1154ad8443bc7","f1bacba19e2fa2eb26c499e36b5ab93d6764f2dba44be3816f12d2bc9ac9a35b","bce38da5fd851520d0cb4d1e6c3c04968cec2faa674ed321c118e97e59872edc","3398f46037f21fb6c33560ceca257259bd6d2ea03737179b61ea9e17cbe07455","6e14fc6c27cb2cb203fe1727bb3a923588f0be8c2604673ad9f879182548daca","12b9bcf8395d33837f301a8e6d545a24dfff80db9e32f8e8e6cf4b11671bb442","04295cc38689e32a4ea194c954ea6604e6afb6f1c102104f74737cb8cf744422","7418f434c136734b23f634e711cf44613ca4c74e63a5ae7429acaee46c7024c8","27d40290b7caba1c04468f2b53cf7112f247f8acdd7c20589cd7decf9f762ad0","2608b8b83639baf3f07316df29202eead703102f1a7e32f74a1b18cf1eee54b5","c93657567a39bd589effe89e863aaadbc339675fca6805ae4d97eafbcce0a05d","909d5db5b3b19f03dfb4a8f1d00cf41d2f679857c28775faf1f10794cbbe9db9","e4504bffce13574bab83ab900b843590d85a0fd38faab7eff83d84ec55de4aff","8ab707f3c833fc1e8a51106b8746c8bc0ce125083ea6200ad881625ae35ce11e","730ddc2386276ac66312edbcc60853fedbb1608a99cb0b1ff82ebf26911dba1f","c1b3fa201aa037110c43c05ea97800eb66fea3f2ecc5f07c6fd47f2b6b5b21d2","636b44188dc6eb326fd566085e6c1c6035b71f839d62c343c299a35888c6f0a9","3b2105bf9823b53c269cabb38011c5a71360c8daabc618fec03102c9514d230c","f96e63eb56e736304c3aef6c745b9fe93db235ddd1fec10b45319c479de1a432","acb4f3cee79f38ceba975e7ee3114eb5cd96ccc02742b0a4c7478b4619f87cd6","cfc85d17c1493b6217bad9052a8edc332d1fde81a919228edab33c14aa762939","eebda441c4486c26de7a8a7343ebbc361d2b0109abff34c2471e45e34a93020a","727b4b8eb62dd98fa4e3a0937172c1a0041eb715b9071c3de96dad597deddcab","708e2a347a1b9868ccdb48f3e43647c6eccec47b8591b220afcafc9e7eeb3784","6bb598e2d45a170f302f113a5b68e518c8d7661ae3b59baf076be9120afa4813","c28e058db8fed2c81d324546f53d2a7aaefff380cbe70f924276dbad89acd7d1","ebe8f07bb402102c5a764b0f8e34bd92d6f50bd7ac61a2452e76b80e02f9bb4b","826a98cb79deab45ccc4e5a8b90fa64510b2169781a7cbb83c4a0a8867f4cc58","618189f94a473b7fdc5cb5ba8b94d146a0d58834cd77cd24d56995f41643ccd5","5baadaca408128671536b3cb77fea44330e169ada70ce50b902c8d992fe64cf1","a4cc469f3561ea3edc57e091f4c9dcaf7485a70d3836be23a6945db46f0acd0b","91b0965538a5eaafa8c09cf9f62b46d6125aa1b3c0e0629dce871f5f41413f90","2978e33a00b4b5fb98337c5e473ab7337030b2f69d1480eccef0290814af0d51","ba71e9777cb5460e3278f0934fd6354041cb25853feca542312807ce1f18e611","608dbaf8c8bb64f4024013e73d7107c16dba4664999a8c6e58f3e71545e48f66","61937cefd7f4d6fa76013d33d5a3c5f9b0fc382e90da34790764a0d17d6277fb","af7db74826f455bfef6a55a188eb6659fd85fdc16f720a89a515c48724ee4c42","d6ce98a960f1b99a72de771fb0ba773cb202c656b8483f22d47d01d68f59ea86","2a47dc4a362214f31689870f809c7d62024afb4297a37b22cb86f679c4d04088","42d907ac511459d7c4828ee4f3f81cc331a08dc98d7b3cb98e3ff5797c095d2e","63d010bff70619e0cdf7900e954a7e188d3175461182f887b869c312a77ecfbd","1452816d619e636de512ca98546aafb9a48382d570af1473f0432a9178c4b1ff","9e3e3932fe16b9288ec8c948048aef4edf1295b09a5412630d63f4a42265370e","8bdba132259883bac06056f7bacd29a4dcf07e3f14ce89edb022fe9b78dcf9b3","5a5406107d9949d83e1225273bcee1f559bb5588942907d923165d83251a0e37","ca0ca4ca5ad4772161ee2a99741d616fea780d777549ba9f05f4a24493ab44e1","e7ee7be996db0d7cce41a85e4cae3a5fc86cf26501ad94e0a20f8b6c1c55b2d4","72263ae386d6a49392a03bde2f88660625da1eca5df8d95120d8ccf507483d20","b498375d015f01585269588b6221008aae6f0c0dc53ead8796ace64bdfcf62ea","c37aa3657fa4d1e7d22565ae609b1370c6b92bafb8c92b914403d45f0e610ddc","34534c0ead52cc753bdfdd486430ef67f615ace54a4c0e5a3652b4116af84d6d","a1079b54643537f75fa4f4bb963d787a302bddbe3a6001c4b0a524b746e6a9de","7fc9b18b6aafa8a1fc1441670c6c9da63e3d7942c7f451300c48bafd988545e9","200a7b7eb3163da4327412c650e43fbe66c73604a23a694f95ede53c250bfc3b","5141eb835c029758a73c9179aebfc4cd2c4238d7d2d196deb85f0361d8913df6",{"version":"2e4fe50f8c8205a950548b85daec792d009a314835178c3e5f7e0cfbeaa885e3","affectsGlobalScope":true},"a960dc35ca7a0854d06432d698547debe3a4760438deea197fde8a3ff2101180",{"version":"757a2bb3e56cbd571c785427f4b93e2e74f86db9e67dcb0efac34c4c84d9f9df","affectsGlobalScope":true},"5c91a660571f17ad31a88c0d3ff9fc0065d8cd587b9ac8bdc8a4c7e7d08753cf","f67907c524206478ea6112420a3854c603fb946c0891d6664d150505594f9b34","db5cf245f400078a6cb2a41d1208d35d776e687903cf79a1b610ad66a3252fd9","3bfa2867f360d20bbb78bbea1add58e734893a21ad22038fefcc1af0befe2fca","5476286aef864b9a6297d91fadc64e5762baf8eae1524c634f633ea695494897","16fe611010eb1c0bee61b20b57a3cf283c280b707d451cf6895409e2bdc8d305","7d0fe089b8188e04d2898f9afbb7ab1082dc30dfc434844ac0a7cb95964c6126","706800c0d3302ab65e9d24e1560ce5c169bb6d4cbafee662e63ca3c9628e3b6b","ee232823b1b40017f6939e15e8f3c8279e9db426e84affa30b47d8f0406ef69b","83b5f5f5bdbf7f37b8ffc003abf6afee35a318871c990ad4d69d822f38d77840","656e8a14a0af2822043ecc64532a6d82715811a9c13aececf0538d9851a257a2","6e0169f82d6149f0a03c51e9800bb65b83ddb15240c2ba1763a14661a39160d7","c5d3ba34c069c7feb9d5b985fef35b1127e68326359a6c83d0cc536fdc4c0617","70c00093405a88dca980746e0e1c055bb4747063a3761e401370e98776c0fe73","7b2f581674a1657db5eede4d6c0e59dc2be2054af2d30a7bac6b526a9eb52465","b3dec0879e876086c6bd5d93b671bf3a034da7712ea60b6e815f1de987df060a","3d7ab41a0ad901c22c33daab084470cfc69c6b095ec422127ef04413e6e864ec","58ff34d2ab6b468611796aa4685392e67be1b08a9c2b4831404b34df2609f45b","5f10bad92458e398d348d8eef2875ec3accbc050e153a75a81f56d35c8e21bda","8bec5cde1012d040461c20523428d7ff8b1459f9ba2c6b5164a8a3f0bc1d4a65","86852a9821fdd9c72471aeb3c20393df58d682147d6fdce7c2c2b9ed415c02be","b66074641dffe87e540bee7f70b8d9af83395090ca1dbbdfaef75736a0f0c5f4","8a8c1f30470d820fd547051983d17e53494b016ae400135252b498ef9f0a2524","791989ce6d2b48689362b3469533430d99f14111b77720965165c059b692fefe","87c676ab377362b5f11d19279b63f70c8fc935892c5fbf5134691e454fb989a0","0e6274165343c2c0202d72499956c532090784a566efc83182d7f095743d8efa","8b6bed0c1e8e22aae2883a6475eff2043ede2ce055c4be0deaa02e0fef381fd5","583dd7b231fb2fc25111fd22b5ac17307f741e6f1da8c440e1c33dcb77024d8e","2bc7ed3303d2afdfd52f80ba484f46286d8a24e3f0da0f6043614d7d082fc810","9b51dd74a388c13e157c457cc39d59dc2aae2134f6a21cc6b695219932cb8817",{"version":"db06f4cdf70e3689f0cd5a96a6836f34024ad61e8dd01473560ebbcae09c532b","affectsGlobalScope":true},"9f1ae2c58e41b2eb5727a63b374fb0c5fac98faa0a737bae010e82debf1bdc08","a5f9f6c1cc2a4fc8e1b52a94fc3232cb6a489f2be222425e259974d34546a5a1","bfb9a2b9f4fed4baff4d819ed24e3a598662bebf536e146230d302f38fdb0a8e","6db51e5c67f75d0648454feecf99ce93fcd1ce9e552f8c50b9820b398cd05981","cfa45a513d247964ac2bac63039ba9ef4732986a56427ea9de70695cec3c07a2","4d55388ca8f7a9131bec34f06f8e1172ba2c933c18a89b3d25ee009697067725","2582712286ba362a14a9f36070b3da3ba089cc65e6e9696faa28f8769a8e762b","6e0f014e7fcf5c1f253f33b55466a72493459a86def0a4fdedb11a1caf81a429","9ea7ae58deb3a9fb7b0fb55cf9fb0e201d2a7626136f80a5f270e2ab1441fc74","0a9b057494a3e9665421e7c54f283f5285d26aa5c040f0c5536960f0bb460a75","ec5890710c087c43f575ff65eb0cf09b32e360ee428def89a071c70cf742b393","795021d7dab0702aecef8b6d860a4a24ed58c7163e0bf70e73bd5bca8427765c","a1ef544e4387e2f89cc7c33ff805fd77f1472c82e6605d8c8a791209d12bc6fc","1904d944994e9acf5018e4dd72c19596f38e57cf8429c9d8f46891f7edd88ddc","25978fa21b2728d3277888d33df9272738605df94140b4b0c883cf352ec31ca6","9371aec333ed231b4500aa79a114e28c85a8ccf732bb3610ac3081c806578243","d196c696562583b06a5cf670525b02c6df0464623cbef933dfed03aaba5480f0","134a7ce89567aeb83a1b731f0e6b45620c858760ad365fac098a3a8ad4c92be7","c430b361d4a0fabfe678428ff19da6dccad1790f8e6d598d0707a7502655edda","62f3aa971f3a4759c226029c4bb849e341d287bbb7fc314203f2136752c696e4","f2757349b90093adfe0df91a96419eb6b6c379ff8e5c03c12d9dd781c179c41d","494a9c70be9158c65cb37be8b54029cbe96d99871b0d868e55a026e761bc5fb4","ba8619d7e22018261e3fe406102881c4a748a8381f2f9354eeae817af128de06","87433a86e6e2053f4aef34b861af00440c7ef7d56102fc0d304340c126bb83a6","87cd88189b1710aa1c3e9b78eb5a86db061fe04dfee4839bc7d38f629cc26607","d494a2e9b57ee7e4ed18de686c431f853b586d9bbb81cc0251f29389156ebb1a","6882eb3444234bb5fd0f88771b3dac44f96549a16c88fd834c29486e86baf86f","7b18a8a68a7d84946f836e672e1bbb37e349be74124912dd2886da4fb5dad505","c57dcbf8db47e0f0fd15686fc4b52442a8af3d13139a6e5dbd776761ebe0647c","42791bbdba1514368154fc3836f8104c757c7b3a8c397f240581f10c139e8c2a","441d1b95e4fd393e431ae7acd1db07a374cab36fee0b2c2f35df922924b66813",{"version":"7f903c9b76be7dac34e734b8e6c6ec9b4cb4e1c14a13ff45bf3835907344b8c4","affectsGlobalScope":true},"d017689501673a9d57f1f32e1a07cf9dd6be955ee73346e051f2d763673ae26b","277b28e94895dcd7f32310b2efe1006483a9b6eddcac0607f12833da6276b750","66045ddbd0510af275cf0deaf7e86f342094313f06a71a1f0bb32b4ffb1d10a5","81e1d30ce7347af33131e707eaaeb3330a2801911c3cf50fae3d2874e7f2bcaa","15aefea7c2ce15c250b3025ab6431bb2f84c99420aac4015d6a7d43f647bf229","cba546a05926d9c3256b7e5938cd9744c17803eae81b5406479b411a7002375a","805e9c8babc6b2509084f0dff46f3c1871885331186b7b3cf16947d521b33b2d","b67ef2c6911442317b3b280523033712994ced2aa44cda6539c232db22b0e493","73d1c8b3fc0e917c7f47aa8d2dbb68397b634d779e4fd8f6676fbe3cf36d9ef2","c57e6ba24275aad3ef7dde7983f5ee53eab5118ebbd2020c0a0e2119b5932ac6","5053f67f8037aca21495c51e03cee651496cfd5e2b46dd6a73f35a1f4839b66f","557f8995fc591044e6bdbd12859ce24be91fe066a47673c5152b10ba5cbf9e33","166c98724b450733a772e58ac7f0f124731186464d65875dd8384a65a6c60c05","1ea825871c32b0dfb45f0a9cab53e65a7dadbf53921179d04e8e60a8b8f72525","d308b53ea26af4dea94005bf5c001c415270f3c225aa597832ab7701a21dc58c","578b2e06a3fc802ec4613f95d02f43e2b131281c69269e2e9d9113aec0263f23","92d91a4cd8c5818ab027d8f1fe55268fdf3753b1ef76ad6a3843b5f4d18aff76","f7da5295be02abb6babfdefa742fe007f282bf5d96e12b1a90eb5eb28c426aa4","9aaf320d3b830c1e04939eb349f6f1faa0fb2ec878e911fb63988108104b69e1","881f42100912eba832ddeb5b9bd8363b9dd0e77da078e17907a93b4a3e39b0a4","0c2ef96912e1d96f084e6988badd73dd0fac820fed0626cdcf19fa1344e3e020","a05543e6da0423cf9bff1b89d63f64712a88646a26df09a6a7d541ada9986bfa","8afa24f350142486e6618a701c82c40859d6dbf32dc264f874e0052c725976c9","b66c0eef108510a271ff2ab1261da265eef0aafa10bebde1f2747ac47ae5fa9a","1083ebb9f18ad0276fb42a848eda817d68784a32fb69ae383f0510a1017e9166","8891b1a90fc2546c79a14767d2d2671fd9925264d13ec0389b7b8977240dd735","f40c9e3016fd29c0fdd38e2cc75277f073feebb1a16143b30309db4db503bc36","bd62771361833fab47bb62bb6f9d17ad141e25cf6c4b3b282e65a49015d3fa39","300dc1d77c050aa02cb0d0c103ee627fcec34b8f94e3997922e466b0054911ac","eff94899e6ef67beaa8cd37a4d88dabf6f324ee1cbf0b327c2fb9e0f611f5779","e63bebf888fc246d3abccd32cfa64a842df2d43fe3e84ab150f702cc84983203","83d48582d704ea227f2b18a7531f425ce078b0ac6553dbfad8e2dd97a3072f17","1f5c9392a7d8ec70731aa0c5efcbac4de4a828179ac66f21b1173c87c187001f","45d5cff1cf1b381e5c7d75f763197b32f09aebf1da74e4be69ca419989cb7bd6","6b0db280d1e791a619bd8daba9035fdd755c372823943724d728d6dafa3d1516","8ab1cf9fbbad4959c0f2d070912147bf259d88df65f2b9b9bb8e7a71d193a05a","9950be2ac5f38a2bf088d253e452329025b6f19563d0ffe6204d1a30e097bf04","2fecd3f71dd4b50dcdea230320d9417bacac53edb80ef9ac299ed0931dcf022f","5dcd41aeb5f7119177adab46147589a1618f2b35bd976e6c3a20ec328f58d1bd","eb86b56452a1c3acc65406d873db44292865f876b2d79e04d84c5b7a0a4aaadc","7f1cf2dab123e185e96bf46e7380fbb3946b8a8710263e2032429303496c2a34","3a33dc0aaca86bfc68a58b603aeada539a0e47bce983d88473c7076318b91c9f","dd671af188f9ada1b5b6b6762ba51530dd5e30641358a1afcb86bf7921bd6b6b","ac415e6d3fbf97d543cb04fb812dc8fc5db14329f7120476e425f44674034168","c1a660a90d6565c602fa458f53849140c9008b7000ce8823443a2b1ae9ca46a3","0f81a53d54fd2b4ae2bf60067d616de99884bda21cb5784d942089d52319fb97","86d356e64ab8d56852623677eb1bed0c106703aed9b7788ad8a5a56e647822cb","29dca1b5f0cac95b675f86c7846f9d587ed47cc46609dd00d152bcb37683b069","231d829c892caeb88dd469e0847bf9d14e29c82b8b158b381ec866c868adf9af","48ba49f8bfce8c08ad1e7e54f0b85da9db7317ca76835d1c2640567e3fbd50c6","60997095f458b8c2c94af5759c796d9d17678e740a41a04c3e518c14c47f2ee7","d033de6f37b4734cea6214bdde25f0eb60999f8f803856eae89eb804c0b6e0fe","6d8223035d3e6d8ed0760d4579dc0cc582c8972ea198e4919c8080ec3e9baf0a","6184309fe39e2fe444f4ba94e7cd1abef48fcb48e258457c3b77c65828184241",{"version":"98c511f60c3079d731a35353a47bfa89dd79eeacad48a45d07170d22ef4bfd02","affectsGlobalScope":true},"0cb349f3a6866eb4ec6424b3844fa51498b32402f922d5a571d069d7cf44c68f",{"version":"517dd6f73e4d20b38841f7be1edb2fb6f4152775ac3a9c04e319ff0b3509c8ba","affectsGlobalScope":true},"93458a5ce30da930d0ed8922929cddf433fc6f4200815b6097d3e28c5ea87488","b6b0e59158a1c8ad34747722a19398d7bf26701e9ee2a130d80a52a815a8bb92","c97f742ef6e8c0bc4e5e4ad8d90b4489cdd3bd1c007510ee4a2e4c09266a11d2","6a17f676d06d3e695520b275dd483b4fe62d34b84926c0bf6425c08490ee2c41","3c523c4338a858825c62005f03ff49eeaf8290bdda52a8b8554be555bab7a077","5582fb24ca35ef8a72d61a095d62ae2ada8143c33bc56febf626e333d3a5b013","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","47b1df5805c9eb0fcd841d15513b4c0d6b59e4751cc7ea51ccfe1185637987aa","c36d51dd36b3887d7c2b81ebbffa009fa0ef62f4421f6b6b2ac8f06fcc6328e6","86d239790a025b4f1213571ed5d578b9080415e1218b253b499ed73ac436ae63","9d7d5dd5b13904d5bf406a43a74fc562bebb68e45d4bc86af60ff00c394e1244","05cfea0488751015b0b85911b6cdcde7c6cebdd9b8cada1ec0b5c1736357a552","f5800813e5c0d6c27d73b76f2c99f39bdfd6229d03553a8a9ae485f6aeb94425","4d5e201faa4bceca840b652dfc10795170c061f498e19429a06e056490aa69aa","6cf5098c7bf0c14358b656edd6103df1ae9f8c6a94abca9df8650c2b520d8096","ee11b7061adce4a1c0370620949a57851215b152a5632d2faf1aedbc90ad0520","f8c86fcbfb0a1e69a0ed28d3249cc33c312fa23a39c17e15cbbcc539bdcdc303","85e0f00b17c3ae8cd88438c754a2c43f4a9361e685b97a70e52e33afbf62488f","39d2d450df6efbf38585fd316f18922c8ac3fdfd4c3fc412d0bee34e2bc86378","4dcdfe4c18557fc02d8cb22cb422cb98bfeba8158aaf18cc66f9d99293ebe2c8","7efea6f2270a14f1b0d5f472f2a6fcb0a97beb677299e10b073cc2abdabeef51","385679adcfaaa1b561983bd5ae140b4db1e360a534f9685ee87f5019540c9ce8","3df6a0e8bdb7199dff6cf75c0250316f06b87c982bb47460960a1c5a793f5ca6","b3238dd00b7796eda3f507726e9882a55ff7043b249be8309abed22cfb7d7463","f499d7fb533781939c7a5ab778ac6e6c8ffe65601b1a61a843c36ee0013f05b6","7fcb76be88d4a64f6318b5a24b57021d7463f24485a3d1a931bf664c7e437534","940995980343a2bfebf515240e5eec487f845002a089bee0d18656ebf61d59aa","098ec42cd54c2b3354584c4fe8ad143040114891dde762741522b62788772f0d","1e73d612f806d183d6c16c4135c16c1a14dd827c1a67097e72ab1841852bfcb9","30046b0787c577061d43e498b507da8a249fbc58bbe33a09a7bef777e1d5fb67","cb2de9f1d7d286191834eeb331d23dc69eeb322745114ddad1695e4c575b5feb","dc2461db89dde29306a73a2926e2cf874e981ef034412f4d1e3d06d45bb3127e","13a5d8ec52111b64ed8fdcb47ab664b60085733c46c44aede33fd2926840ac31","ad7ab3cf33ac3e8767de4e363bb439e3095fe2dba7f64255c72d6beccf96aea0",{"version":"f736b1294772d244b8dfd13dc512a410558c801fc69878ee42b5a9752db8d517","signature":"1164b28b00644603ec9f58b88011b59eeb0eee3b595d5451ed519448f965df1f"},{"version":"caada4d298c1e15e523531a0dad8529a6f70bbdbaa2a4335745e4ec17c2eec10","signature":"3e2a26356b648825d762ebdf850224a79d665c588a970402520963ccf177342e"},{"version":"28716122aaa5d669b8a6cf33bba38cbbf01e8c6a35c6d8a0b8313a31269e38fc","signature":"50bfcc56088cf1f464a9a90a8a57ffacb45d78272b795dd45d5c9969786b2639"},{"version":"fdd1edf4bfa586a269d9387e9bfbddf3ea0e616b541e8fb2e54e577cad95e4ea","signature":"4eba47d379c394e02e75d06f27099c0ab10227feae3b839bbad29f2ea1541d1b"},{"version":"a4aa3789cd54d8f59600a68ab8d05db6f1d459cdae05838c0af1cc48e5dd5325","signature":"41ed70b3deb1a09ea46539eed62c8651b0fe9bee600b226bde7f02ee71425498"},{"version":"dad0abecc3d54ee0242123d147693024b7adda3501c99781e1ad0a6141755509","signature":"6e7c916567d39174d49b6e7b91e69b9815c676ce732206271e5b4669712c9a35"},{"version":"016974e8fe857213be5064bc026d49530c115a4b2e2328a088a1210a910b571f","signature":"b735f43de215e676c74816e68451c4eefd64177f3c86e7c25e6a57043ae178a8"},"acdc9fb9638a235a69bd270003d8db4d6153ada2b7ccbea741ade36b295e431e","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"a14ed46fa3f5ffc7a8336b497cd07b45c2084213aaca933a22443fcb2eef0d07","affectsGlobalScope":true},"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c",{"version":"7fd7fcbf021a5845bdd9397d4649fcf2fe17152d2098140fc723099a215d19ad","affectsGlobalScope":true},"df3389f71a71a38bc931aaf1ef97a65fada98f0a27f19dd12f8b8de2b0f4e461","d69a3298a197fe5d59edba0ec23b4abf2c8e7b8c6718eac97833633cd664e4c9",{"version":"a9544f6f8af0d046565e8dde585502698ebc99eef28b715bad7c2bded62e4a32","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb",{"version":"8b809082dfeffc8cc4f3b9c59f55c0ff52ba12f5ae0766cb5c35deee83b8552e","affectsGlobalScope":true},"bd3f5d05b6b5e4bfcea7739a45f3ffb4a7f4a3442ba7baf93e0200799285b8f1","4c775c2fccabf49483c03cd5e3673f87c1ffb6079d98e7b81089c3def79e29c6","d4f9d3ae2fe1ae199e1c832cca2c44f45e0b305dfa2808afdd51249b6f4a5163","7525257b4aa35efc7a1bbc00f205a9a96c4e4ab791da90db41b77938c4e0c18e","b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e",{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true},{"version":"9c611eff81287837680c1f4496daf9e737d6f3a1ff17752207814b8f8e1265af","affectsGlobalScope":true},"fe1fd6afdfe77976d4c702f3746c05fb05a7e566845c890e0e970fe9376d6a90","b5d4e3e524f2eead4519c8e819eaf7fa44a27c22418eff1b7b2d0ebc5fdc510d","afb1701fd4be413a8a5a88df6befdd4510c30a31372c07a4138facf61594c66d","9bd8e5984676cf28ebffcc65620b4ab5cb38ab2ec0aac0825df8568856895653","396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","5e8dc64e7e68b2b3ea52ed685cf85239e0d5fb9df31aabc94370c6bc7e19077b",{"version":"ea455cc68871b049bcecd9f56d4cf27b852d6dafd5e3b54468ca87cc11604e4d","affectsGlobalScope":true},"c07146dbbbd8b347241b5df250a51e48f2d7bef19b1e187b1a3f20c849988ff1","45b1053e691c5af9bfe85060a3e1542835f8d84a7e6e2e77ca305251eda0cb3c","0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7",{"version":"ae5507fc333d637dec9f37c6b3f4d423105421ea2820a64818de55db85214d66","affectsGlobalScope":true},{"version":"46755a4afc53df75f0bfce72259fb971daac826b0cdd8c4eaccad2755a817403","affectsGlobalScope":true},"8abd0566d2854c4bd1c5e48e05df5c74927187f1541e6770001d9637ac41542e","54e854615c4eafbdd3fd7688bd02a3aafd0ccf0e87c98f79d3e9109f047ce6b8","d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","8221b00f271cf7f535a8eeec03b0f80f0929c7a16116e2d2df089b41066de69b","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","7fa32887f8a97909fca35ebba3740f8caf8df146618d8fff957a3f89f67a2f6a","9a9634296cca836c3308923ba7aa094fa6ed76bb1e366d8ddcf5c65888ab1024",{"version":"bddce945d552a963c9733db106b17a25474eefcab7fc990157a2134ef55d4954","affectsGlobalScope":true},{"version":"7052b7b0c3829df3b4985bab2fd74531074b4835d5a7b263b75c82f0916ad62f","affectsGlobalScope":true},"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","4b55240c2a03b2c71e98a7fc528b16136faa762211c92e781a01c37821915ea6","7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df",{"version":"94c086dff8dbc5998749326bc69b520e8e4273fb5b7b58b50e0210e0885dfcde","affectsGlobalScope":true},{"version":"f5b5dc128973498b75f52b1b8c2d5f8629869104899733ae485100c2309b4c12","affectsGlobalScope":true},"ebe5facd12fd7745cda5f4bc3319f91fb29dc1f96e57e9c6f8b260a7cc5b67ee","79bad8541d5779c85e82a9fb119c1fe06af77a71cc40f869d62ad379473d4b75","21c56c6e8eeacef15f63f373a29fab6a2b36e4705be7a528aae8c51469e2737b",{"version":"629d20681ca284d9e38c0a019f647108f5fe02f9c59ac164d56f5694fc3faf4d","affectsGlobalScope":true},"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"a42be67ed1ddaec743582f41fc219db96a1b69719fccac6d1464321178d610fc","cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec",{"version":"5ab630d466ac55baa6d32820378098404fc18ba9da6f7bc5df30c5dbb1cffae8","affectsGlobalScope":true}],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitOnError":true,"noImplicitAny":false,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"target":4,"useDefineForClassFields":false},"fileIdsList":[[307,324,330,337,377],[336,337,338],[307,335,377],[307,322,336,377],[313,324,325,326,327,329,331,335,336,337,338,339,377],[307,323,324,327,335,336,377],[307],[307,326,327,335,377],[307,324,327,329,330,335,338,377,415],[307,327,331,334,336,377],[415],[307,324,327,331,332,336,377],[307,325,326,335,336,338,377],[307,326,327,331,333,377,415],[307,330,340,377,385,395,408,409,410,412],[308,327,340,377,385,395,396,405,406,408,409,410,412,413,414],[307,340,377,385,409,413],[336,340,377,396,406,407,409,410,411],[307,340,385,396,406,409,410,411,412],[307,323,340,377,385,396,407,408,409,410,412,413],[307,322,340,377,385,396,406,407,408,410,412],[307,322,336,340,385,409,412],[307,313,385,395,405],[377,378],[379],[313,378,379,380,381,382,383,384],[307,377,415],[385,388],[313,386,387,388,389,390,391,392,393,394],[342,385],[388],[307,377,385],[385],[313],[377],[313,397,398,399,400,401,402,403,404],[373],[374,375],[347],[307,385],[346],[364],[310,311,312],[308,309],[307,316],[313,314,315,316,317,318,319,320,321,341,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,364,365,366,367,368,369,376],[344],[342,343],[340],[363],[569],[58,431],[58,60,65,67,68,69,70],[60,71,430],[71],[58,72],[58,429],[58,60],[58,63],[58,64],[58,61],[58],[58,69],[58,68],[58,60,63],[58,66],[58,204,205],[204],[202],[175],[58,175],[62,123],[58,60,62,127,146,158],[58,60,62,122,123,156,157,175],[58,60,124,130,143,175],[58,60,62,175],[58,62,128,175],[58,60,127,129,144,145,146,175],[58,60,147,151,152,153,175],[58,60,62,146,150],[58,60,62,148,149,156,175],[58,60,153,175,179],[58,60,159,175],[58,60,175,177,178],[160,161,162],[60,160],[58,60,124,175],[160,175],[58,60,62],[58,171,175],[164,165,166,167,168,169,170,172],[196],[198],[194],[154,156,163,173,175,176,180,193,195,197,199,200,201],[126,155],[58,60,62,126,154],[58,60,62,124,175],[58,60,62,124,125,175],[174,181,182,183,184,185,186,187,188,189,190,191,192],[58,60,174],[174,175],[60,122,123,124,148,149,150,158,159,163,173,174],[58,60,73,76,77],[77,80],[58,60,62,77,78,79],[342,415],[207,416,417,418],[420],[421,422,423,424],[58,420],[58,436],[92],[426,436,437,439,440,441,442,443,444,445,446,447],[110],[434,438],[62,73],[128,171,427,428,433,435],[58,434],[58,60,62,128],[58,60,128],[58,60,427],[58,60,62,432],[102,103,104,105],[99,101,106,107,108,109],[92,100],[94,95,96,97,98],[95,96],[94,95,97],[112,113,114,115,116,117,118,119],[449,450,451,452,453,454,455,456,457,458,459,462,463,464,465,466,467,468,469,470],[460,461],[461],[460],[571,574],[131,133,134,135,136,137,138,139,140,141,142,143],[131,132,134,135,136,137,138,139,140,141,142,143],[132,133,134,135,136,137,138,139,140,141,142,143],[131,132,133,135,136,137,138,139,140,141,142,143],[131,132,133,134,136,137,138,139,140,141,142,143],[131,132,133,134,135,137,138,139,140,141,142,143],[131,132,133,134,135,136,138,139,140,141,142,143],[131,132,133,134,135,136,137,139,140,141,142,143],[131,132,133,134,135,136,137,138,140,141,142,143],[131,132,133,134,135,136,137,138,139,141,142,143],[131,132,133,134,135,136,137,138,139,140,142,143],[131,132,133,134,135,136,137,138,139,140,141,143],[131,132,133,134,135,136,137,138,139,140,141,142],[479],[515],[516,521,550],[517,528,529,536,547,558],[517,518,528,536],[519,559],[520,521,529,537],[521,547,555],[522,524,528,536],[515,523],[524,525],[528],[526,528],[515,528],[528,529,530,547,558],[528,529,530,543,547,550],[513,516,563],[524,528,531,536,547,558],[528,529,531,532,536,547,555,558],[531,533,547,555,558],[479,480,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565],[528,534],[535,558,563],[524,528,536,547],[537],[538],[515,539],[540,557,563],[541],[542],[528,543,544],[543,545,559,561],[516,528,547,548,549,550],[516,547,549],[547,548],[550],[551],[515,547],[528,553,554],[553,554],[521,536,547,555],[556],[536,557],[516,531,542,558],[521,559],[547,560],[535,561],[562],[516,521,528,530,539,547,558,561,563],[547,564],[50],[370,371,372],[370],[75],[74],[567,573],[216,414],[209,210,216,217],[218,282,283],[209,216,218],[210,218],[209,211,212,213,216,218,221,222],[212,223,237,238],[209,216,221,222,223],[209,211,216,218,220,221,222],[209,210,221,222,223],[208,224,229,236,239,240,281,284,306],[209],[210,214,215],[210,214,215,216,217,219,230,231,232,233,234,235],[210,215,216],[210],[209,210,215,216,218,231],[216],[210,216,217],[214,216],[223,237],[209,211,212,213,216,221],[209,216,219,222],[212,220,221,222,225,226,227,228],[222],[209,211,216,218,220,222],[218,221],[218],[209,216,222],[210,216,221,232],[221,285],[218,222],[216,221],[221],[209,219],[209,216],[216,221,222],[241,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305],[221,222],[211,216],[209,216,220,221,222,234],[209,211,216,222],[209,211,216],[242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280],[234,242],[242],[209,216,218,221,241,242],[209,216,218,220,221,222,234,241],[571],[568,572],[49,53],[47,48],[51,52],[60],[51,59],[82,83,84,85,86,87,88,89,90],[49,53,56,57],[81],[49,81],[49,81,89],[83],[53],[570],[490,494,558],[490,547,558],[485],[487,490,555,558],[536,555],[566],[485,566],[487,490,536,558],[482,483,486,489,516,528,547,558],[482,488],[486,490,516,550,558,566],[516,566],[506,516,566],[484,485,566],[490],[484,485,486,487,488,489,490,491,492,494,495,496,497,498,499,500,501,502,503,504,505,507,508,509,510,511,512],[490,497,498],[488,490,498,499],[489],[482,485,490],[490,494,498,499],[494],[488,490,493,558],[482,487,488,490,494,497],[516,547],[485,490,506,516,563,566],[44],[44,58,91,203,414,419,425,471],[44,58,91,93,110,120,203,206,414,419,425,436,448,471,476],[44,58,91,93,110,120,203,206,414,419,425,436,448,471,472],[44,58,77,80,91,93,110,111,120],[44,58,91,93,110,120,203,206,414,419,425,436,448,471,474],[44,121,473,475,477],[58,203],[58,110,203,206,476],[58,110,203,206,472],[58,77,80,110,111],[58,110,203,206,474]],"referencedMap":[[338,1],[324,2],[336,3],[337,4],[340,5],[325,6],[326,7],[339,8],[331,9],[335,10],[329,11],[333,12],[327,13],[334,14],[413,15],[415,16],[408,17],[412,18],[407,19],[411,20],[409,21],[410,22],[406,23],[379,24],[383,25],[380,25],[384,25],[381,25],[385,26],[382,25],[378,27],[392,28],[393,28],[395,29],[386,30],[394,31],[388,32],[391,33],[387,34],[402,33],[404,7],[397,35],[399,35],[405,36],[398,35],[403,33],[401,33],[374,37],[376,38],[357,39],[355,40],[361,33],[347,41],[360,11],[365,42],[366,35],[313,43],[310,44],[314,7],[315,7],[316,7],[317,7],[321,11],[318,7],[319,45],[320,7],[377,46],[351,47],[352,47],[350,47],[344,48],[353,47],[341,49],[364,50],[368,50],[322,7],[570,51],[432,52],[71,53],[431,54],[72,55],[73,56],[430,57],[429,58],[64,59],[65,60],[62,61],[61,58],[63,62],[70,63],[69,64],[66,65],[67,66],[206,67],[205,68],[203,69],[176,70],[122,71],[157,72],[123,71],[152,73],[158,74],[153,70],[130,71],[144,75],[124,71],[145,76],[129,77],[147,78],[154,79],[149,71],[148,71],[151,80],[150,81],[146,71],[180,82],[178,83],[179,84],[159,71],[163,85],[162,86],[160,87],[161,88],[127,89],[167,70],[166,70],[168,70],[169,70],[170,70],[165,70],[172,90],[173,91],[164,70],[197,92],[199,93],[198,70],[195,94],[194,70],[202,95],[156,96],[155,97],[125,98],[126,99],[193,100],[182,70],[183,70],[184,70],[191,70],[190,70],[192,70],[185,70],[186,70],[187,101],[189,70],[188,70],[174,87],[181,102],[200,71],[175,103],[201,70],[78,104],[79,104],[111,105],[80,106],[77,62],[418,11],[416,107],[419,108],[421,109],[425,110],[422,111],[424,58],[423,58],[445,112],[446,113],[438,58],[447,58],[448,114],[426,115],[441,116],[442,116],[439,116],[440,116],[444,116],[443,116],[437,117],[436,118],[435,119],[434,89],[171,120],[427,121],[428,122],[128,58],[433,123],[106,124],[107,62],[110,125],[101,126],[99,127],[97,128],[96,129],[118,62],[117,62],[119,62],[112,62],[120,130],[113,62],[114,62],[115,62],[471,131],[462,132],[460,133],[461,134],[575,135],[132,136],[133,137],[131,138],[134,139],[135,140],[136,141],[137,142],[138,143],[139,144],[140,145],[141,146],[142,147],[143,148],[479,149],[480,149],[515,150],[516,151],[517,152],[518,153],[519,154],[520,155],[521,156],[522,157],[523,158],[524,159],[525,159],[527,160],[526,161],[528,162],[529,163],[530,164],[514,165],[531,166],[532,167],[533,168],[566,169],[534,170],[535,171],[536,172],[537,173],[538,174],[539,175],[540,176],[541,177],[542,178],[543,179],[544,179],[545,180],[547,181],[549,182],[548,183],[550,184],[551,185],[552,186],[553,187],[554,188],[555,189],[556,190],[557,191],[558,192],[559,193],[560,194],[561,195],[562,196],[563,197],[564,198],[51,199],[373,200],[371,201],[372,201],[76,202],[75,203],[574,204],[414,205],[218,206],[284,207],[283,208],[282,209],[223,210],[239,211],[237,212],[238,213],[224,214],[307,215],[212,216],[216,217],[236,218],[231,219],[217,220],[232,221],[235,222],[233,222],[230,223],[234,224],[240,225],[222,226],[220,227],[229,228],[226,229],[225,229],[221,230],[227,231],[303,232],[297,233],[290,234],[289,235],[298,236],[299,222],[291,237],[304,238],[285,239],[286,240],[287,241],[306,242],[288,235],[292,238],[293,243],[300,244],[301,220],[302,243],[305,222],[294,241],[241,245],[295,246],[296,247],[281,248],[279,249],[280,249],[245,249],[246,249],[247,249],[248,249],[249,249],[250,249],[251,249],[252,249],[271,249],[253,249],[254,249],[255,249],[256,249],[257,249],[258,249],[278,249],[259,249],[260,249],[261,249],[276,249],[262,249],[277,249],[263,249],[274,249],[275,249],[264,249],[265,249],[266,249],[272,249],[273,249],[267,249],[268,249],[269,249],[270,249],[244,250],[243,251],[242,252],[572,253],[573,254],[56,255],[54,256],[55,257],[59,258],[60,259],[91,260],[58,261],[82,262],[85,263],[83,263],[87,263],[90,264],[89,263],[88,263],[86,263],[84,265],[49,256],[52,266],[53,257],[571,267],[93,113],[100,113],[497,268],[504,269],[496,268],[511,270],[488,271],[487,272],[510,273],[505,274],[508,275],[490,276],[489,277],[485,278],[484,279],[507,280],[486,281],[491,282],[495,282],[513,283],[512,282],[499,284],[500,285],[502,286],[498,287],[501,288],[506,273],[493,289],[494,290],[503,291],[483,292],[509,293],[45,294],[476,295],[477,296],[472,295],[473,297],[121,298],[474,295],[475,299],[478,300]],"exportedModulesMap":[[338,1],[324,2],[336,3],[337,4],[340,5],[325,6],[326,7],[339,8],[331,9],[335,10],[329,11],[333,12],[327,13],[334,14],[413,15],[415,16],[408,17],[412,18],[407,19],[411,20],[409,21],[410,22],[406,23],[379,24],[383,25],[380,25],[384,25],[381,25],[385,26],[382,25],[378,27],[392,28],[393,28],[395,29],[386,30],[394,31],[388,32],[391,33],[387,34],[402,33],[404,7],[397,35],[399,35],[405,36],[398,35],[403,33],[401,33],[374,37],[376,38],[357,39],[355,40],[361,33],[347,41],[360,11],[365,42],[366,35],[313,43],[310,44],[314,7],[315,7],[316,7],[317,7],[321,11],[318,7],[319,45],[320,7],[377,46],[351,47],[352,47],[350,47],[344,48],[353,47],[341,49],[364,50],[368,50],[322,7],[570,51],[432,52],[71,53],[431,54],[72,55],[73,56],[430,57],[429,58],[64,59],[65,60],[62,61],[61,58],[63,62],[70,63],[69,64],[66,65],[67,66],[206,67],[205,68],[203,69],[176,70],[122,71],[157,72],[123,71],[152,73],[158,74],[153,70],[130,71],[144,75],[124,71],[145,76],[129,77],[147,78],[154,79],[149,71],[148,71],[151,80],[150,81],[146,71],[180,82],[178,83],[179,84],[159,71],[163,85],[162,86],[160,87],[161,88],[127,89],[167,70],[166,70],[168,70],[169,70],[170,70],[165,70],[172,90],[173,91],[164,70],[197,92],[199,93],[198,70],[195,94],[194,70],[202,95],[156,96],[155,97],[125,98],[126,99],[193,100],[182,70],[183,70],[184,70],[191,70],[190,70],[192,70],[185,70],[186,70],[187,101],[189,70],[188,70],[174,87],[181,102],[200,71],[175,103],[201,70],[78,104],[79,104],[111,105],[80,106],[77,62],[418,11],[416,107],[419,108],[421,109],[425,110],[422,111],[424,58],[423,58],[445,112],[446,113],[438,58],[447,58],[448,114],[426,115],[441,116],[442,116],[439,116],[440,116],[444,116],[443,116],[437,117],[436,118],[435,119],[434,89],[171,120],[427,121],[428,122],[128,58],[433,123],[106,124],[107,62],[110,125],[101,126],[99,127],[97,128],[96,129],[118,62],[117,62],[119,62],[112,62],[120,130],[113,62],[114,62],[115,62],[471,131],[462,132],[460,133],[461,134],[575,135],[132,136],[133,137],[131,138],[134,139],[135,140],[136,141],[137,142],[138,143],[139,144],[140,145],[141,146],[142,147],[143,148],[479,149],[480,149],[515,150],[516,151],[517,152],[518,153],[519,154],[520,155],[521,156],[522,157],[523,158],[524,159],[525,159],[527,160],[526,161],[528,162],[529,163],[530,164],[514,165],[531,166],[532,167],[533,168],[566,169],[534,170],[535,171],[536,172],[537,173],[538,174],[539,175],[540,176],[541,177],[542,178],[543,179],[544,179],[545,180],[547,181],[549,182],[548,183],[550,184],[551,185],[552,186],[553,187],[554,188],[555,189],[556,190],[557,191],[558,192],[559,193],[560,194],[561,195],[562,196],[563,197],[564,198],[51,199],[373,200],[371,201],[372,201],[76,202],[75,203],[574,204],[414,205],[218,206],[284,207],[283,208],[282,209],[223,210],[239,211],[237,212],[238,213],[224,214],[307,215],[212,216],[216,217],[236,218],[231,219],[217,220],[232,221],[235,222],[233,222],[230,223],[234,224],[240,225],[222,226],[220,227],[229,228],[226,229],[225,229],[221,230],[227,231],[303,232],[297,233],[290,234],[289,235],[298,236],[299,222],[291,237],[304,238],[285,239],[286,240],[287,241],[306,242],[288,235],[292,238],[293,243],[300,244],[301,220],[302,243],[305,222],[294,241],[241,245],[295,246],[296,247],[281,248],[279,249],[280,249],[245,249],[246,249],[247,249],[248,249],[249,249],[250,249],[251,249],[252,249],[271,249],[253,249],[254,249],[255,249],[256,249],[257,249],[258,249],[278,249],[259,249],[260,249],[261,249],[276,249],[262,249],[277,249],[263,249],[274,249],[275,249],[264,249],[265,249],[266,249],[272,249],[273,249],[267,249],[268,249],[269,249],[270,249],[244,250],[243,251],[242,252],[572,253],[573,254],[56,255],[54,256],[55,257],[59,258],[60,259],[91,260],[58,261],[82,262],[85,263],[83,263],[87,263],[90,264],[89,263],[88,263],[86,263],[84,265],[49,256],[52,266],[53,257],[571,267],[93,113],[100,113],[497,268],[504,269],[496,268],[511,270],[488,271],[487,272],[510,273],[505,274],[508,275],[490,276],[489,277],[485,278],[484,279],[507,280],[486,281],[491,282],[495,282],[513,283],[512,282],[499,284],[500,285],[502,286],[498,287],[501,288],[506,273],[493,289],[494,290],[503,291],[483,292],[509,293],[476,301],[477,302],[472,301],[473,303],[121,304],[474,301],[475,305]],"semanticDiagnosticsPerFile":[338,324,336,337,340,325,328,326,339,331,332,335,329,333,327,334,413,415,408,396,412,407,411,409,410,406,309,379,383,380,384,381,385,382,378,389,392,390,393,395,386,394,388,391,387,402,404,397,399,405,400,398,403,401,374,330,376,375,354,362,356,348,357,355,361,358,349,347,360,346,365,359,366,312,313,310,311,314,315,316,317,321,318,319,320,377,351,352,350,344,353,341,345,364,368,367,369,363,322,567,570,432,71,431,72,73,430,429,64,65,62,61,63,70,69,68,66,67,204,206,205,203,176,122,157,123,152,158,153,130,144,124,145,129,147,154,149,148,151,150,146,180,178,179,159,177,163,162,160,161,127,167,166,168,169,170,165,172,173,164,197,196,199,198,195,194,202,156,155,125,126,193,182,183,184,191,190,192,185,186,187,189,188,174,181,200,175,201,78,79,111,80,77,418,207,416,419,417,421,425,422,424,423,445,446,438,447,448,426,441,442,439,440,444,443,437,436,435,434,171,427,428,128,433,102,104,105,106,103,107,109,110,108,101,94,99,97,96,98,95,118,116,117,119,112,120,113,114,115,465,450,463,458,452,469,459,468,451,464,455,471,466,470,453,456,457,449,467,454,462,460,461,569,575,132,133,131,134,135,136,137,138,139,140,141,142,143,479,480,515,516,517,518,519,520,521,522,523,524,525,527,526,528,529,530,514,565,531,532,533,566,534,535,536,537,538,539,540,541,542,543,544,545,546,547,549,548,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,51,50,370,373,371,372,323,481,568,76,75,74,574,414,218,284,283,282,223,239,237,238,224,307,209,211,212,213,216,219,236,214,231,217,232,235,233,230,210,215,234,240,228,222,220,229,226,225,221,227,303,297,290,289,298,299,291,304,285,286,287,306,288,292,293,300,301,302,305,294,241,295,296,281,279,280,245,246,247,248,249,250,251,252,271,253,254,255,256,257,258,278,259,260,261,276,262,277,263,274,275,264,265,266,272,273,267,268,269,270,244,243,242,208,420,572,573,8,9,11,10,2,12,13,14,15,16,17,18,19,3,4,23,20,21,22,24,25,26,5,27,28,29,30,6,34,31,32,33,35,7,36,41,42,37,38,39,40,1,43,56,54,55,59,60,91,58,47,81,82,85,83,87,90,89,88,86,84,48,49,52,57,53,571,93,100,92,343,308,44,497,504,496,511,488,487,510,505,508,490,489,485,484,507,486,491,492,495,482,513,512,499,500,502,498,501,506,493,494,503,483,509,342,45,46,476,477,472,473,121,474,475,478]},"version":"4.9.5"}
|
|
1
|
+
{"program":{"fileNames":["../../../node_modules/lerna/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/tslib/tslib.d.ts","../client/bootstrap.ts","../client/index.ts","../../../node_modules/@lit/reactive-element/css-tag.d.ts","../../../node_modules/@lit/reactive-element/reactive-controller.d.ts","../../../node_modules/@lit/reactive-element/reactive-element.d.ts","../../../node_modules/@types/trusted-types/lib/index.d.ts","../../../node_modules/@types/trusted-types/index.d.ts","../../../node_modules/lit/node_modules/lit-html/directive.d.ts","../../../node_modules/lit/node_modules/lit-html/lit-html.d.ts","../../../node_modules/lit-element/node_modules/lit-html/lit-html.d.ts","../../../node_modules/lit-element/lit-element.d.ts","../../../node_modules/lit/node_modules/lit-html/is-server.d.ts","../../../node_modules/lit/index.d.ts","../../../node_modules/lit-html/directive.d.ts","../../../node_modules/lit-html/lit-html.d.ts","../../../node_modules/@material/web/icon/internal/icon.d.ts","../../../node_modules/@material/web/icon/icon.d.ts","../../../node_modules/@material/web/internal/controller/attachable-controller.d.ts","../../../node_modules/@material/web/focus/internal/focus-ring.d.ts","../../../node_modules/@material/web/focus/md-focus-ring.d.ts","../../../node_modules/@material/web/ripple/internal/ripple.d.ts","../../../node_modules/@material/web/ripple/ripple.d.ts","../../../node_modules/@material/web/labs/behaviors/mixin.d.ts","../../../node_modules/@material/web/labs/behaviors/element-internals.d.ts","../../../node_modules/@material/web/internal/controller/form-submitter.d.ts","../../../node_modules/@material/web/button/internal/button.d.ts","../../../node_modules/@material/web/button/internal/text-button.d.ts","../../../node_modules/@material/web/button/text-button.d.ts","../../../node_modules/dayjs/esm/locale/types.d.ts","../../../node_modules/dayjs/esm/locale/index.d.ts","../../../node_modules/dayjs/esm/index.d.ts","../../../node_modules/@operato/event-view/dist/src/types.d.ts","../../../node_modules/@operato/event-view/dist/src/calendar-monthly.d.ts","../../../node_modules/@operato/event-view/dist/src/calendar-weekly.d.ts","../../../node_modules/@operato/event-view/dist/src/ox-event-view.d.ts","../../../node_modules/@lit/reactive-element/decorators/base.d.ts","../../../node_modules/@lit/reactive-element/decorators/custom-element.d.ts","../../../node_modules/@lit/reactive-element/decorators/property.d.ts","../../../node_modules/@lit/reactive-element/decorators/state.d.ts","../../../node_modules/@lit/reactive-element/decorators/event-options.d.ts","../../../node_modules/@lit/reactive-element/decorators/query.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-all.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-async.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-assigned-nodes.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-assigned-elements.d.ts","../../../node_modules/lit/decorators.d.ts","../../../node_modules/redux/index.d.ts","../../../node_modules/pwa-helpers/connect-mixin.d.ts","../../../node_modules/@operato/shell/dist/src/types/domain.d.ts","../../../node_modules/@operato/shell/dist/src/types/user.d.ts","../../../node_modules/@operato/shell/dist/src/types/role.d.ts","../../../node_modules/@operato/shell/dist/src/types/privilege.d.ts","../../../node_modules/@operato/shell/dist/src/types/types.d.ts","../../../node_modules/@operato/shell/dist/src/types/index.d.ts","../../../node_modules/pwa-helpers/lazy-reducer-enhancer.d.ts","../../../node_modules/@operato/shell/dist/src/store.d.ts","../../../node_modules/@operato/shell/dist/src/actions/app.d.ts","../../../node_modules/@operato/shell/dist/src/actions/route.d.ts","../../../node_modules/@operato/shell/dist/src/actions/busy.d.ts","../../../node_modules/@operato/shell/dist/src/actions/const.d.ts","../../../node_modules/@operato/shell/dist/src/actions/index.d.ts","../../../node_modules/@operato/shell/dist/src/app/pages/page-view.d.ts","../../../node_modules/@operato/shell/dist/src/object-store.d.ts","../../../node_modules/@operato/shell/dist/src/custom-alert.d.ts","../../../node_modules/@operato/shell/dist/src/index.d.ts","../../../node_modules/@operato/event-view/dist/src/index.d.ts","../../../node_modules/@operato/styles/dist/src/headroom-styles.d.ts","../../../node_modules/@operato/styles/dist/src/scrollbar-styles.d.ts","../../../node_modules/@operato/styles/dist/src/spinner-styles.d.ts","../../../node_modules/@operato/styles/dist/src/tooltip-styles.d.ts","../../../node_modules/@operato/styles/dist/src/common-button-styles.d.ts","../../../node_modules/@operato/styles/dist/src/common-grist-styles.d.ts","../../../node_modules/@operato/styles/dist/src/button-container-styles.d.ts","../../../node_modules/@operato/styles/dist/src/common-header-styles.d.ts","../../../node_modules/@operato/styles/dist/src/index.d.ts","../client/pages/calendar/calendar-page.ts","../../../node_modules/@operato/data-grist/dist/src/data-card/data-card-field.d.ts","../../../node_modules/@operato/data-grist/dist/src/data-card/data-card-gutter.d.ts","../../../node_modules/@operato/data-grist/dist/src/data-grid/data-grid-field.d.ts","../../../node_modules/@operato/data-grist/dist/src/record-view/record-view-body.d.ts","../../../node_modules/@operato/data-grist/dist/src/record-view/record-view.d.ts","../../../node_modules/@operato/data-grist/dist/src/empty-note.d.ts","../../../node_modules/@operato/popup/dist/src/ox-popup.d.ts","../../../node_modules/@operato/data-grist/dist/src/data-grid/data-grid-header.d.ts","../../../node_modules/@operato/data-grist/dist/src/data-grid/data-grid-accum-field.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/@operato/data-grist/dist/src/data-grid/data-grid-body.d.ts","../../../node_modules/@operato/data-grist/dist/src/data-grid/data-grid-footer.d.ts","../../../node_modules/@operato/data-grist/dist/src/data-manipulator.d.ts","../../../node_modules/@operato/data-grist/dist/src/data-grid/data-grid.d.ts","../../../node_modules/@operato/data-grist/dist/src/data-list/data-list-gutter.d.ts","../../../node_modules/@operato/data-grist/dist/src/data-list/data-list-field.d.ts","../../../node_modules/@operato/data-grist/dist/src/data-list/record-partial.d.ts","../../../node_modules/@operato/data-grist/dist/src/data-list/data-list.d.ts","../../../node_modules/@operato/data-grist/dist/src/data-card/data-card.d.ts","../../../node_modules/@operato/data-grist/dist/src/data-consumer.d.ts","../../../node_modules/@operato/data-grist/dist/src/data-grist.d.ts","../../../node_modules/@operato/data-grist/dist/src/record-view/record-creator.d.ts","../../../node_modules/@operato/data-grist/dist/src/record-view/index.d.ts","../../../node_modules/@operato/data-grist/dist/src/data-card/data-card-gutter-menu.d.ts","../../../node_modules/@operato/data-grist/dist/src/data-card/record-card.d.ts","../../../node_modules/@operato/data-grist/dist/src/data-report/data-report-field.d.ts","../../../node_modules/@operato/data-grist/dist/src/editors/ox-grist-editor.d.ts","../../../node_modules/@operato/data-grist/dist/src/editors/registry.d.ts","../../../node_modules/@operato/data-grist/dist/src/editors/ox-grist-editor-image.d.ts","../../../node_modules/@operato/data-grist/dist/src/editors/index.d.ts","../../../node_modules/@operato/data-grist/dist/src/filters/registry.d.ts","../../../node_modules/@operato/data-grist/dist/src/filters/filter-select.d.ts","../../../node_modules/@operato/data-grist/dist/src/filters/filter-input.d.ts","../../../node_modules/@operato/data-grist/dist/src/filters/filter-checkbox.d.ts","../../../node_modules/@operato/data-grist/dist/src/filters/filter-range-date.d.ts","../../../node_modules/@operato/data-grist/dist/src/filters/filter-range-number.d.ts","../../../node_modules/@operato/data-grist/dist/src/filters/filter-select-buttons.d.ts","../../../node_modules/@operato/popup/dist/src/ox-popup-list.d.ts","../../../node_modules/@operato/data-grist/dist/src/filters/filters-form.d.ts","../../../node_modules/@operato/data-grist/dist/src/filters/index.d.ts","../../../node_modules/@operato/data-grist/dist/src/renderers/ox-grist-renderer.d.ts","../../../node_modules/@operato/data-grist/dist/src/types.d.ts","../../../node_modules/@operato/data-grist/dist/src/configure/zero-config.d.ts","../../../node_modules/@operato/data-grist/dist/src/data-report/data-report-header.d.ts","../../../node_modules/@operato/data-grist/dist/src/data-report/data-report-body.d.ts","../../../node_modules/@operato/data-grist/dist/src/data-report/data-report-component.d.ts","../../../node_modules/@operato/data-grist/dist/src/data-report.d.ts","../../../node_modules/@operato/data-grist/dist/src/renderers/registry.d.ts","../../../node_modules/@operato/data-grist/dist/src/renderers/ox-grist-renderer-boolean.d.ts","../../../node_modules/@operato/data-grist/dist/src/renderers/ox-grist-renderer-color.d.ts","../../../node_modules/@operato/data-grist/dist/src/renderers/ox-grist-renderer-date.d.ts","../../../node_modules/@operato/data-grist/dist/src/renderers/ox-grist-renderer-link.d.ts","../../../node_modules/@operato/data-grist/dist/src/renderers/ox-grist-renderer-password.d.ts","../../../node_modules/@operato/data-grist/dist/src/renderers/ox-grist-renderer-progress.d.ts","../../../node_modules/@operato/data-grist/dist/src/renderers/ox-grist-renderer-text.d.ts","../../../node_modules/@operato/data-grist/dist/src/renderers/ox-grist-renderer-select.d.ts","../../../node_modules/@operato/data-grist/dist/src/renderers/ox-grist-renderer-image.d.ts","../../../node_modules/@operato/data-grist/dist/src/renderers/ox-grist-renderer-file.d.ts","../../../node_modules/@operato/data-grist/dist/src/renderers/ox-grist-renderer-json5.d.ts","../../../node_modules/@operato/data-grist/dist/src/renderers/index.d.ts","../../../node_modules/@operato/data-grist/dist/src/handlers/registry.d.ts","../../../node_modules/@operato/data-grist/dist/src/handlers/index.d.ts","../../../node_modules/@operato/data-grist/dist/src/formatters/registry.d.ts","../../../node_modules/@operato/data-grist/dist/src/formatters/index.d.ts","../../../node_modules/@operato/data-grist/dist/src/gutters/registry.d.ts","../../../node_modules/@operato/data-grist/dist/src/gutters/index.d.ts","../../../node_modules/@operato/data-grist/dist/src/sorters/sorters-control.d.ts","../../../node_modules/@operato/data-grist/dist/src/utils/list-param.d.ts","../../../node_modules/@operato/data-grist/dist/src/index.d.ts","../../../node_modules/@operato/data-grist/dist/index.d.ts","../../../node_modules/@open-wc/dedupe-mixin/index.d.ts","../../../node_modules/@open-wc/scoped-elements/types/src/types.d.ts","../../../node_modules/@open-wc/scoped-elements/types/src/scopedelementsmixin.d.ts","../../../node_modules/@open-wc/scoped-elements/types/index.d.ts","../../../node_modules/@operato/graphql/dist/src/gql-context.d.ts","../../../node_modules/graphql/version.d.ts","../../../node_modules/graphql/jsutils/maybe.d.ts","../../../node_modules/graphql/language/source.d.ts","../../../node_modules/graphql/jsutils/objmap.d.ts","../../../node_modules/graphql/jsutils/path.d.ts","../../../node_modules/graphql/jsutils/promiseorvalue.d.ts","../../../node_modules/graphql/language/kinds.d.ts","../../../node_modules/graphql/language/tokenkind.d.ts","../../../node_modules/graphql/language/ast.d.ts","../../../node_modules/graphql/language/location.d.ts","../../../node_modules/graphql/error/graphqlerror.d.ts","../../../node_modules/graphql/language/directivelocation.d.ts","../../../node_modules/graphql/type/directives.d.ts","../../../node_modules/graphql/type/schema.d.ts","../../../node_modules/graphql/type/definition.d.ts","../../../node_modules/graphql/execution/execute.d.ts","../../../node_modules/graphql/graphql.d.ts","../../../node_modules/graphql/type/scalars.d.ts","../../../node_modules/graphql/type/introspection.d.ts","../../../node_modules/graphql/type/validate.d.ts","../../../node_modules/graphql/type/assertname.d.ts","../../../node_modules/graphql/type/index.d.ts","../../../node_modules/graphql/language/printlocation.d.ts","../../../node_modules/graphql/language/lexer.d.ts","../../../node_modules/graphql/language/parser.d.ts","../../../node_modules/graphql/language/printer.d.ts","../../../node_modules/graphql/language/visitor.d.ts","../../../node_modules/graphql/language/predicates.d.ts","../../../node_modules/graphql/language/index.d.ts","../../../node_modules/graphql/execution/subscribe.d.ts","../../../node_modules/graphql/execution/values.d.ts","../../../node_modules/graphql/execution/index.d.ts","../../../node_modules/graphql/subscription/index.d.ts","../../../node_modules/graphql/utilities/typeinfo.d.ts","../../../node_modules/graphql/validation/validationcontext.d.ts","../../../node_modules/graphql/validation/validate.d.ts","../../../node_modules/graphql/validation/specifiedrules.d.ts","../../../node_modules/graphql/validation/rules/executabledefinitionsrule.d.ts","../../../node_modules/graphql/validation/rules/fieldsoncorrecttyperule.d.ts","../../../node_modules/graphql/validation/rules/fragmentsoncompositetypesrule.d.ts","../../../node_modules/graphql/validation/rules/knownargumentnamesrule.d.ts","../../../node_modules/graphql/validation/rules/knowndirectivesrule.d.ts","../../../node_modules/graphql/validation/rules/knownfragmentnamesrule.d.ts","../../../node_modules/graphql/validation/rules/knowntypenamesrule.d.ts","../../../node_modules/graphql/validation/rules/loneanonymousoperationrule.d.ts","../../../node_modules/graphql/validation/rules/nofragmentcyclesrule.d.ts","../../../node_modules/graphql/validation/rules/noundefinedvariablesrule.d.ts","../../../node_modules/graphql/validation/rules/nounusedfragmentsrule.d.ts","../../../node_modules/graphql/validation/rules/nounusedvariablesrule.d.ts","../../../node_modules/graphql/validation/rules/overlappingfieldscanbemergedrule.d.ts","../../../node_modules/graphql/validation/rules/possiblefragmentspreadsrule.d.ts","../../../node_modules/graphql/validation/rules/providedrequiredargumentsrule.d.ts","../../../node_modules/graphql/validation/rules/scalarleafsrule.d.ts","../../../node_modules/graphql/validation/rules/singlefieldsubscriptionsrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueargumentnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniquedirectivesperlocationrule.d.ts","../../../node_modules/graphql/validation/rules/uniquefragmentnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueinputfieldnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueoperationnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniquevariablenamesrule.d.ts","../../../node_modules/graphql/validation/rules/valuesofcorrecttyperule.d.ts","../../../node_modules/graphql/validation/rules/variablesareinputtypesrule.d.ts","../../../node_modules/graphql/validation/rules/variablesinallowedpositionrule.d.ts","../../../node_modules/graphql/validation/rules/loneschemadefinitionrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueoperationtypesrule.d.ts","../../../node_modules/graphql/validation/rules/uniquetypenamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueenumvaluenamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniquefielddefinitionnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueargumentdefinitionnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniquedirectivenamesrule.d.ts","../../../node_modules/graphql/validation/rules/possibletypeextensionsrule.d.ts","../../../node_modules/graphql/validation/rules/custom/nodeprecatedcustomrule.d.ts","../../../node_modules/graphql/validation/rules/custom/noschemaintrospectioncustomrule.d.ts","../../../node_modules/graphql/validation/index.d.ts","../../../node_modules/graphql/error/syntaxerror.d.ts","../../../node_modules/graphql/error/locatederror.d.ts","../../../node_modules/graphql/error/index.d.ts","../../../node_modules/graphql/utilities/getintrospectionquery.d.ts","../../../node_modules/graphql/utilities/getoperationast.d.ts","../../../node_modules/graphql/utilities/getoperationroottype.d.ts","../../../node_modules/graphql/utilities/introspectionfromschema.d.ts","../../../node_modules/graphql/utilities/buildclientschema.d.ts","../../../node_modules/graphql/utilities/buildastschema.d.ts","../../../node_modules/graphql/utilities/extendschema.d.ts","../../../node_modules/graphql/utilities/lexicographicsortschema.d.ts","../../../node_modules/graphql/utilities/printschema.d.ts","../../../node_modules/graphql/utilities/typefromast.d.ts","../../../node_modules/graphql/utilities/valuefromast.d.ts","../../../node_modules/graphql/utilities/valuefromastuntyped.d.ts","../../../node_modules/graphql/utilities/astfromvalue.d.ts","../../../node_modules/graphql/utilities/coerceinputvalue.d.ts","../../../node_modules/graphql/utilities/concatast.d.ts","../../../node_modules/graphql/utilities/separateoperations.d.ts","../../../node_modules/graphql/utilities/stripignoredcharacters.d.ts","../../../node_modules/graphql/utilities/typecomparators.d.ts","../../../node_modules/graphql/utilities/assertvalidname.d.ts","../../../node_modules/graphql/utilities/findbreakingchanges.d.ts","../../../node_modules/graphql/utilities/typedquerydocumentnode.d.ts","../../../node_modules/graphql/utilities/index.d.ts","../../../node_modules/graphql/index.d.ts","../../../node_modules/ts-invariant/lib/invariant.d.ts","../../../node_modules/@apollo/client/invarianterrorcodes.d.ts","../../../node_modules/@apollo/client/utilities/globals/invariantwrappers.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/documenttransform.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/print.d.ts","../../../node_modules/@apollo/client/utilities/graphql/storeutils.d.ts","../../../node_modules/@apollo/client/utilities/graphql/transform.d.ts","../../../node_modules/@apollo/client/utilities/graphql/operations.d.ts","../../../node_modules/@graphql-typed-document-node/core/typings/index.d.ts","../../../node_modules/@wry/trie/lib/index.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/fragmentregistry.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/utilities/caching/getmemoryinternals.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/symbol-observable/index.d.ts","../../../node_modules/@apollo/client/utilities/observables/observable.d.ts","../../../node_modules/@apollo/client/utilities/promises/decoration.d.ts","../../../node_modules/@apollo/client/utilities/common/objects.d.ts","../../../node_modules/@apollo/client/utilities/common/mergedeep.d.ts","../../../node_modules/@apollo/client/utilities/common/clonedeep.d.ts","../../../node_modules/@apollo/client/utilities/common/maybedeepfreeze.d.ts","../../../node_modules/@apollo/client/utilities/observables/iteration.d.ts","../../../node_modules/@apollo/client/utilities/observables/asyncmap.d.ts","../../../node_modules/@apollo/client/utilities/observables/concast.d.ts","../../../node_modules/@apollo/client/utilities/observables/subclassing.d.ts","../../../node_modules/@apollo/client/utilities/common/arrays.d.ts","../../../node_modules/@apollo/client/utilities/common/errorhandling.d.ts","../../../node_modules/@apollo/client/utilities/common/canuse.d.ts","../../../node_modules/@apollo/client/utilities/common/compact.d.ts","../../../node_modules/@apollo/client/utilities/common/makeuniqueid.d.ts","../../../node_modules/@apollo/client/utilities/common/stringifyfordisplay.d.ts","../../../node_modules/@apollo/client/utilities/common/mergeoptions.d.ts","../../../node_modules/@apollo/client/utilities/common/incrementalresult.d.ts","../../../node_modules/@apollo/client/utilities/common/canonicalstringify.d.ts","../../../node_modules/@apollo/client/utilities/types/primitive.d.ts","../../../node_modules/@apollo/client/utilities/types/deepomit.d.ts","../../../node_modules/@apollo/client/utilities/common/omitdeep.d.ts","../../../node_modules/@apollo/client/utilities/common/striptypename.d.ts","../../../node_modules/@apollo/client/utilities/types/isstrictlyany.d.ts","../../../node_modules/@apollo/client/utilities/types/deeppartial.d.ts","../../../node_modules/@apollo/client/utilities/types/onlyrequiredproperties.d.ts","../../../node_modules/@wry/caches/lib/common.d.ts","../../../node_modules/@wry/caches/lib/strong.d.ts","../../../node_modules/@wry/caches/lib/weak.d.ts","../../../node_modules/@wry/caches/lib/index.d.ts","../../../node_modules/@apollo/client/utilities/caching/caches.d.ts","../../../node_modules/@apollo/client/utilities/caching/sizes.d.ts","../../../node_modules/@apollo/client/utilities/caching/index.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/filteroperationvariables.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/@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/active-request-counter-link.d.ts","../../../node_modules/@operato/graphql/dist/src/index.d.ts","../../../node_modules/i18next/index.d.ts","../../../node_modules/@operato/i18n/dist/src/config.d.ts","../../../node_modules/@operato/i18n/dist/src/localize.d.ts","../../../node_modules/@operato/i18n/dist/src/ox-i18n.d.ts","../../../node_modules/@operato/i18n/dist/src/ox-i18n-selector.d.ts","../../../node_modules/@operato/i18n/dist/src/index.d.ts","../../../node_modules/@operato/layout/dist/src/initializer.d.ts","../../../node_modules/@operato/popup/dist/src/ox-popup-menu.d.ts","../../../node_modules/@operato/popup/dist/src/ox-popup-menuitem.d.ts","../../../node_modules/@material/web/elevation/internal/elevation.d.ts","../../../node_modules/@material/web/elevation/elevation.d.ts","../../../node_modules/@material/web/button/internal/elevated-button.d.ts","../../../node_modules/@material/web/button/elevated-button.d.ts","../../../node_modules/@operato/popup/dist/src/ox-prompt.d.ts","../../../node_modules/@operato/popup/dist/src/ox-floating-overlay.d.ts","../../../node_modules/@operato/popup/dist/src/open-popup.d.ts","../../../node_modules/@operato/popup/dist/src/index.d.ts","../../../node_modules/@operato/layout/dist/src/layouts/ox-snack-bar.d.ts","../../../node_modules/@operato/layout/dist/src/components/ox-resize-splitter.d.ts","../../../node_modules/@operato/layout/dist/src/layouts/ox-header-bar.d.ts","../../../node_modules/@operato/layout/dist/src/layouts/ox-nav-bar.d.ts","../../../node_modules/@operato/layout/dist/src/layouts/ox-aside-bar.d.ts","../../../node_modules/@operato/layout/dist/src/layouts/ox-footer-bar.d.ts","../../../node_modules/@operato/layout/dist/src/layouts/ox-page-header-bar.d.ts","../../../node_modules/@operato/layout/dist/src/layouts/ox-page-footer-bar.d.ts","../../../node_modules/@operato/layout/dist/src/actions/layout.d.ts","../../../node_modules/@operato/layout/dist/src/actions/snackbar.d.ts","../../../node_modules/@operato/layout/dist/src/components/ox-split-pane.d.ts","../../../node_modules/@operato/layout/dist/src/index.d.ts","../../../node_modules/@operato/utils/dist/src/sleep.d.ts","../../../node_modules/@operato/utils/dist/src/async-lock.d.ts","../../../node_modules/@operato/utils/dist/src/file-drop-helper.d.ts","../../../node_modules/@operato/utils/dist/src/context-path.d.ts","../../../node_modules/@operato/utils/dist/src/os.d.ts","../../../node_modules/@operato/utils/dist/src/swipe-listener.d.ts","../../../node_modules/@operato/utils/dist/src/fullscreen.d.ts","../../../node_modules/@operato/utils/dist/src/parse-jwt.d.ts","../../../node_modules/@operato/utils/dist/src/password-pattern.d.ts","../../../node_modules/@operato/utils/dist/src/closest-element.d.ts","../../../node_modules/@operato/utils/dist/src/detect-overflow.d.ts","../../../node_modules/@operato/utils/dist/src/timecapsule/snapshot-taker.d.ts","../../../node_modules/@operato/utils/dist/src/timecapsule/timecapsule.d.ts","../../../node_modules/@operato/utils/dist/src/timecapsule/index.d.ts","../../../node_modules/@operato/utils/dist/src/clipboard.d.ts","../../../node_modules/@operato/utils/dist/src/format.d.ts","../../../node_modules/@operato/utils/dist/src/adjust-list-param.d.ts","../../../node_modules/@operato/utils/dist/src/is-unvalued.d.ts","../../../node_modules/@operato/utils/dist/src/stringify-bignum.d.ts","../../../node_modules/@operato/utils/dist/src/encode-form-params.d.ts","../../../node_modules/@operato/utils/dist/src/cookie.d.ts","../../../node_modules/@operato/utils/dist/src/number-parser.d.ts","../../../node_modules/@operato/utils/dist/src/index.d.ts","../client/pages/calendar/calendar-importer.ts","../client/pages/calendar/calendar-list-page.ts","../client/pages/event/event-importer.ts","../client/pages/event/event-list-page.ts","../client/pages/attendee/attendee-importer.ts","../client/pages/attendee/attendee-list-page.ts","../client/route.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/file.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/filereader.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/index.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/dom-events.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/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/sea.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@jest/expect-utils/build/index.d.ts","../../../node_modules/chalk/index.d.ts","../../../node_modules/@sinclair/typebox/typebox.d.ts","../../../node_modules/@jest/schemas/build/index.d.ts","../../../node_modules/pretty-format/build/index.d.ts","../../../node_modules/jest-diff/build/index.d.ts","../../../node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/expect/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","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":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"7a1971efcba559ea9002ada4c4e3c925004fb67a755300d53b5edf9399354900",{"version":"1f8f1bd57f21c36cc25547a0cb99a097f5e5443815789833d230741315a3a948","signature":"aac4ddff3d5c1247433870879e9838b1e23b81a9b62c75f59c3e1b64802f2b16"},"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","274ed44f5d5ebbdb30e8257c5445d59a0b42f2524d9a2c882cf38823d8a260ec","1e5743b25a63fd34ffbae89adcbf248ee17db6ed08d90079ffa93803c3e80d2a",{"version":"d76de9e4667a54c93c8207f2d3ee87fca7d42d263f9b769adddc595482ecde1d","affectsGlobalScope":true},"15fe687c59d62741b4494d5e623d497d55eb38966ecf5bea7f36e48fc3fbe15e",{"version":"2c3b8be03577c98530ef9cb1a76e2c812636a871f367e9edf4c5f3ce702b77f8","affectsGlobalScope":true},"2f84bc2655654a2d8c149f5086a7e99ba1f2807dfc3a5b4ab7ee6e01f5e40e8f","0c8bec80ec9f9c2280384f378658f7617e0cdec533ce73917924e56bedbad096","0c8bec80ec9f9c2280384f378658f7617e0cdec533ce73917924e56bedbad096","bb0b973bdc7d00b95dab73142cef7f92ba96f276b152c80c2c933ac3ead51431","5e7e090243bf203382a5cb04eabbdc38d78f6d5922f16f543e4da8fa007d5ff9","cd823094ded7c8ac4f94ab6dc387dab699293eb8323d9f948304efc07e4ae7b2","c567d37119d6f56381af48eb7516030ccf35a36f9aca045e238d9c207a7c536c","b448dfbb5a6c4505f6b6beab587cf41f180ad62bcb506b44e3f2c09d20ba63a9","5565deadc1d553f9f1ef370351432c258d2a6f1a5ca47e574e5430db824468c7",{"version":"4ae1ed87c59518f4e0918a21409ec3020e97037a386b57953c6b9fed9cad6949","affectsGlobalScope":true},"905800cc110167503d0cf58bb0dd6fa4aaac1e9cedc9bd9c48e5d1f8b5b8d4c8","d17be577b99e59611df19ca2cf0356df554f55bb06617c21321fc4ec06b820d0",{"version":"5f30145fbc8ca508ae4e0d90a4fe9eaff490783f380a92f6aa262accdf7887b7","affectsGlobalScope":true},"2c887f29f6796ea68247c626acbef560ff29bb8d0042b641e4fc69559841463d",{"version":"f882b77c5939860d599b4b7bc39f741ebcd56123e18b284500f4b8923acd2e72","affectsGlobalScope":true},"0230bc76ed3a464531a43d2434d315b9cc2096aaca28bdaa65b8f9dce9f3bc81","559d2d1cd7f37dc2ac59e7adce198ad16a5eb0c7273d67b8e4ff72821b7c853f","afa8760622183e35e86f516574217eb1853b08cf2168be0bfe991643ece1a8fe","55abfe582ce4b1917687712edf558626a341b1b1f339452509d879b633a94557","0f28503979e769f6ee6e55350f621dc00e300f15688d52b02edc62d837d29b1d",{"version":"fe869c79d427e84d916011d082def68a793c3c13e157079fec399f250418bd50","affectsGlobalScope":true},{"version":"73a0ee6395819b063df4b148211985f2e1442945c1a057204cf4cf6281760dc3","affectsGlobalScope":true},"7f0717e1c516c7b6b6acbc2177d1bd910a5d1abb757c85182ca8d089c9b6e398","ccff6a039925da0bbddce77e8fe06865bb4bc144f8ca2f729b4390015044183b","17170eef7dfaf323a9d13878c01dc18612d3fb575a476d04ae151811e6b7a50b","a10cf8580197574d07cbf52a7db7fb0bd4ce265b4a2daad0f6bd743e15ceb9d6","31ac26722af0fc8b2f5977fdc61b7ee96fcd964ce5195cdd1be4f4396ff745e5","1f1b15c57e5c8cc81559bd6b881ea87a2a9a0114b0c090c9333fbb02def27290","444402ce58193c6200a4bc0f2fa49981fc2876a75c52c8348a2293b25116ddf9","278773120821f65d2c545914678eaf7119036962fb509415d8fbee90f48febdf","049bebe48b63ecbd1a7c90ce9a523bf894174cdfd73cb6d535c695e1ddb52281","6d1b27c60d543e0ccee15646fb1410fdcdd2f9924638dbecf550174f9ad1a433","35ab2aa25db33860d80b44f6b4281d40e11638cf6540f45bc15090ffcbeeed22","87b6665f770bf1569b1842e7a3b6728de9b04f3c2036505b93de312b92e2906e","6eab9baa28d5af65e9725319dda4f7a34dadefa8d2a7180efed1f156aaa64f1d","74800ff360a51f013407726011b96c0310dd4f3e5789abc73b166385a7ebdd77","6e303e9b77772e5496a58307cffc158a497301f7ec462d52a77f1f6985a8b158","b144df450421a0b83fa165d973afae89fc2d73bfbda5403cabdf13a6dfc3cc6d","f0380f581cb015778c0fe51e95b5b7f6dae237280654558469b2486c1572268a",{"version":"fd624f7d7b264922476685870f08c5e1c6d6a0f05dee2429a9747b41f6b699d4","affectsGlobalScope":true},"23c05cc4d97aa608b5ea8badadb4e1b0c4e306ed5d651c5d1760552e91d1ad92","4d4cf93a6b4c81851ad759e4569b6feb7a701e80b13a6f9d8d9c6012bbb86bd6","2e6035af8f3e43bf95e4983329c8277d66f9b271106af27b99a85d1c1b9daf4a","774308610e8d4a9954cd93840f99decbf340accfe3ad7365547950ede8162c92","36c15dd26c66c97b9df26ce34baacdb13fc760c5b9a2d789dcc317d27b189257","3d7c0b593a29d717b2b2ba3f03f819c3c48bf9e250d79c4a31860af80f177e8c","f228d440342f5d0933f5db093aafab2f07de24a427b4488ccfae27b7457d7666","701978f3975f96e76e3ffc2e1762e3a97e3d323812049fb6fdfd559579b89708",{"version":"4ab17f80ced148d509345cee706b2b85941515dd76e32cf47118bcdf6a4bd56a","affectsGlobalScope":true},"641089f0b8094ef74b9d4b3364d5dec1592d5e3b8a51c1ba491bc8872049e79a","bbbdb165aa809434877352b36d1828259f6e2fa83b849da0cd36ded2dac074fc","b42033bf1067564808e4d360d79281667c2b3b0792c2d615ab641eb85974d4ba","7af29b0589483f7bb8a99405ddb849f34bc053146184561ed4179e02f5fe4d0f","78faa3783191b2d5d5f7a9e835ee3f6a1456dc391d6eb5b40d3a27dfd9decd6e","08d32a8fc63dbf34214ebb90c547ef20082d7d60126ad146ef8704528fb5e99d","fc48282c397084016a939e1b3f91dcaf4199b6cba339d91d8b2dc2acade79762","eee4830208488d834cf35c684a7775c516b27e04ebe5a0d5c058d89a56ed1f65","a6203646763fb7340123eace99b924c9586ea3cf56f65fe8c56308e6ecb2b805","bf90d5c500d2be8276252beafb8f0c64db0892f5a0149b34f3315dfc665868fc","cf93fb9208a01c80f0fad245c4360356e5de6c2384b7641acf0b9cc2f5c42448","336398b0efaf964124e636a9b29c4edd5870aee79ac64bf87be58a9d66b7c048","571bc65ec37ba124e762bb822e14a2b8502dc684e356be8feaccbd6b9cadd023","2bbbefc1235500bdb5091f240dc8cba861a95342272f7d11b7574a0d2ef4f85e","7cd455fc4c4818f19263d73b29c59f3fb5fd54b45a6ab83ca3eb3661281db56b","1c6b9b5501774a2ece6574be8e26092800e3f1f836f8c179b4f9fdd271a620f8","bcd2426fd141157e04e3a8eff914b575403587f398cf0878f07c2f283e0d1afd","bac8ff394e831e4dd3f0961d6abb414b0e2b4ba16fdeb502d087ebf0340ed5f6","b8965484c1a08eeac238cf02a1498d72f3f3610059570a2c0fd207eb34245146",{"version":"e0f67f56df946dd9a6d6ae75f63eca079fd09b9ba0d9f13bdade5b5baf03eeeb","signature":"51ce985ef6c5b8553c6e05d54abd80818f824834b8362598a18ca24f9173f36a"},"cc6bcd576056d8ccc3bb297b152e9e4d694fa13a3790078fc9c03f361d82060b","038f7ba9c3cb0d2097d1fb3f6294c355999e257e42d6769280e1a978c84f871c","09c3ceafecc2e08f123ca5ee0886564dd574bfb3963d3d102bb31f0b1b6a8ecc","48ad022e52419d1016325b379d0ec9983e7543fa291d85bab1e05db4ba4d991e","9ca4c5743ac77f84a83e5c6812ca41880b5f532c8a344343c0ec5a307b8d5fe3","b4e0c5592f4108bc1c855177aaa1b61d09d02f8e0f59089388aba7206c47d4d7","cf9ea56da5e5ff29d5bcc81494fc845509b35d7bb498455b491b53feb40573e2","be88db092944405c7145d8c0242b9ad8434792fc6b709b03a10b349c32936d14","f4ce147c4745d8662c66dc47cc77226bf79eb00766801c8225b570d1335f0de0","b8442e9db28157344d1bc5d8a5a256f1692de213f0c0ddeb84359834015a008c","458111fc89d11d2151277c822dfdc1a28fa5b6b2493cf942e37d4cd0a6ee5f22","da2b6356b84a40111aaecb18304ea4e4fcb43d70efb1c13ca7d7a906445ee0d3","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","6f294731b495c65ecf46a5694f0082954b961cf05463bea823f8014098eaffa0","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","68a0d0c508e1b6d8d23a519a8a0a3303dc5baa4849ca049f21e5bad41945e3fc","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","b03afe4bec768ae333582915146f48b161e567a81b5ebc31c4d78af089770ac9","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","4f6a12044ee6f458db11964153830abbc499e73d065c51c329ec97407f4b13dd","3d9c5289873e27c3c4fafb5b5302d384484495d517b64892e515a7b30ee8903b","cdc4e7fd1b86c67e46621ee7ab6b709a582912caa997d9874e13c9896a0b9cc9","325ed40ce0219dd26de91b25a23fa0e17b9b6c8bd2921dec6178d81aaf7fc969","6a82472fbb0445e81d7975c7c63d3deb69285ce74081268ca3b3a66863ac54b2","27fd44ac917b8f78d65173dccad092de47f408db592e1abb355f661d49646312","700828225cf903b1fce7dbac7d6afe27aab606cf6f38d29382f6d8cce445f3f9","beab932797dc68066e0d458ee92dcc8cd6bc356599a70689007f68e74e340c8e","832b1083b3fe23aaa13484835124c9150c7ccb80f3a8c2bf007ce183f2592b07","03f3f03872ff6a90ecf2f05abf86b743b479e28111a53860316cbd3acd16e652","5125dcacb1417e6bfaf4ddebbc2c0574f29d8770f0b2f83c478c3a070566342a","d55838a1d000c98fd596e2b7d39342b564151355e9256117e83bb1b613801168","9351b38c9e979dc5cfdfe72a3a84adf234366740c69181c86036b362144bfb8a","15b4d80e51b3ea458c75c3a68644a41024f7d83c12f1b37715a53a8a7f0fe9f8","7df0848e1a42b4e997f23f3d432ef1920a6c3b0587d32aedb6ae851f3b1aee2b","b5d1c04406f012961931edc572ce53e835d8308178b58ae127624dbfdc63fec3","998699eba617b9157327ec3be6a0da70bc0ffd86a40a20c21ed619f6f5eda300","988e6ed31d7d505106c63046218e13120a1d058854dc0007ce729fea94e5a557","32acecbba5dbfbe22f171d1aeffbd1df9c8d8d17e386479eabbde7209e936917","5b2dafe66896138a12fc33743126ed316f93971f5233fccaf602784a3c8ac22d","99a2a7093ce043534c17c2ebebdce37f1c14ac2b77780a476cfb70e5a9d035e2","4285b3976062212af73781ab61cd2d35014d6c8922ccbc082272ea14b56c4119","f0512312084ae789be5862be6bbbb4bd4ece73ca1bdaa3193b1a2e3dc0b8ea42","e1925458d0ea29d0b4d314ac029c368dcc5b5b0421be3c05c36a12df92840401","ea65e3ce32dcbb61edb379f86b303732103a887fcfe61fb0434cd5398fc8c272","19236d2b3a4d329eecb7d867e62ba2ce8ff2a1c290d9b9cadc246e1e860232ca","c348a5e4481d61843505811ed74ca62234d5bde08db286a719a7421bf64fc8c2","5e0042ca0dbe77639779a6f861c2a32fdff5094031e013fccf95508b49f6d7ee","a71c55c9a1b3b2ec65730253d006210e146e9e6dea66ddd6ead989f4594b38c5","8c25ae69aa019b934abf435c960a99cf743762cbba8efad5d0066ff5f85eec00","e9dd5f52c1e6edc780ececd7b176b1ad8ce106f35a9f0fdb67f3c8668522e839","19f4c3da100f6ae2baeb548f5334cd238ea8da4a62812afe579f9ecc4fd6b35a","45d0f7764762786437b6c56387f6dc20a8b3cee0d41764c009638c62dbffb01a","386e5858ba95acd2c0fa5ed0c5bff19addb0ef8c32ebcaf171d5bdcbb9ab8a3e","8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","a208a319c19376e0e8d953d58ddee7b2cc8de3be72e110f97c7fbaa23bf1e5b4","709f62b8c98e1db14602e873218cc5d22f81d64cd88f25adb5b4d2705a7e5d5c","284bf56773e6da050a953484eaca4beaceedce83b49be512a527ce88111a9a1a","b248a2c86a9608ef3f4c5480fda53e28daaa858fdfbfbe9ed31e0e0a0aa83b69","04a54102a8f6780bee6e4fb11f2a4385bd5db1c108232b61ebf197296005fc55","a5acce94760166021b02598b5b4e9048d761cd713d0094743979f8dc97171395","c75c4ce24b1f7976aabe62f58b079210dda7c8bff461cb852903ce0063b876f5","1b0dddfa3431d9cf7489393f6eda8c39d64b0ad5006e61b323b41e946de1cb64","69f943fd9ea150bdae776e0753da4e9e7cb5bcd2c3b357241669cb7b1146a8ef","2f3641dc015c1f0d5a0c6d3425c05cccb6b4a58960014138e988d7ac7e89e95b","d76e3643450c47b47c246ddefcaee7210175a5200f96c68c36f22290ae908999","c4178d7f38a1a95f9e7763e4ede95a8ff29c134ce9dde7a5532c617489e73e32","9cac36fd227125723097775e2700432838e54d9c1530cd45f36653e20513dc61","1905cf2a2c68efce92637b0637dd1db38e2fd5683e61901e6447bcf8fca752f7","b461bba9fdefa4860fbbe4ab8d584aba4ff2410d7a940ccd08d797ba62b9b4ad","d38038c1daa64482b31d0ec1fa336d9a47b09e647cf788ceef2fb3e8310bb09f","a2ce66067019351078533b6eddb5240e96f01686f8014f8959d63a2587557fb7","27909ca3d149c1c6f45b29b6e2ef4b1cbf709bfe6c0c66276d4541f6afc8031d","5a6534f5d0435656321853f3e16dd4c7f944162ec9af7a99ff9d0142947bf359","27909ca3d149c1c6f45b29b6e2ef4b1cbf709bfe6c0c66276d4541f6afc8031d","b1d629950cf09eed9cc08a0f2f4ac780de6f05c2e542b907777f7eedfe77097f","27909ca3d149c1c6f45b29b6e2ef4b1cbf709bfe6c0c66276d4541f6afc8031d","d5d357f555e6f34eae1b87fa0d2622cd4d243145c705dc6408ceae7f591cfd40","30d0c3169d63adaa3d171a6c5fad4bb3c904d70608bea6024d1d906baca96be1","3854977cd654de296953b729bfd49a31b1073d6d1276f3c79a8c68704694af3e","80a3bbe0e4fdfaac2c0a8b92a3ed66d3ded5e8f454c5790c8d593872fc1197f1","88cda4269c54f0803834fd62b2fac61af8bff7a085693f7ca9df85c1f19dee8a",{"version":"4adff7bda52ad8e5570a03f896ddb148abf3a7305ba35cbbcfc880d0f4d0c664","affectsGlobalScope":true},"754006450e5de2b7dac5993194326e3a65c1474673f7304c20810f5eda18ca05","fdf0aa1a72ff0188a9013926201a391116ef6701cd439b89850786abdf755fb8","7d54d48a4365f355a7759b1e29f43dea9163a9445d3f26e1234dea0af3e6a16d","78647004e18e4c16b8a2e8345fca9267573d1c5a29e11ddfee71858fd077ef6e","0804044cd0488cb7212ddbc1d0f8e1a5bd32970335dbfc613052304a1b0318f9","b725acb041d2a18fde8f46c48a1408418489c4aa222f559b1ef47bf267cb4be0","85084ae98c1d319e38ef99b1216d3372a9afd7a368022c01c3351b339d52cb58","898ec2410fae172e0a9416448b0838bed286322a5c0c8959e8e39400cd4c5697","692345a43bac37c507fa7065c554258435ab821bbe4fb44b513a70063e932b45","cddd50d7bd9d7fddda91a576db9f61655d1a55e2d870f154485812f6e39d4c15","0539583b089247b73a21eb4a5f7e43208a129df6300d6b829dc1039b79b6c8c4","7aba43bc7764fcd02232382c780c3e99ef8dbfdac3c58605a0b3781fab3d8044","522edc786ed48304671b935cf7d3ed63acc6636ab9888c6e130b97a6aea92b46","1e1ed5600d80406a10428e349af8b6f09949cd5054043ea8588903e8f9e8d705","de21641eb8edcbc08dd0db4ee70eea907cd07fe72267340b5571c92647f10a77","a53039ba614075aeb702271701981babbd0d4f4dcbf319ddee4c08fb8196cc7a","6758f7b72fa4d38f4f4b865516d3d031795c947a45cc24f2cfba43c91446d678","da679a5bb46df3c6d84f637f09e6689d6c2d07e907ea16adc161e4529a4954d6","dc1a664c33f6ddd2791569999db2b3a476e52c5eeb5474768ffa542b136d78c0","bdf7abbd7df4f29b3e0728684c790e80590b69d92ed8d3bf8e66d4bd713941fe","8decb32fc5d44b403b46c3bb4741188df4fbc3c66d6c65669000c5c9cd506523","4beaf337ee755b8c6115ff8a17e22ceab986b588722a52c776b8834af64e0f38","c26dd198f2793bbdcc55103823a2767d6223a7fdb92486c18b86deaf63208354","93551b302a808f226f0846ad8012354f2d53d6dedc33b540d6ca69836781a574","f0ff1c010d5046af3874d3b4df746c6f3921e4b3fbdec61dee0792fc0cb36ccd","778b684ebc6b006fcffeab77d25b34bf6e400100e0ec0c76056e165c6399ab05","463851fa993af55fb0296e0d6afa27407ef91bf6917098dd665aba1200d250c7","67c6de7a9c490bda48eb401bea93904b6bbfc60e47427e887e6a3da6195540be","be8f369f8d7e887eab87a3e4e41f1afcf61bf06056801383152aa83bda1f6a72","352bfb5f3a9d8a9c2464ad2dc0b2dc56a8212650a541fb550739c286dd341de1","a5aae636d9afdacb22d98e4242487436d8296e5a345348325ccc68481fe1b690","d007c769e33e72e51286b816d82cd7c3a280cba714e7f958691155068bd7150a","764150c107451d2fd5b6de305cff0a9dcecf799e08e6f14b5a6748724db46d8a","b04cf223c338c09285010f5308b980ee6d8bfa203824ed2537516f15e92e8c43","4b387f208d1e468193a45a51005b1ed5b666010fc22a15dc1baf4234078b636e","70441eda704feffd132be0c1541f2c7f6bbaafce25cb9b54b181e26af3068e79","d1addb12403afea87a1603121396261a45190886c486c88e1a5d456be17c2049","15d43873064dc8787ca1e4c39149be59183c404d48a8cd5a0ea019bb5fdf8d58","ea4b5d319625203a5a96897b057fddf6017d0f9a902c16060466fe69cc007243","3d06897c536b4aad2b2b015d529270439f2cadd89ca2ff7bd8898ee84898dd88","ab01d8fcb89fae8eda22075153053fefac69f7d9571a389632099e7a53f1922d","bac0ec1f4c61abc7c54ccebb0f739acb0cdbc22b1b19c91854dc142019492961","566b0806f9016fa067b7fecf3951fcc295c30127e5141223393bde16ad04aa4a","8e801abfeda45b1b93e599750a0a8d25074d30d4cc01e3563e56c0ff70edeb68","902997f91b09620835afd88e292eb217fbd55d01706b82b9a014ff408f357559","a3727a926e697919fb59407938bd8573964b3bf543413b685996a47df5645863","83f36c0792d352f641a213ee547d21ea02084a148355aa26b6ef82c4f61c1280","dce7d69c17a438554c11bbf930dec2bee5b62184c0494d74da336daee088ab69","1e8f2cda9735002728017933c54ccea7ebee94b9c68a59a4aac1c9a58aa7da7d","e327a2b222cf9e5c93d7c1ed6468ece2e7b9d738e5da04897f1a99f49d42cca1","65165246b59654ec4e1501dd87927a0ef95d57359709e00e95d1154ad8443bc7","f1bacba19e2fa2eb26c499e36b5ab93d6764f2dba44be3816f12d2bc9ac9a35b","bce38da5fd851520d0cb4d1e6c3c04968cec2faa674ed321c118e97e59872edc","3398f46037f21fb6c33560ceca257259bd6d2ea03737179b61ea9e17cbe07455","6e14fc6c27cb2cb203fe1727bb3a923588f0be8c2604673ad9f879182548daca","12b9bcf8395d33837f301a8e6d545a24dfff80db9e32f8e8e6cf4b11671bb442","04295cc38689e32a4ea194c954ea6604e6afb6f1c102104f74737cb8cf744422","7418f434c136734b23f634e711cf44613ca4c74e63a5ae7429acaee46c7024c8","27d40290b7caba1c04468f2b53cf7112f247f8acdd7c20589cd7decf9f762ad0","2608b8b83639baf3f07316df29202eead703102f1a7e32f74a1b18cf1eee54b5","c93657567a39bd589effe89e863aaadbc339675fca6805ae4d97eafbcce0a05d","909d5db5b3b19f03dfb4a8f1d00cf41d2f679857c28775faf1f10794cbbe9db9","e4504bffce13574bab83ab900b843590d85a0fd38faab7eff83d84ec55de4aff","8ab707f3c833fc1e8a51106b8746c8bc0ce125083ea6200ad881625ae35ce11e","730ddc2386276ac66312edbcc60853fedbb1608a99cb0b1ff82ebf26911dba1f","c1b3fa201aa037110c43c05ea97800eb66fea3f2ecc5f07c6fd47f2b6b5b21d2","636b44188dc6eb326fd566085e6c1c6035b71f839d62c343c299a35888c6f0a9","3b2105bf9823b53c269cabb38011c5a71360c8daabc618fec03102c9514d230c","f96e63eb56e736304c3aef6c745b9fe93db235ddd1fec10b45319c479de1a432","acb4f3cee79f38ceba975e7ee3114eb5cd96ccc02742b0a4c7478b4619f87cd6","cfc85d17c1493b6217bad9052a8edc332d1fde81a919228edab33c14aa762939","eebda441c4486c26de7a8a7343ebbc361d2b0109abff34c2471e45e34a93020a","727b4b8eb62dd98fa4e3a0937172c1a0041eb715b9071c3de96dad597deddcab","708e2a347a1b9868ccdb48f3e43647c6eccec47b8591b220afcafc9e7eeb3784","6bb598e2d45a170f302f113a5b68e518c8d7661ae3b59baf076be9120afa4813","c28e058db8fed2c81d324546f53d2a7aaefff380cbe70f924276dbad89acd7d1","ebe8f07bb402102c5a764b0f8e34bd92d6f50bd7ac61a2452e76b80e02f9bb4b","826a98cb79deab45ccc4e5a8b90fa64510b2169781a7cbb83c4a0a8867f4cc58","618189f94a473b7fdc5cb5ba8b94d146a0d58834cd77cd24d56995f41643ccd5","5baadaca408128671536b3cb77fea44330e169ada70ce50b902c8d992fe64cf1","a4cc469f3561ea3edc57e091f4c9dcaf7485a70d3836be23a6945db46f0acd0b","91b0965538a5eaafa8c09cf9f62b46d6125aa1b3c0e0629dce871f5f41413f90","2978e33a00b4b5fb98337c5e473ab7337030b2f69d1480eccef0290814af0d51","ba71e9777cb5460e3278f0934fd6354041cb25853feca542312807ce1f18e611","608dbaf8c8bb64f4024013e73d7107c16dba4664999a8c6e58f3e71545e48f66","61937cefd7f4d6fa76013d33d5a3c5f9b0fc382e90da34790764a0d17d6277fb","af7db74826f455bfef6a55a188eb6659fd85fdc16f720a89a515c48724ee4c42","d6ce98a960f1b99a72de771fb0ba773cb202c656b8483f22d47d01d68f59ea86","2a47dc4a362214f31689870f809c7d62024afb4297a37b22cb86f679c4d04088","42d907ac511459d7c4828ee4f3f81cc331a08dc98d7b3cb98e3ff5797c095d2e","63d010bff70619e0cdf7900e954a7e188d3175461182f887b869c312a77ecfbd","1452816d619e636de512ca98546aafb9a48382d570af1473f0432a9178c4b1ff","9e3e3932fe16b9288ec8c948048aef4edf1295b09a5412630d63f4a42265370e","8bdba132259883bac06056f7bacd29a4dcf07e3f14ce89edb022fe9b78dcf9b3","5a5406107d9949d83e1225273bcee1f559bb5588942907d923165d83251a0e37","ca0ca4ca5ad4772161ee2a99741d616fea780d777549ba9f05f4a24493ab44e1","e7ee7be996db0d7cce41a85e4cae3a5fc86cf26501ad94e0a20f8b6c1c55b2d4","72263ae386d6a49392a03bde2f88660625da1eca5df8d95120d8ccf507483d20","b498375d015f01585269588b6221008aae6f0c0dc53ead8796ace64bdfcf62ea","c37aa3657fa4d1e7d22565ae609b1370c6b92bafb8c92b914403d45f0e610ddc","34534c0ead52cc753bdfdd486430ef67f615ace54a4c0e5a3652b4116af84d6d","a1079b54643537f75fa4f4bb963d787a302bddbe3a6001c4b0a524b746e6a9de","7fc9b18b6aafa8a1fc1441670c6c9da63e3d7942c7f451300c48bafd988545e9","200a7b7eb3163da4327412c650e43fbe66c73604a23a694f95ede53c250bfc3b","5141eb835c029758a73c9179aebfc4cd2c4238d7d2d196deb85f0361d8913df6",{"version":"2e4fe50f8c8205a950548b85daec792d009a314835178c3e5f7e0cfbeaa885e3","affectsGlobalScope":true},"a960dc35ca7a0854d06432d698547debe3a4760438deea197fde8a3ff2101180",{"version":"757a2bb3e56cbd571c785427f4b93e2e74f86db9e67dcb0efac34c4c84d9f9df","affectsGlobalScope":true},"5c91a660571f17ad31a88c0d3ff9fc0065d8cd587b9ac8bdc8a4c7e7d08753cf","f67907c524206478ea6112420a3854c603fb946c0891d6664d150505594f9b34","db5cf245f400078a6cb2a41d1208d35d776e687903cf79a1b610ad66a3252fd9","3bfa2867f360d20bbb78bbea1add58e734893a21ad22038fefcc1af0befe2fca","5476286aef864b9a6297d91fadc64e5762baf8eae1524c634f633ea695494897","16fe611010eb1c0bee61b20b57a3cf283c280b707d451cf6895409e2bdc8d305","7d0fe089b8188e04d2898f9afbb7ab1082dc30dfc434844ac0a7cb95964c6126","706800c0d3302ab65e9d24e1560ce5c169bb6d4cbafee662e63ca3c9628e3b6b","ee232823b1b40017f6939e15e8f3c8279e9db426e84affa30b47d8f0406ef69b","83b5f5f5bdbf7f37b8ffc003abf6afee35a318871c990ad4d69d822f38d77840","656e8a14a0af2822043ecc64532a6d82715811a9c13aececf0538d9851a257a2","6e0169f82d6149f0a03c51e9800bb65b83ddb15240c2ba1763a14661a39160d7","c5d3ba34c069c7feb9d5b985fef35b1127e68326359a6c83d0cc536fdc4c0617","70c00093405a88dca980746e0e1c055bb4747063a3761e401370e98776c0fe73","7b2f581674a1657db5eede4d6c0e59dc2be2054af2d30a7bac6b526a9eb52465","b3dec0879e876086c6bd5d93b671bf3a034da7712ea60b6e815f1de987df060a","3d7ab41a0ad901c22c33daab084470cfc69c6b095ec422127ef04413e6e864ec","58ff34d2ab6b468611796aa4685392e67be1b08a9c2b4831404b34df2609f45b","5f10bad92458e398d348d8eef2875ec3accbc050e153a75a81f56d35c8e21bda","8bec5cde1012d040461c20523428d7ff8b1459f9ba2c6b5164a8a3f0bc1d4a65","86852a9821fdd9c72471aeb3c20393df58d682147d6fdce7c2c2b9ed415c02be","b66074641dffe87e540bee7f70b8d9af83395090ca1dbbdfaef75736a0f0c5f4","8a8c1f30470d820fd547051983d17e53494b016ae400135252b498ef9f0a2524","791989ce6d2b48689362b3469533430d99f14111b77720965165c059b692fefe","87c676ab377362b5f11d19279b63f70c8fc935892c5fbf5134691e454fb989a0","0e6274165343c2c0202d72499956c532090784a566efc83182d7f095743d8efa","8b6bed0c1e8e22aae2883a6475eff2043ede2ce055c4be0deaa02e0fef381fd5","583dd7b231fb2fc25111fd22b5ac17307f741e6f1da8c440e1c33dcb77024d8e","2bc7ed3303d2afdfd52f80ba484f46286d8a24e3f0da0f6043614d7d082fc810","9b51dd74a388c13e157c457cc39d59dc2aae2134f6a21cc6b695219932cb8817",{"version":"db06f4cdf70e3689f0cd5a96a6836f34024ad61e8dd01473560ebbcae09c532b","affectsGlobalScope":true},"9f1ae2c58e41b2eb5727a63b374fb0c5fac98faa0a737bae010e82debf1bdc08","a5f9f6c1cc2a4fc8e1b52a94fc3232cb6a489f2be222425e259974d34546a5a1","bfb9a2b9f4fed4baff4d819ed24e3a598662bebf536e146230d302f38fdb0a8e","6db51e5c67f75d0648454feecf99ce93fcd1ce9e552f8c50b9820b398cd05981","cfa45a513d247964ac2bac63039ba9ef4732986a56427ea9de70695cec3c07a2","4d55388ca8f7a9131bec34f06f8e1172ba2c933c18a89b3d25ee009697067725","2582712286ba362a14a9f36070b3da3ba089cc65e6e9696faa28f8769a8e762b","6e0f014e7fcf5c1f253f33b55466a72493459a86def0a4fdedb11a1caf81a429","9ea7ae58deb3a9fb7b0fb55cf9fb0e201d2a7626136f80a5f270e2ab1441fc74","0a9b057494a3e9665421e7c54f283f5285d26aa5c040f0c5536960f0bb460a75","ec5890710c087c43f575ff65eb0cf09b32e360ee428def89a071c70cf742b393","795021d7dab0702aecef8b6d860a4a24ed58c7163e0bf70e73bd5bca8427765c","a1ef544e4387e2f89cc7c33ff805fd77f1472c82e6605d8c8a791209d12bc6fc","1904d944994e9acf5018e4dd72c19596f38e57cf8429c9d8f46891f7edd88ddc","25978fa21b2728d3277888d33df9272738605df94140b4b0c883cf352ec31ca6","9371aec333ed231b4500aa79a114e28c85a8ccf732bb3610ac3081c806578243","d196c696562583b06a5cf670525b02c6df0464623cbef933dfed03aaba5480f0","134a7ce89567aeb83a1b731f0e6b45620c858760ad365fac098a3a8ad4c92be7","c430b361d4a0fabfe678428ff19da6dccad1790f8e6d598d0707a7502655edda","62f3aa971f3a4759c226029c4bb849e341d287bbb7fc314203f2136752c696e4","f2757349b90093adfe0df91a96419eb6b6c379ff8e5c03c12d9dd781c179c41d","494a9c70be9158c65cb37be8b54029cbe96d99871b0d868e55a026e761bc5fb4","ba8619d7e22018261e3fe406102881c4a748a8381f2f9354eeae817af128de06","87433a86e6e2053f4aef34b861af00440c7ef7d56102fc0d304340c126bb83a6","87cd88189b1710aa1c3e9b78eb5a86db061fe04dfee4839bc7d38f629cc26607","d494a2e9b57ee7e4ed18de686c431f853b586d9bbb81cc0251f29389156ebb1a","6882eb3444234bb5fd0f88771b3dac44f96549a16c88fd834c29486e86baf86f","7b18a8a68a7d84946f836e672e1bbb37e349be74124912dd2886da4fb5dad505","c57dcbf8db47e0f0fd15686fc4b52442a8af3d13139a6e5dbd776761ebe0647c","42791bbdba1514368154fc3836f8104c757c7b3a8c397f240581f10c139e8c2a","441d1b95e4fd393e431ae7acd1db07a374cab36fee0b2c2f35df922924b66813",{"version":"7f903c9b76be7dac34e734b8e6c6ec9b4cb4e1c14a13ff45bf3835907344b8c4","affectsGlobalScope":true},"d017689501673a9d57f1f32e1a07cf9dd6be955ee73346e051f2d763673ae26b","277b28e94895dcd7f32310b2efe1006483a9b6eddcac0607f12833da6276b750","66045ddbd0510af275cf0deaf7e86f342094313f06a71a1f0bb32b4ffb1d10a5","81e1d30ce7347af33131e707eaaeb3330a2801911c3cf50fae3d2874e7f2bcaa","15aefea7c2ce15c250b3025ab6431bb2f84c99420aac4015d6a7d43f647bf229","cba546a05926d9c3256b7e5938cd9744c17803eae81b5406479b411a7002375a","805e9c8babc6b2509084f0dff46f3c1871885331186b7b3cf16947d521b33b2d","b67ef2c6911442317b3b280523033712994ced2aa44cda6539c232db22b0e493","73d1c8b3fc0e917c7f47aa8d2dbb68397b634d779e4fd8f6676fbe3cf36d9ef2","c57e6ba24275aad3ef7dde7983f5ee53eab5118ebbd2020c0a0e2119b5932ac6","5053f67f8037aca21495c51e03cee651496cfd5e2b46dd6a73f35a1f4839b66f","557f8995fc591044e6bdbd12859ce24be91fe066a47673c5152b10ba5cbf9e33","166c98724b450733a772e58ac7f0f124731186464d65875dd8384a65a6c60c05","1ea825871c32b0dfb45f0a9cab53e65a7dadbf53921179d04e8e60a8b8f72525","d308b53ea26af4dea94005bf5c001c415270f3c225aa597832ab7701a21dc58c","578b2e06a3fc802ec4613f95d02f43e2b131281c69269e2e9d9113aec0263f23","92d91a4cd8c5818ab027d8f1fe55268fdf3753b1ef76ad6a3843b5f4d18aff76","f7da5295be02abb6babfdefa742fe007f282bf5d96e12b1a90eb5eb28c426aa4","9aaf320d3b830c1e04939eb349f6f1faa0fb2ec878e911fb63988108104b69e1","881f42100912eba832ddeb5b9bd8363b9dd0e77da078e17907a93b4a3e39b0a4","0c2ef96912e1d96f084e6988badd73dd0fac820fed0626cdcf19fa1344e3e020","a05543e6da0423cf9bff1b89d63f64712a88646a26df09a6a7d541ada9986bfa","8afa24f350142486e6618a701c82c40859d6dbf32dc264f874e0052c725976c9","b66c0eef108510a271ff2ab1261da265eef0aafa10bebde1f2747ac47ae5fa9a","1083ebb9f18ad0276fb42a848eda817d68784a32fb69ae383f0510a1017e9166","8891b1a90fc2546c79a14767d2d2671fd9925264d13ec0389b7b8977240dd735","f40c9e3016fd29c0fdd38e2cc75277f073feebb1a16143b30309db4db503bc36","bd62771361833fab47bb62bb6f9d17ad141e25cf6c4b3b282e65a49015d3fa39","300dc1d77c050aa02cb0d0c103ee627fcec34b8f94e3997922e466b0054911ac","eff94899e6ef67beaa8cd37a4d88dabf6f324ee1cbf0b327c2fb9e0f611f5779","e63bebf888fc246d3abccd32cfa64a842df2d43fe3e84ab150f702cc84983203","83d48582d704ea227f2b18a7531f425ce078b0ac6553dbfad8e2dd97a3072f17","1f5c9392a7d8ec70731aa0c5efcbac4de4a828179ac66f21b1173c87c187001f","45d5cff1cf1b381e5c7d75f763197b32f09aebf1da74e4be69ca419989cb7bd6","6b0db280d1e791a619bd8daba9035fdd755c372823943724d728d6dafa3d1516","8ab1cf9fbbad4959c0f2d070912147bf259d88df65f2b9b9bb8e7a71d193a05a","9950be2ac5f38a2bf088d253e452329025b6f19563d0ffe6204d1a30e097bf04","2fecd3f71dd4b50dcdea230320d9417bacac53edb80ef9ac299ed0931dcf022f","5dcd41aeb5f7119177adab46147589a1618f2b35bd976e6c3a20ec328f58d1bd","eb86b56452a1c3acc65406d873db44292865f876b2d79e04d84c5b7a0a4aaadc","7f1cf2dab123e185e96bf46e7380fbb3946b8a8710263e2032429303496c2a34","3a33dc0aaca86bfc68a58b603aeada539a0e47bce983d88473c7076318b91c9f","dd671af188f9ada1b5b6b6762ba51530dd5e30641358a1afcb86bf7921bd6b6b","ac415e6d3fbf97d543cb04fb812dc8fc5db14329f7120476e425f44674034168","c1a660a90d6565c602fa458f53849140c9008b7000ce8823443a2b1ae9ca46a3","0f81a53d54fd2b4ae2bf60067d616de99884bda21cb5784d942089d52319fb97","86d356e64ab8d56852623677eb1bed0c106703aed9b7788ad8a5a56e647822cb","29dca1b5f0cac95b675f86c7846f9d587ed47cc46609dd00d152bcb37683b069","231d829c892caeb88dd469e0847bf9d14e29c82b8b158b381ec866c868adf9af","48ba49f8bfce8c08ad1e7e54f0b85da9db7317ca76835d1c2640567e3fbd50c6","60997095f458b8c2c94af5759c796d9d17678e740a41a04c3e518c14c47f2ee7","d033de6f37b4734cea6214bdde25f0eb60999f8f803856eae89eb804c0b6e0fe","6d8223035d3e6d8ed0760d4579dc0cc582c8972ea198e4919c8080ec3e9baf0a","6184309fe39e2fe444f4ba94e7cd1abef48fcb48e258457c3b77c65828184241",{"version":"98c511f60c3079d731a35353a47bfa89dd79eeacad48a45d07170d22ef4bfd02","affectsGlobalScope":true},"0cb349f3a6866eb4ec6424b3844fa51498b32402f922d5a571d069d7cf44c68f",{"version":"517dd6f73e4d20b38841f7be1edb2fb6f4152775ac3a9c04e319ff0b3509c8ba","affectsGlobalScope":true},"93458a5ce30da930d0ed8922929cddf433fc6f4200815b6097d3e28c5ea87488","b6b0e59158a1c8ad34747722a19398d7bf26701e9ee2a130d80a52a815a8bb92","c97f742ef6e8c0bc4e5e4ad8d90b4489cdd3bd1c007510ee4a2e4c09266a11d2","6a17f676d06d3e695520b275dd483b4fe62d34b84926c0bf6425c08490ee2c41","3c523c4338a858825c62005f03ff49eeaf8290bdda52a8b8554be555bab7a077","5582fb24ca35ef8a72d61a095d62ae2ada8143c33bc56febf626e333d3a5b013","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","47b1df5805c9eb0fcd841d15513b4c0d6b59e4751cc7ea51ccfe1185637987aa","c36d51dd36b3887d7c2b81ebbffa009fa0ef62f4421f6b6b2ac8f06fcc6328e6","86d239790a025b4f1213571ed5d578b9080415e1218b253b499ed73ac436ae63","9d7d5dd5b13904d5bf406a43a74fc562bebb68e45d4bc86af60ff00c394e1244","05cfea0488751015b0b85911b6cdcde7c6cebdd9b8cada1ec0b5c1736357a552","f5800813e5c0d6c27d73b76f2c99f39bdfd6229d03553a8a9ae485f6aeb94425","4d5e201faa4bceca840b652dfc10795170c061f498e19429a06e056490aa69aa","6cf5098c7bf0c14358b656edd6103df1ae9f8c6a94abca9df8650c2b520d8096","ee11b7061adce4a1c0370620949a57851215b152a5632d2faf1aedbc90ad0520","f8c86fcbfb0a1e69a0ed28d3249cc33c312fa23a39c17e15cbbcc539bdcdc303","85e0f00b17c3ae8cd88438c754a2c43f4a9361e685b97a70e52e33afbf62488f","39d2d450df6efbf38585fd316f18922c8ac3fdfd4c3fc412d0bee34e2bc86378","4dcdfe4c18557fc02d8cb22cb422cb98bfeba8158aaf18cc66f9d99293ebe2c8","7efea6f2270a14f1b0d5f472f2a6fcb0a97beb677299e10b073cc2abdabeef51","385679adcfaaa1b561983bd5ae140b4db1e360a534f9685ee87f5019540c9ce8","3df6a0e8bdb7199dff6cf75c0250316f06b87c982bb47460960a1c5a793f5ca6","b3238dd00b7796eda3f507726e9882a55ff7043b249be8309abed22cfb7d7463","f499d7fb533781939c7a5ab778ac6e6c8ffe65601b1a61a843c36ee0013f05b6","7fcb76be88d4a64f6318b5a24b57021d7463f24485a3d1a931bf664c7e437534","940995980343a2bfebf515240e5eec487f845002a089bee0d18656ebf61d59aa","098ec42cd54c2b3354584c4fe8ad143040114891dde762741522b62788772f0d","1e73d612f806d183d6c16c4135c16c1a14dd827c1a67097e72ab1841852bfcb9","30046b0787c577061d43e498b507da8a249fbc58bbe33a09a7bef777e1d5fb67","cb2de9f1d7d286191834eeb331d23dc69eeb322745114ddad1695e4c575b5feb","dc2461db89dde29306a73a2926e2cf874e981ef034412f4d1e3d06d45bb3127e","13a5d8ec52111b64ed8fdcb47ab664b60085733c46c44aede33fd2926840ac31","ad7ab3cf33ac3e8767de4e363bb439e3095fe2dba7f64255c72d6beccf96aea0",{"version":"f736b1294772d244b8dfd13dc512a410558c801fc69878ee42b5a9752db8d517","signature":"1164b28b00644603ec9f58b88011b59eeb0eee3b595d5451ed519448f965df1f"},{"version":"bc952c05c53765fb0d794dffc659049dcee7177339e4694fa702f475817ca72b","signature":"5e2253a715d41ab1214ab6875d174096c9f73493b2d859b3354ac9cf5a50febf"},{"version":"28716122aaa5d669b8a6cf33bba38cbbf01e8c6a35c6d8a0b8313a31269e38fc","signature":"50bfcc56088cf1f464a9a90a8a57ffacb45d78272b795dd45d5c9969786b2639"},{"version":"ec90f5a90f933d299720e4f82d58b37bc53b2aa15b426e013975ebe021012c94","signature":"96e7c653dc8fcb4e94c74f697e583980fee86dc56e3beef43bd957d05ab5075d"},{"version":"a4aa3789cd54d8f59600a68ab8d05db6f1d459cdae05838c0af1cc48e5dd5325","signature":"41ed70b3deb1a09ea46539eed62c8651b0fe9bee600b226bde7f02ee71425498"},{"version":"b52a30383571bebf6f83007f813885f861a1e7e63745e6b102a77859b0cacf76","signature":"39f8a2f0a251fdabe8e604a08e8e857e307f7701dc1786b118275a269d954b17"},{"version":"016974e8fe857213be5064bc026d49530c115a4b2e2328a088a1210a910b571f","signature":"b735f43de215e676c74816e68451c4eefd64177f3c86e7c25e6a57043ae178a8"},"acdc9fb9638a235a69bd270003d8db4d6153ada2b7ccbea741ade36b295e431e","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"a14ed46fa3f5ffc7a8336b497cd07b45c2084213aaca933a22443fcb2eef0d07","affectsGlobalScope":true},"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c",{"version":"7fd7fcbf021a5845bdd9397d4649fcf2fe17152d2098140fc723099a215d19ad","affectsGlobalScope":true},"df3389f71a71a38bc931aaf1ef97a65fada98f0a27f19dd12f8b8de2b0f4e461","d69a3298a197fe5d59edba0ec23b4abf2c8e7b8c6718eac97833633cd664e4c9",{"version":"a9544f6f8af0d046565e8dde585502698ebc99eef28b715bad7c2bded62e4a32","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb",{"version":"8b809082dfeffc8cc4f3b9c59f55c0ff52ba12f5ae0766cb5c35deee83b8552e","affectsGlobalScope":true},"bd3f5d05b6b5e4bfcea7739a45f3ffb4a7f4a3442ba7baf93e0200799285b8f1","4c775c2fccabf49483c03cd5e3673f87c1ffb6079d98e7b81089c3def79e29c6","d4f9d3ae2fe1ae199e1c832cca2c44f45e0b305dfa2808afdd51249b6f4a5163","7525257b4aa35efc7a1bbc00f205a9a96c4e4ab791da90db41b77938c4e0c18e","b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e",{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true},{"version":"9c611eff81287837680c1f4496daf9e737d6f3a1ff17752207814b8f8e1265af","affectsGlobalScope":true},"fe1fd6afdfe77976d4c702f3746c05fb05a7e566845c890e0e970fe9376d6a90","b5d4e3e524f2eead4519c8e819eaf7fa44a27c22418eff1b7b2d0ebc5fdc510d","afb1701fd4be413a8a5a88df6befdd4510c30a31372c07a4138facf61594c66d","9bd8e5984676cf28ebffcc65620b4ab5cb38ab2ec0aac0825df8568856895653","396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","5e8dc64e7e68b2b3ea52ed685cf85239e0d5fb9df31aabc94370c6bc7e19077b",{"version":"ea455cc68871b049bcecd9f56d4cf27b852d6dafd5e3b54468ca87cc11604e4d","affectsGlobalScope":true},"c07146dbbbd8b347241b5df250a51e48f2d7bef19b1e187b1a3f20c849988ff1","45b1053e691c5af9bfe85060a3e1542835f8d84a7e6e2e77ca305251eda0cb3c","0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7",{"version":"ae5507fc333d637dec9f37c6b3f4d423105421ea2820a64818de55db85214d66","affectsGlobalScope":true},{"version":"46755a4afc53df75f0bfce72259fb971daac826b0cdd8c4eaccad2755a817403","affectsGlobalScope":true},"8abd0566d2854c4bd1c5e48e05df5c74927187f1541e6770001d9637ac41542e","54e854615c4eafbdd3fd7688bd02a3aafd0ccf0e87c98f79d3e9109f047ce6b8","d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","8221b00f271cf7f535a8eeec03b0f80f0929c7a16116e2d2df089b41066de69b","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","7fa32887f8a97909fca35ebba3740f8caf8df146618d8fff957a3f89f67a2f6a","9a9634296cca836c3308923ba7aa094fa6ed76bb1e366d8ddcf5c65888ab1024",{"version":"bddce945d552a963c9733db106b17a25474eefcab7fc990157a2134ef55d4954","affectsGlobalScope":true},{"version":"7052b7b0c3829df3b4985bab2fd74531074b4835d5a7b263b75c82f0916ad62f","affectsGlobalScope":true},"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","4b55240c2a03b2c71e98a7fc528b16136faa762211c92e781a01c37821915ea6","7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df",{"version":"94c086dff8dbc5998749326bc69b520e8e4273fb5b7b58b50e0210e0885dfcde","affectsGlobalScope":true},{"version":"f5b5dc128973498b75f52b1b8c2d5f8629869104899733ae485100c2309b4c12","affectsGlobalScope":true},"ebe5facd12fd7745cda5f4bc3319f91fb29dc1f96e57e9c6f8b260a7cc5b67ee","79bad8541d5779c85e82a9fb119c1fe06af77a71cc40f869d62ad379473d4b75","21c56c6e8eeacef15f63f373a29fab6a2b36e4705be7a528aae8c51469e2737b",{"version":"629d20681ca284d9e38c0a019f647108f5fe02f9c59ac164d56f5694fc3faf4d","affectsGlobalScope":true},"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"a42be67ed1ddaec743582f41fc219db96a1b69719fccac6d1464321178d610fc","cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec",{"version":"5ab630d466ac55baa6d32820378098404fc18ba9da6f7bc5df30c5dbb1cffae8","affectsGlobalScope":true}],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitOnError":true,"noImplicitAny":false,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"target":4,"useDefineForClassFields":false},"fileIdsList":[[307,324,330,337,377],[336,337,338],[307,335,377],[307,322,336,377],[313,324,325,326,327,329,331,335,336,337,338,339,377],[307,323,324,327,335,336,377],[307],[307,326,327,335,377],[307,324,327,329,330,335,338,377,415],[307,327,331,334,336,377],[415],[307,324,327,331,332,336,377],[307,325,326,335,336,338,377],[307,326,327,331,333,377,415],[307,330,340,377,385,395,408,409,410,412],[308,327,340,377,385,395,396,405,406,408,409,410,412,413,414],[307,340,377,385,409,413],[336,340,377,396,406,407,409,410,411],[307,340,385,396,406,409,410,411,412],[307,323,340,377,385,396,407,408,409,410,412,413],[307,322,340,377,385,396,406,407,408,410,412],[307,322,336,340,385,409,412],[307,313,385,395,405],[377,378],[379],[313,378,379,380,381,382,383,384],[307,377,415],[385,388],[313,386,387,388,389,390,391,392,393,394],[342,385],[388],[307,377,385],[385],[313],[377],[313,397,398,399,400,401,402,403,404],[373],[374,375],[347],[307,385],[346],[364],[310,311,312],[308,309],[307,316],[313,314,315,316,317,318,319,320,321,341,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,364,365,366,367,368,369,376],[344],[342,343],[340],[363],[569],[80],[49,80],[49,80,88],[82],[47,48],[57,431],[57,59,64,66,67,68,69],[59,70,430],[70],[57,71],[57,429],[57,59],[57,62],[57,63],[57,60],[57],[57,68],[57,67],[57,59,62],[57,65],[205],[49,203,204],[49,203],[201],[174],[57,174],[61,122],[57,59,61,126,145,157],[57,59,61,121,122,155,156,174],[57,59,123,129,142,174],[57,59,61,174],[57,61,127,174],[57,59,126,128,143,144,145,174],[57,59,146,150,151,152,174],[57,59,61,145,149],[57,59,61,147,148,155,174],[57,59,152,174,178],[57,59,158,174],[57,59,174,176,177],[159,160,161],[59,159],[57,59,123,174],[159,174],[57,59,61],[57,170,174],[163,164,165,166,167,168,169,171],[195],[197],[193],[153,155,162,172,174,175,179,192,194,196,198,199,200],[125,154],[57,59,61,125,153],[57,59,61,123,174],[57,59,61,123,124,174],[173,180,181,182,183,184,185,186,187,188,189,190,191],[57,59,173],[173,174],[59,121,122,123,147,148,149,157,158,162,172,173],[57,59,72,75,76],[76,79],[57,59,61,76,77,78],[342,415],[207,416,417,418],[420],[421,422,423,424],[57,420],[57,436],[91],[426,436,437,439,440,441,442,443,444,445,446,447],[109],[434,438],[61,72],[127,170,427,428,433,435],[57,434],[57,59,61,127],[57,59,127],[57,59,427],[57,59,61,432],[101,102,103,104],[98,100,105,106,107,108],[91,99],[93,94,95,96,97],[94,95],[93,94,96],[111,112,113,114,115,116,117,118],[449,450,451,452,453,454,455,456,457,458,459,462,463,464,465,466,467,468,469,470],[460,461],[461],[460],[571,574],[130,132,133,134,135,136,137,138,139,140,141,142],[130,131,133,134,135,136,137,138,139,140,141,142],[131,132,133,134,135,136,137,138,139,140,141,142],[130,131,132,134,135,136,137,138,139,140,141,142],[130,131,132,133,135,136,137,138,139,140,141,142],[130,131,132,133,134,136,137,138,139,140,141,142],[130,131,132,133,134,135,137,138,139,140,141,142],[130,131,132,133,134,135,136,138,139,140,141,142],[130,131,132,133,134,135,136,137,139,140,141,142],[130,131,132,133,134,135,136,137,138,140,141,142],[130,131,132,133,134,135,136,137,138,139,141,142],[130,131,132,133,134,135,136,137,138,139,140,142],[130,131,132,133,134,135,136,137,138,139,140,141],[479],[515],[516,521,550],[517,528,529,536,547,558],[517,518,528,536],[519,559],[520,521,529,537],[521,547,555],[522,524,528,536],[515,523],[524,525],[528],[526,528],[515,528],[528,529,530,547,558],[528,529,530,543,547,550],[513,516,563],[524,528,531,536,547,558],[528,529,531,532,536,547,555,558],[531,533,547,555,558],[479,480,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565],[528,534],[535,558,563],[524,528,536,547],[537],[538],[515,539],[540,557,563],[541],[542],[528,543,544],[543,545,559,561],[516,528,547,548,549,550],[516,547,549],[547,548],[550],[551],[515,547],[528,553,554],[553,554],[521,536,547,555],[556],[536,557],[516,531,542,558],[521,559],[547,560],[535,561],[562],[516,521,528,530,539,547,558,561,563],[547,564],[50],[370,371,372],[370],[74],[73],[567,573],[216,414],[209,210,216,217],[218,282,283],[209,216,218],[210,218],[209,211,212,213,216,218,221,222],[212,223,237,238],[209,216,221,222,223],[209,211,216,218,220,221,222],[209,210,221,222,223],[208,224,229,236,239,240,281,284,306],[209],[210,214,215],[210,214,215,216,217,219,230,231,232,233,234,235],[210,215,216],[210],[209,210,215,216,218,231],[216],[210,216,217],[214,216],[223,237],[209,211,212,213,216,221],[209,216,219,222],[212,220,221,222,225,226,227,228],[222],[209,211,216,218,220,222],[218,221],[218],[209,216,222],[210,216,221,232],[221,285],[218,222],[216,221],[221],[209,219],[209,216],[216,221,222],[241,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305],[221,222],[211,216],[209,216,220,221,222,234],[209,211,216,222],[209,211,216],[242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280],[234,242],[242],[209,216,218,221,241,242],[209,216,218,220,221,222,234,241],[571],[568,572],[49,53],[51,52],[59],[51,58],[81,82,83,84,85,86,87,88,89],[49,53,55,56],[53],[570],[490,494,558],[490,547,558],[485],[487,490,555,558],[536,555],[566],[485,566],[487,490,536,558],[482,483,486,489,516,528,547,558],[482,488],[486,490,516,550,558,566],[516,566],[506,516,566],[484,485,566],[490],[484,485,486,487,488,489,490,491,492,494,495,496,497,498,499,500,501,502,503,504,505,507,508,509,510,511,512],[490,497,498],[488,490,498,499],[489],[482,485,490],[490,494,498,499],[494],[488,490,493,558],[482,487,488,490,494,497],[516,547],[485,490,506,516,563,566],[44],[44,57,90,202,414,419,425,471],[44,57,90,92,109,119,202,206,414,419,425,436,448,471,476],[44,57,90,92,109,119,202,206,414,419,425,436,448,471,472],[44,57,76,79,90,92,109,110,119],[44,57,90,92,109,119,202,206,414,419,425,436,448,471,474],[44,120,473,475,477],[57,202],[57,109,202,203,204,476],[57,109,202,203,204,472],[57,76,79,109,110],[57,109,202,203,204,474]],"referencedMap":[[338,1],[324,2],[336,3],[337,4],[340,5],[325,6],[326,7],[339,8],[331,9],[335,10],[329,11],[333,12],[327,13],[334,14],[413,15],[415,16],[408,17],[412,18],[407,19],[411,20],[409,21],[410,22],[406,23],[379,24],[383,25],[380,25],[384,25],[381,25],[385,26],[382,25],[378,27],[392,28],[393,28],[395,29],[386,30],[394,31],[388,32],[391,33],[387,34],[402,33],[404,7],[397,35],[399,35],[405,36],[398,35],[403,33],[401,33],[374,37],[376,38],[357,39],[355,40],[361,33],[347,41],[360,11],[365,42],[366,35],[313,43],[310,44],[314,7],[315,7],[316,7],[317,7],[321,11],[318,7],[319,45],[320,7],[377,46],[351,47],[352,47],[350,47],[344,48],[353,47],[341,49],[364,50],[368,50],[322,7],[570,51],[81,52],[84,53],[82,53],[86,53],[89,54],[88,53],[87,53],[85,53],[83,55],[49,56],[432,57],[70,58],[431,59],[71,60],[72,61],[430,62],[429,63],[63,64],[64,65],[61,66],[60,63],[62,67],[69,68],[68,69],[65,70],[66,71],[206,72],[205,73],[204,74],[202,75],[175,76],[121,77],[156,78],[122,77],[151,79],[157,80],[152,76],[129,77],[143,81],[123,77],[144,82],[128,83],[146,84],[153,85],[148,77],[147,77],[150,86],[149,87],[145,77],[179,88],[177,89],[178,90],[158,77],[162,91],[161,92],[159,93],[160,94],[126,95],[166,76],[165,76],[167,76],[168,76],[169,76],[164,76],[171,96],[172,97],[163,76],[196,98],[198,99],[197,76],[194,100],[193,76],[201,101],[155,102],[154,103],[124,104],[125,105],[192,106],[181,76],[182,76],[183,76],[190,76],[189,76],[191,76],[184,76],[185,76],[186,107],[188,76],[187,76],[173,93],[180,108],[199,77],[174,109],[200,76],[77,110],[78,110],[110,111],[79,112],[76,67],[418,11],[416,113],[419,114],[421,115],[425,116],[422,117],[424,63],[423,63],[445,118],[446,119],[438,63],[447,63],[448,120],[426,121],[441,122],[442,122],[439,122],[440,122],[444,122],[443,122],[437,123],[436,124],[435,125],[434,95],[170,126],[427,127],[428,128],[127,63],[433,129],[105,130],[106,67],[109,131],[100,132],[98,133],[96,134],[95,135],[117,67],[116,67],[118,67],[111,67],[119,136],[112,67],[113,67],[114,67],[471,137],[462,138],[460,139],[461,140],[575,141],[131,142],[132,143],[130,144],[133,145],[134,146],[135,147],[136,148],[137,149],[138,150],[139,151],[140,152],[141,153],[142,154],[479,155],[480,155],[515,156],[516,157],[517,158],[518,159],[519,160],[520,161],[521,162],[522,163],[523,164],[524,165],[525,165],[527,166],[526,167],[528,168],[529,169],[530,170],[514,171],[531,172],[532,173],[533,174],[566,175],[534,176],[535,177],[536,178],[537,179],[538,180],[539,181],[540,182],[541,183],[542,184],[543,185],[544,185],[545,186],[547,187],[549,188],[548,189],[550,190],[551,191],[552,192],[553,193],[554,194],[555,195],[556,196],[557,197],[558,198],[559,199],[560,200],[561,201],[562,202],[563,203],[564,204],[51,205],[373,206],[371,207],[372,207],[75,208],[74,209],[574,210],[414,211],[218,212],[284,213],[283,214],[282,215],[223,216],[239,217],[237,218],[238,219],[224,220],[307,221],[212,222],[216,223],[236,224],[231,225],[217,226],[232,227],[235,228],[233,228],[230,229],[234,230],[240,231],[222,232],[220,233],[229,234],[226,235],[225,235],[221,236],[227,237],[303,238],[297,239],[290,240],[289,241],[298,242],[299,228],[291,243],[304,244],[285,245],[286,246],[287,247],[306,248],[288,241],[292,244],[293,249],[300,250],[301,226],[302,249],[305,228],[294,247],[241,251],[295,252],[296,253],[281,254],[279,255],[280,255],[245,255],[246,255],[247,255],[248,255],[249,255],[250,255],[251,255],[252,255],[271,255],[253,255],[254,255],[255,255],[256,255],[257,255],[258,255],[278,255],[259,255],[260,255],[261,255],[276,255],[262,255],[277,255],[263,255],[274,255],[275,255],[264,255],[265,255],[266,255],[272,255],[273,255],[267,255],[268,255],[269,255],[270,255],[244,256],[243,257],[242,258],[572,259],[573,260],[55,261],[54,262],[58,263],[59,264],[90,265],[57,266],[52,267],[53,262],[571,268],[92,119],[99,119],[497,269],[504,270],[496,269],[511,271],[488,272],[487,273],[510,274],[505,275],[508,276],[490,277],[489,278],[485,279],[484,280],[507,281],[486,282],[491,283],[495,283],[513,284],[512,283],[499,285],[500,286],[502,287],[498,288],[501,289],[506,274],[493,290],[494,291],[503,292],[483,293],[509,294],[45,295],[476,296],[477,297],[472,296],[473,298],[120,299],[474,296],[475,300],[478,301]],"exportedModulesMap":[[338,1],[324,2],[336,3],[337,4],[340,5],[325,6],[326,7],[339,8],[331,9],[335,10],[329,11],[333,12],[327,13],[334,14],[413,15],[415,16],[408,17],[412,18],[407,19],[411,20],[409,21],[410,22],[406,23],[379,24],[383,25],[380,25],[384,25],[381,25],[385,26],[382,25],[378,27],[392,28],[393,28],[395,29],[386,30],[394,31],[388,32],[391,33],[387,34],[402,33],[404,7],[397,35],[399,35],[405,36],[398,35],[403,33],[401,33],[374,37],[376,38],[357,39],[355,40],[361,33],[347,41],[360,11],[365,42],[366,35],[313,43],[310,44],[314,7],[315,7],[316,7],[317,7],[321,11],[318,7],[319,45],[320,7],[377,46],[351,47],[352,47],[350,47],[344,48],[353,47],[341,49],[364,50],[368,50],[322,7],[570,51],[81,52],[84,53],[82,53],[86,53],[89,54],[88,53],[87,53],[85,53],[83,55],[49,56],[432,57],[70,58],[431,59],[71,60],[72,61],[430,62],[429,63],[63,64],[64,65],[61,66],[60,63],[62,67],[69,68],[68,69],[65,70],[66,71],[206,72],[205,73],[204,74],[202,75],[175,76],[121,77],[156,78],[122,77],[151,79],[157,80],[152,76],[129,77],[143,81],[123,77],[144,82],[128,83],[146,84],[153,85],[148,77],[147,77],[150,86],[149,87],[145,77],[179,88],[177,89],[178,90],[158,77],[162,91],[161,92],[159,93],[160,94],[126,95],[166,76],[165,76],[167,76],[168,76],[169,76],[164,76],[171,96],[172,97],[163,76],[196,98],[198,99],[197,76],[194,100],[193,76],[201,101],[155,102],[154,103],[124,104],[125,105],[192,106],[181,76],[182,76],[183,76],[190,76],[189,76],[191,76],[184,76],[185,76],[186,107],[188,76],[187,76],[173,93],[180,108],[199,77],[174,109],[200,76],[77,110],[78,110],[110,111],[79,112],[76,67],[418,11],[416,113],[419,114],[421,115],[425,116],[422,117],[424,63],[423,63],[445,118],[446,119],[438,63],[447,63],[448,120],[426,121],[441,122],[442,122],[439,122],[440,122],[444,122],[443,122],[437,123],[436,124],[435,125],[434,95],[170,126],[427,127],[428,128],[127,63],[433,129],[105,130],[106,67],[109,131],[100,132],[98,133],[96,134],[95,135],[117,67],[116,67],[118,67],[111,67],[119,136],[112,67],[113,67],[114,67],[471,137],[462,138],[460,139],[461,140],[575,141],[131,142],[132,143],[130,144],[133,145],[134,146],[135,147],[136,148],[137,149],[138,150],[139,151],[140,152],[141,153],[142,154],[479,155],[480,155],[515,156],[516,157],[517,158],[518,159],[519,160],[520,161],[521,162],[522,163],[523,164],[524,165],[525,165],[527,166],[526,167],[528,168],[529,169],[530,170],[514,171],[531,172],[532,173],[533,174],[566,175],[534,176],[535,177],[536,178],[537,179],[538,180],[539,181],[540,182],[541,183],[542,184],[543,185],[544,185],[545,186],[547,187],[549,188],[548,189],[550,190],[551,191],[552,192],[553,193],[554,194],[555,195],[556,196],[557,197],[558,198],[559,199],[560,200],[561,201],[562,202],[563,203],[564,204],[51,205],[373,206],[371,207],[372,207],[75,208],[74,209],[574,210],[414,211],[218,212],[284,213],[283,214],[282,215],[223,216],[239,217],[237,218],[238,219],[224,220],[307,221],[212,222],[216,223],[236,224],[231,225],[217,226],[232,227],[235,228],[233,228],[230,229],[234,230],[240,231],[222,232],[220,233],[229,234],[226,235],[225,235],[221,236],[227,237],[303,238],[297,239],[290,240],[289,241],[298,242],[299,228],[291,243],[304,244],[285,245],[286,246],[287,247],[306,248],[288,241],[292,244],[293,249],[300,250],[301,226],[302,249],[305,228],[294,247],[241,251],[295,252],[296,253],[281,254],[279,255],[280,255],[245,255],[246,255],[247,255],[248,255],[249,255],[250,255],[251,255],[252,255],[271,255],[253,255],[254,255],[255,255],[256,255],[257,255],[258,255],[278,255],[259,255],[260,255],[261,255],[276,255],[262,255],[277,255],[263,255],[274,255],[275,255],[264,255],[265,255],[266,255],[272,255],[273,255],[267,255],[268,255],[269,255],[270,255],[244,256],[243,257],[242,258],[572,259],[573,260],[55,261],[54,262],[58,263],[59,264],[90,265],[57,266],[52,267],[53,262],[571,268],[92,119],[99,119],[497,269],[504,270],[496,269],[511,271],[488,272],[487,273],[510,274],[505,275],[508,276],[490,277],[489,278],[485,279],[484,280],[507,281],[486,282],[491,283],[495,283],[513,284],[512,283],[499,285],[500,286],[502,287],[498,288],[501,289],[506,274],[493,290],[494,291],[503,292],[483,293],[509,294],[476,302],[477,303],[472,302],[473,304],[120,305],[474,302],[475,306]],"semanticDiagnosticsPerFile":[338,324,336,337,340,325,328,326,339,331,332,335,329,333,327,334,413,415,408,396,412,407,411,409,410,406,309,379,383,380,384,381,385,382,378,389,392,390,393,395,386,394,388,391,387,402,404,397,399,405,400,398,403,401,374,330,376,375,354,362,356,348,357,355,361,358,349,347,360,346,365,359,366,312,313,310,311,314,315,316,317,321,318,319,320,377,351,352,350,344,353,341,345,364,368,367,369,363,322,567,570,47,80,81,84,82,86,89,88,87,85,83,48,49,432,70,431,71,72,430,429,63,64,61,60,62,69,68,67,65,66,203,206,205,204,202,175,121,156,122,151,157,152,129,143,123,144,128,146,153,148,147,150,149,145,179,177,178,158,176,162,161,159,160,126,166,165,167,168,169,164,171,172,163,196,195,198,197,194,193,201,155,154,124,125,192,181,182,183,190,189,191,184,185,186,188,187,173,180,199,174,200,77,78,110,79,76,418,207,416,419,417,421,425,422,424,423,445,446,438,447,448,426,441,442,439,440,444,443,437,436,435,434,170,427,428,127,433,101,103,104,105,102,106,108,109,107,100,93,98,96,95,97,94,117,115,116,118,111,119,112,113,114,465,450,463,458,452,469,459,468,451,464,455,471,466,470,453,456,457,449,467,454,462,460,461,569,575,131,132,130,133,134,135,136,137,138,139,140,141,142,479,480,515,516,517,518,519,520,521,522,523,524,525,527,526,528,529,530,514,565,531,532,533,566,534,535,536,537,538,539,540,541,542,543,544,545,546,547,549,548,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,51,50,370,373,371,372,323,481,568,75,74,73,574,414,218,284,283,282,223,239,237,238,224,307,209,211,212,213,216,219,236,214,231,217,232,235,233,230,210,215,234,240,228,222,220,229,226,225,221,227,303,297,290,289,298,299,291,304,285,286,287,306,288,292,293,300,301,302,305,294,241,295,296,281,279,280,245,246,247,248,249,250,251,252,271,253,254,255,256,257,258,278,259,260,261,276,262,277,263,274,275,264,265,266,272,273,267,268,269,270,244,243,242,208,420,572,573,8,9,11,10,2,12,13,14,15,16,17,18,19,3,4,23,20,21,22,24,25,26,5,27,28,29,30,6,34,31,32,33,35,7,36,41,42,37,38,39,40,1,43,55,54,58,59,90,57,52,56,53,571,92,99,91,343,308,44,497,504,496,511,488,487,510,505,508,490,489,485,484,507,486,491,492,495,482,513,512,499,500,502,498,501,506,493,494,503,483,509,342,45,46,476,477,472,473,120,474,475,478]},"version":"4.9.5"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/calendar",
|
|
3
|
-
"version": "7.0.1-alpha.
|
|
3
|
+
"version": "7.0.1-alpha.26",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "dist-client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
"@operato/event-view": "^2.0.0-alpha.0",
|
|
31
31
|
"@operato/graphql": "^2.0.0-alpha.0",
|
|
32
32
|
"@operato/shell": "^2.0.0-alpha.0",
|
|
33
|
-
"@things-factory/auth-base": "^7.0.1-alpha.
|
|
34
|
-
"@things-factory/shell": "^7.0.1-alpha.
|
|
33
|
+
"@things-factory/auth-base": "^7.0.1-alpha.26",
|
|
34
|
+
"@things-factory/shell": "^7.0.1-alpha.26"
|
|
35
35
|
},
|
|
36
|
-
"gitHead": "
|
|
36
|
+
"gitHead": "664e741d90e09b8b0e26763eb1eb03fd3f75b6d7"
|
|
37
37
|
}
|