@operato/data-grist 9.2.16 → 9.2.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,15 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
### [9.2.18](https://github.com/hatiolab/operato/compare/v9.2.17...v9.2.18) (2026-04-24)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### :bug: Bug Fix
|
|
10
|
+
|
|
11
|
+
* 태블릿 화면 그리드 단일 셀 Ctrl+C 복사 불가 수정 ([622ed6a](https://github.com/hatiolab/operato/commit/622ed6ae1f361b2776c9ba5f1eb8841e508b8ff3))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
6
15
|
### [9.2.16](https://github.com/hatiolab/operato/compare/v9.2.15...v9.2.16) (2026-04-14)
|
|
7
16
|
|
|
8
17
|
|
package/dist/src/data-grist.d.ts
CHANGED
|
@@ -115,6 +115,7 @@ export declare class DataGrist extends LitElement implements DataConsumer {
|
|
|
115
115
|
private setHeadroom;
|
|
116
116
|
render(): import("lit-html").TemplateResult<1>;
|
|
117
117
|
private onKeydown;
|
|
118
|
+
private _onDocumentKeydown;
|
|
118
119
|
/**
|
|
119
120
|
* Gets the current state of the component. The state includes information about the
|
|
120
121
|
* dirty records and their changes.
|
package/dist/src/data-grist.js
CHANGED
|
@@ -97,6 +97,26 @@ let DataGrist = class DataGrist extends LitElement {
|
|
|
97
97
|
const url = `${window.location.pathname}${this.lastLocation.search}`;
|
|
98
98
|
history.pushState({}, document.title, url);
|
|
99
99
|
}).bind(this);
|
|
100
|
+
/* 트리 그리드 단일 셀 복사 폴백: document 레벨에서 Ctrl+C를 수신.
|
|
101
|
+
* 혼합 화면 등에서 행 클릭 후 scan input이 포커스를 빼앗아가므로
|
|
102
|
+
* DataGrist 내부 이벤트 버블링에 의존할 수 없어 document 레벨에서 처리.
|
|
103
|
+
* 이 DataGrist에 focused 셀이 있을 때만 동작한다. */
|
|
104
|
+
this._onDocumentKeydown = (e) => {
|
|
105
|
+
if (e.key !== 'c' || !(e.metaKey || e.ctrlKey) || this.mode !== 'GRID')
|
|
106
|
+
return;
|
|
107
|
+
if (e.defaultPrevented)
|
|
108
|
+
return; // 내부 DataGridBody 핸들러가 이미 처리함
|
|
109
|
+
const grist = this.grist;
|
|
110
|
+
const focused = grist === null || grist === void 0 ? void 0 : grist.focused;
|
|
111
|
+
if ((focused === null || focused === void 0 ? void 0 : focused.row) === undefined)
|
|
112
|
+
return;
|
|
113
|
+
const selection = window.getSelection();
|
|
114
|
+
if ((selection === null || selection === void 0 ? void 0 : selection.type) === 'Range')
|
|
115
|
+
return;
|
|
116
|
+
/* DataGridBody.copy()에 위임: 컬럼 조회·클립보드 쓰기·flash 애니메이션을 일괄 처리 */
|
|
117
|
+
e.preventDefault();
|
|
118
|
+
grist.body.copy();
|
|
119
|
+
};
|
|
100
120
|
}
|
|
101
121
|
async firstUpdated() {
|
|
102
122
|
// Mutation Observer를 사용하여 슬롯의 크기 변경을 감지하고 다시 그린다.
|
|
@@ -111,12 +131,14 @@ let DataGrist = class DataGrist extends LitElement {
|
|
|
111
131
|
this.timeCapsule = new TimeCapsule(10);
|
|
112
132
|
this.snapshotTaker = new SnapshotTaker(this, this.timeCapsule);
|
|
113
133
|
this.addEventListener('fetch-params-change', this.fetchParamsChangeEventHandler);
|
|
134
|
+
document.addEventListener('keydown', this._onDocumentKeydown);
|
|
114
135
|
await this.updateComplete;
|
|
115
136
|
}
|
|
116
137
|
disconnectedCallback() {
|
|
117
138
|
var _a;
|
|
118
139
|
super.disconnectedCallback();
|
|
119
140
|
this.removeEventListener('fetch-params-change', this.fetchParamsChangeEventHandler);
|
|
141
|
+
document.removeEventListener('keydown', this._onDocumentKeydown);
|
|
120
142
|
this.timeCapsule && this.timeCapsule.dispose();
|
|
121
143
|
this.snapshotTaker && this.snapshotTaker.dispose();
|
|
122
144
|
delete this.timeCapsule;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"data-grist.js","sourceRoot":"","sources":["../../src/data-grist.ts"],"names":[],"mappings":"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","sourcesContent":["import './data-grid/data-grid.js'\nimport './data-list/data-list.js'\nimport './data-card/data-card.js'\n\nimport { css, html, LitElement, PropertyValues } from 'lit'\nimport { customElement, property, query, queryAsync, state } from 'lit/decorators.js'\nimport isEmpty from 'lodash-es/isEmpty.js'\nimport isEqual from 'lodash-es/isEqual.js'\n\nimport Headroom from '@operato/headroom'\nimport { pulltorefresh } from '@operato/pull-to-refresh'\nimport { HeadroomStyles, ScrollbarStyles, SpinnerStyles } from '@operato/styles'\nimport { PagePreferenceProvider } from '@operato/p13n'\nimport { SnapshotTaker, TimeCapsule } from '@operato/utils'\n\nimport { buildConfig } from './configure/config-builder.js'\nimport { ZERO_CONFIG, ZERO_DATA, ZERO_PAGES, ZERO_PAGINATION } from './configure/zero-config.js'\nimport { DataCard } from './data-card/data-card.js'\nimport { DataConsumer } from './data-consumer.js'\nimport { DataGrid } from './data-grid/data-grid.js'\nimport { DataList } from './data-list/data-list.js'\nimport { DataProvider } from './data-provider.js'\nimport {\n ColumnConfig,\n FetchHandler,\n FilterConfigObject,\n FilterValue,\n GristConfig,\n GristData,\n GristRecord,\n GristSelectFunction,\n PaginationConfig,\n PersonalGristPreference,\n SortersConfig,\n ValidationReason\n} from './types.js'\nimport { convertListParamToSearchString, convertSearchStringToListParam } from './utils/index.js'\n\n/**\n * A custom element for rendering data in a grid, list, or card format.\n *\n * @element ox-grist\n */\n@customElement('ox-grist')\nexport class DataGrist extends LitElement implements DataConsumer {\n static styles = [\n ScrollbarStyles,\n HeadroomStyles,\n SpinnerStyles,\n css`\n :host {\n display: flex;\n flex-direction: column;\n box-sizing: border-box;\n background-color: var(--grist-background-color);\n min-height: 120px;\n\n overflow: hidden;\n\n /* for pulltorefresh controller */\n position: relative;\n\n padding: var(--ox-grist-padding);\n\n --md-icon-size: var(--grid-record-wide-fontsize);\n }\n\n #wrap {\n flex: 1;\n display: flex;\n flex-direction: column;\n overflow: auto;\n }\n\n ox-grid {\n flex: 1;\n border: var(--grid-wrap-container-border, 0px solid transparent);\n border-width: var(--grid-wrap-container-border-width, 0px);\n }\n\n slot[name='headroom'] {\n display: block;\n position: absolute;\n top: 0;\n left: 0;\n\n width: 100%;\n box-sizing: border-box;\n background-color: var(--grist-background-color);\n\n z-index: 8;\n }\n `\n ]\n\n /**\n * The rendering mode of the component, which can be 'GRID', 'LIST', or 'CARD'.\n * Default is 'GRID'.\n *\n * @property {string}\n */\n @property() mode: 'GRID' | 'LIST' | 'CARD' = 'GRID'\n\n /**\n * The configuration object for the data grist.\n *\n * @property {Object}\n */\n @property() config: any\n\n /**\n * The data to be displayed in the data grist.\n *\n * @property {GristData}\n */\n @property({ type: Object }) data: GristData = ZERO_DATA\n\n /**\n * An array of selected records in the data grist.\n *\n * @property {GristRecord[]}\n */\n @property({ type: Array }) selectedRecords?: GristRecord[]\n\n /**\n * Indicates whether explicit fetching of data is enabled. If true, data will be fetched\n * only when `fetch` method is called. Default is false.\n *\n * @property {boolean}\n */\n @property({ type: Boolean, attribute: 'explicit-fetch' }) explicitFetch: boolean = false\n\n /**\n * The fetch handler function used to retrieve data from a remote source.\n *\n * @property {FetchHandler}\n */\n @property() fetchHandler?: FetchHandler\n\n /**\n * Additional fetch options to be passed to the fetch handler.\n *\n * @property {Object}\n */\n @property() fetchOptions: any\n\n /**\n * An array of filter values to be applied to the data grist.\n *\n * @property {FilterValue[]}\n */\n @property({ type: Array }) filters?: FilterValue[]\n\n /**\n * An array of sorters to determine the order of records in the data grist.\n *\n * @property {SortersConfig}\n */\n @property({ type: Array }) sorters?: SortersConfig\n\n /**\n * The pagination configuration for the data grist.\n *\n * @property {PaginationConfig}\n */\n @property({ type: Object }) pagination?: PaginationConfig\n\n /**\n * Indicates whether URL parameters are sensitive to changes. If true, changes in URL\n * parameters will trigger data fetching. Default is undefined.\n *\n * @property {boolean}\n */\n @property({ type: Boolean, attribute: 'url-params-sensitive' }) urlParamsSensitive?: boolean\n\n @property({ type: Object }) personalConfigProvider: PagePreferenceProvider = {\n load: () => {\n return {}\n },\n save: (preference: any) => preference,\n reset: () => {}\n }\n\n @state() personalConfig?: {\n columns?: Partial<ColumnConfig>[]\n [key: string]: any\n }\n\n @state() _data: GristData = ZERO_DATA // copy data, dirty data\n @state() _config: GristConfig = ZERO_CONFIG // compiled configuration\n @state() private _showSpinner: boolean = false\n\n @query('slot[name=headroom]') head!: HTMLElement\n @query('#grist') grist!: DataGrid | DataList | DataCard\n @queryAsync('#wrap') private wrap!: Promise<HTMLElement>\n\n private timeCapsule?: TimeCapsule\n private snapshotTaker?: SnapshotTaker\n\n private dataProvider?: DataProvider\n private pulltorefreshHandle?: any\n private headroom?: Headroom\n private orginPaddingTop?: string\n private originMarginTop?: string\n private lastLocation: { origin?: string; pathname?: string; search?: string } = {}\n\n /* 그리드가 준비되기 전에 fetch 요청이 있었음을 나타내는 플래그임 */\n private pendingFetch?: boolean\n\n private popstateEventHandler: EventListener = ((e: Event) => {\n const { origin, pathname, search } = window.location\n if (\n this.lastLocation.origin &&\n (this.lastLocation.origin !== origin ||\n this.lastLocation.pathname !== pathname ||\n this.lastLocation.search === search)\n ) {\n return\n }\n\n this.lastLocation = {\n origin,\n pathname,\n search\n }\n\n var { filters = [], sorters = [] } = convertSearchStringToListParam(search)\n\n try {\n if (!isEqual(filters, this.filters) || !isEqual(sorters, this.sorters)) {\n this.dispatchEvent(\n new CustomEvent('fetch-params-change', {\n bubbles: true,\n composed: true,\n detail: {\n filters,\n sorters,\n from: 'url-parameter'\n }\n })\n )\n }\n } catch (e) {\n console.error(`invalid fetch params on URL query string : ${e}`)\n }\n }).bind(this)\n\n private fetchParamsChangeEventHandler: EventListener = ((e: Event) => {\n const { sorters, filters, from } = (e as CustomEvent).detail\n\n sorters && (this.sorters = sorters)\n filters && (this.filters = filters)\n\n if (!this.urlParamsSensitive || from === 'url-parameter') {\n return\n }\n\n const queryString = convertListParamToSearchString({ filters, sorters, base: window.location.search })\n this.lastLocation.search = queryString ? `?${queryString}` : ''\n const url = `${window.location.pathname}${this.lastLocation.search}`\n\n history.pushState({}, document.title, url)\n }).bind(this)\n\n async firstUpdated() {\n // Mutation Observer를 사용하여 슬롯의 크기 변경을 감지하고 다시 그린다.\n const observer = new ResizeObserver(mutationsList => {\n this.setHeadroom()\n })\n\n observer.observe(this.head)\n }\n\n async connectedCallback() {\n super.connectedCallback()\n\n this.dataProvider = new DataProvider(this)\n\n this.timeCapsule = new TimeCapsule(10)\n this.snapshotTaker = new SnapshotTaker(this, this.timeCapsule!)\n\n this.addEventListener('fetch-params-change', this.fetchParamsChangeEventHandler)\n\n await this.updateComplete\n }\n\n disconnectedCallback() {\n super.disconnectedCallback()\n\n this.removeEventListener('fetch-params-change', this.fetchParamsChangeEventHandler)\n\n this.timeCapsule && this.timeCapsule.dispose()\n this.snapshotTaker && this.snapshotTaker.dispose()\n\n delete this.timeCapsule\n delete this.snapshotTaker\n\n this.dataProvider?.dispose()\n this.resetPullToRefresh()\n }\n\n private resetPullToRefresh() {\n if (this.pulltorefreshHandle) {\n this.pulltorefreshHandle()\n delete this.pulltorefreshHandle\n }\n }\n\n private async setPullToRefresh() {\n this.resetPullToRefresh()\n if (this.mode !== 'GRID' && this.fetchHandler) {\n this.pulltorefreshHandle = pulltorefresh({\n container: await this.wrap,\n scrollable: this.grist.pullToRefreshTarget,\n refresh: () => {\n return this.fetch(true)\n }\n })\n }\n }\n\n public applyUpdatedConfiguration() {\n if (!this.personalConfig || !this.config) {\n return\n }\n\n const config = { ...this.config }\n const columns: Partial<ColumnConfig>[] = config.columns\n\n const { columns: personalColumns, sorters, pagination, mode } = this.personalConfig\n\n if (personalColumns) {\n const xcolumns = columns.map((column: Partial<ColumnConfig>) => {\n const personalColumn = personalColumns.find(pcolumn => pcolumn.name == column.name)\n return personalColumn ? { ...column, ...personalColumn } : column\n })\n\n function reorderList(a: { name: string }[], b: { name: string }[]): { name: string }[] {\n // 결과 배열 초기화, a 배열 길이만큼 undefined로 채움\n const result = new Array(a.length)\n\n // b 배열에 없는 아이템은 원래 위치로 채움\n a.forEach((item, index) => {\n if (!item.name || !b.find(bi => bi.name == item.name)) {\n result[index] = item\n }\n })\n\n b.forEach(item => {\n const ai = a.find(ai => ai.name == item.name)\n if (ai) {\n result[result.findIndex(slot => slot === undefined)] = ai\n }\n })\n\n return result\n }\n\n // 배열 재정렬 실행\n config.columns = reorderList(xcolumns as any, personalColumns as any)\n }\n\n if (pagination) {\n config.pagination = pagination\n }\n\n if (sorters) {\n config.sorters = sorters\n }\n\n if (mode) {\n this.mode = mode\n }\n\n this._config = buildConfig({\n ...config\n })\n\n this.dispatchEvent(\n new CustomEvent('config-change', {\n bubbles: true,\n composed: true,\n detail: this.compiledConfig\n })\n )\n\n this.pagination = this.compiledConfig.pagination || {}\n\n if (!this.urlParamsSensitive) {\n const sorters = this.compiledConfig?.sorters\n const filters = this.compiledConfig?.columns\n .filter(\n column =>\n column.filter &&\n 'value' in (column.filter as FilterConfigObject) &&\n (typeof (column.filter as FilterConfigObject).value === 'boolean' ||\n (column.filter as FilterConfigObject).value)\n )\n .map(column => {\n const filter = column.filter as FilterConfigObject\n return { name: column.name, operator: filter.operator, value: filter.value } as FilterValue\n })\n\n this.dispatchEvent(\n new CustomEvent('fetch-params-change', {\n bubbles: true,\n composed: true,\n detail: {\n filters,\n sorters,\n from: 'config'\n }\n })\n )\n }\n\n if (this.dataProvider) {\n const { limit, pages = ZERO_PAGES } = this._config.pagination || ZERO_PAGINATION\n this.dataProvider.page = 1\n this.dataProvider.limit = limit || pages[0] || ZERO_PAGES[0]\n }\n\n if (this.pendingFetch || (!this.urlParamsSensitive && !this.explicitFetch)) {\n this.pendingFetch = false\n this.fetch()\n }\n }\n\n private setHeadroom() {\n this.headroom?.destroy()\n\n if (this.grist && this.head && this.head.style.display !== 'none') {\n const style = getComputedStyle(this.grist)\n\n this.orginPaddingTop = style.paddingTop || '0'\n this.originMarginTop = style.marginTop || '0'\n\n this.headroom = new Headroom(this.head, {\n scroller: this.grist,\n onTop: () => {\n this.grist.style.paddingTop = this.orginPaddingTop!\n this.originMarginTop = this.grist.style.marginTop\n\n this.grist.style.marginTop = this.head.clientHeight + 'px'\n },\n onNotTop: () => {\n this.grist.style.marginTop = this.originMarginTop!\n this.orginPaddingTop = this.grist.style.paddingTop\n\n this.grist.style.paddingTop = this.head.clientHeight + 'px'\n }\n })\n\n this.headroom.init()\n } else if (this.orginPaddingTop) {\n this.grist.style.paddingTop = this.orginPaddingTop\n this.grist.style.marginTop = this.originMarginTop!\n }\n }\n\n render() {\n const empty = !this._showSpinner && this._data.records.length == 0\n\n return html`\n <slot name=\"headroom\"> </slot>\n <div id=\"wrap\" @keydown=${(e: KeyboardEvent) => this.onKeydown(e)}>\n ${this.mode == 'GRID'\n ? html`\n <ox-grid\n id=\"grist\"\n .config=${this.compiledConfig}\n .data=${this._data}\n .sorters=${this.sorters || []}\n .filters=${this.filters || []}\n .pagination=${this.pagination || {}}\n ?empty=${empty}\n >\n <slot name=\"setting\" slot=\"setting\"> </slot>\n </ox-grid>\n `\n : this.mode == 'CARD'\n ? html`\n <ox-card\n id=\"grist\"\n .config=${this.compiledConfig}\n .data=${this._data}\n .sorters=${this.sorters || []}\n .filters=${this.filters || []}\n ?empty=${empty}\n >\n </ox-card>\n `\n : html`\n <ox-list\n id=\"grist\"\n .config=${this.compiledConfig}\n .data=${this._data}\n .sorters=${this.sorters || []}\n .filters=${this.filters || []}\n ?empty=${empty}\n >\n </ox-list>\n `}\n </div>\n\n <div id=\"spinner\" ?show=${this._showSpinner}></div>\n `\n }\n\n /* for timecapsule feature */\n private onKeydown(e: KeyboardEvent) {\n if (e.key === 'z' && (e.metaKey || e.ctrlKey)) {\n if (e.shiftKey) {\n this.redo()\n } else {\n this.undo()\n }\n }\n }\n\n /**\n * Gets the current state of the component. The state includes information about the\n * dirty records and their changes.\n *\n * @getter\n * @public\n * @type {string}\n */\n get state() {\n return JSON.stringify(this.dirtyData)\n }\n\n /**\n * Undoes the previous change in the component's data by restoring it to the previous state.\n * This method is part of the TimeCapsule feature, allowing users to revert changes.\n */\n undo() {\n if (!this.timeCapsule?.backwardable) {\n return\n }\n\n this._data = JSON.parse(this.timeCapsule?.backward())\n }\n\n /**\n * Redoes the previously undone change in the component's data by restoring it to the next state.\n * This method is part of the TimeCapsule feature, allowing users to reapply changes.\n */\n redo() {\n if (!this.timeCapsule?.forwardable) {\n return\n }\n\n this._data = JSON.parse(this.timeCapsule?.forward())\n }\n\n /**\n * Fetches data from a data source and updates the component's data. This method is used to retrieve\n * new data or refresh the existing data in the component.\n *\n * @method\n * @param {boolean} reset - If true, the method resets the scroll position to the top.\n */\n async fetch(reset = true) {\n if (this.compiledConfig === ZERO_CONFIG) {\n /* avoid to be here */\n console.warn('grist is not configured yet.')\n this.pendingFetch = true\n return\n }\n\n if (reset && this.grist) {\n /*\n * scroll 의 현재위치에 의해서 scroll 이벤트가 발생할 수 있으므로, 이를 방지하기 위해서 스크롤의 위치를 TOP으로 옮긴다.\n * (scroll 이 첫페이지 크기 이상으로 내려가 있는 경우, 첫페이지부터 다시 표시하는 경우에, scroll 이벤트가 발생한다.)\n */\n this.grist.scrollTop = 0\n }\n\n if (this.dataProvider) {\n let { limit: initLimit, page: initPage, infinite } = this.compiledConfig.pagination || {}\n let { limit = initLimit || ZERO_PAGINATION.limit, page = initPage || ZERO_PAGINATION.page } = this.dataProvider\n\n if (infinite || this.mode !== 'GRID') {\n await this.dataProvider.attach(reset)\n } else {\n await this.dataProvider.fetch({\n limit,\n page,\n sorters: this.sorters || this.compiledConfig?.sorters,\n sortings: this.sorters || this.compiledConfig?.sorters,\n filters: this.filters\n })\n\n this.pagination && (this.pagination!.limit = limit)\n }\n }\n }\n\n async updated(changes: PropertyValues<this>) {\n var needToSetPullToRefresh = false\n\n if (changes.has('filters')) {\n await this.requestUpdate()\n }\n\n if (changes.has('sorters')) {\n await this.requestUpdate()\n }\n\n if (changes.has('personalConfigProvider')) {\n this.personalConfig = await this.personalConfigProvider.load()\n } else if (changes.has('config') || changes.has('personalConfig')) {\n this.applyUpdatedConfiguration()\n }\n\n if (changes.has('fetchHandler')) {\n this.dataProvider && (this.dataProvider.fetchHandler = this.fetchHandler)\n needToSetPullToRefresh = true\n }\n\n if (changes.has('fetchOptions')) {\n this.dataProvider && (this.dataProvider.fetchOptions = this.fetchOptions)\n }\n\n if (changes.has('data')) {\n this.reset()\n }\n\n if (changes.has('mode')) {\n if (this.mode === 'GRID') {\n this.style.removeProperty('--ox-grist-padding')\n } else {\n this.style.setProperty('--ox-grist-padding', '0')\n }\n\n needToSetPullToRefresh = true\n this.setHeadroom()\n }\n\n if (changes.has('selectedRecords')) {\n var { records } = this.data || []\n var selectedRecords = this.selectedRecords || []\n\n var _records = this.dirtyData.records\n\n /* 원본데이타에서 index를 찾아서, 복사본 데이타의 selected를 설정한다. */\n selectedRecords.forEach(selected => {\n var index = records.indexOf(selected)\n var record = _records[index]\n if (record) {\n record['__selected__'] = true\n }\n })\n\n /* update _data property intentionally */\n this.refresh()\n }\n\n if (changes.has('urlParamsSensitive')) {\n if (this.urlParamsSensitive) {\n //@ts-ignore\n this.popstateEventHandler() // call for the first time\n\n window.addEventListener('popstate', this.popstateEventHandler)\n } else {\n window.removeEventListener('popstate', this.popstateEventHandler)\n }\n }\n\n if (needToSetPullToRefresh) {\n await this.setPullToRefresh()\n }\n }\n\n /**\n * Represents the compiled configuration of the component, which includes various settings and\n * column configurations. You can access this property to get information about how the component\n * is configured.\n *\n * @getter\n * @public\n * @type {GristConfig}\n */\n get compiledConfig(): GristConfig {\n return this._config\n }\n\n /**\n * Returns the dirty data in the component, which includes the records that have been added,\n * modified, or deleted but have not been committed to the main data yet.\n *\n * @getter\n * @public\n * @type {GristData} - An object representing the dirty data.\n */\n get dirtyData(): GristData {\n return (this.grist as any)?.data || {}\n }\n\n /**\n * Returns an array of GristRecord objects representing the records in the dirty state. These are\n * the records that have been added, modified, or deleted but have not been committed to the main\n * data yet.\n *\n * @getter\n * @public\n * @type {GristRecord[]} - An array of GristRecord objects representing the dirty records.\n */\n get dirtyRecords() {\n var { records = [] } = this.dirtyData\n return records\n .filter(record => record['__dirty__'])\n .filter(record => {\n // cuFlag 제외하고 키가 모두 빈값이면 필터함 (오브젝트일때는 키가 있어도 모든 값이 빈값이면 제외)\n const keys = Object.keys(record).filter(k => !k.startsWith('__') && k !== 'cuFlag')\n return keys.some(k => {\n const value = record[k]\n if (value && typeof value === 'object' && !Array.isArray(value) && !(value instanceof Date)) {\n return !Object.values(value).every(v => v === '' || v === null || v === undefined)\n }\n return typeof value === 'string' ? value.trim().length > 0 : !isEmpty(value)\n })\n })\n }\n\n /**\n * Exports a list of patches representing the changes in the dirty state of records. Each patch\n * contains information about whether a record was added, modified, or deleted, along with the\n * record's unique identifier and the changed field values.\n *\n * @param {Object} options - Export options that control the format of the patch list.\n * @param {string} options.flagName - The name of the flag field in the patch indicating the change type (default: 'patchFlag').\n * @param {string} options.addedFlag - The flag value for added records (default: '+').\n * @param {string} options.deletedFlag - The flag value for deleted records (default: '-').\n * @param {string} options.modifiedFlag - The flag value for modified records (default: 'M').\n * @param {string} options.idField - The name of the unique identifier field (default: 'id').\n * @returns {Object[]} - An array of objects representing the patches.\n */\n exportPatchList({ flagName = 'patchFlag', addedFlag = '+', deletedFlag = '-', modifiedFlag = 'M', idField = 'id' }) {\n let dirtyRecords = this.dirtyRecords\n if (!dirtyRecords || dirtyRecords.length == 0) {\n return []\n }\n\n return dirtyRecords.map(record => {\n let flag = record.__dirty__\n\n let patch: any = {\n [flagName]: flag == 'M' ? modifiedFlag : flag == '+' ? addedFlag : deletedFlag\n }\n\n if (idField in record && record[idField]) {\n patch[idField] = record[idField]\n }\n\n for (let key in record.__dirtyfields__) {\n const value = record[key]\n\n // id를 가진 object면 id, name만 남긴다 (ObjectRef 규격)\n if (value && typeof value === 'object' && !Array.isArray(value) && !(value instanceof Date) && value.id) {\n patch[key] = { id: value.id, name: value.name }\n } else {\n // 그리드를 빈값으로 던지면\n patch[key] = value === '' || value === null || value === undefined ? null : value\n }\n }\n return patch\n })\n }\n\n /**\n * Exports the selected records or all records in the component, depending on the specified options.\n * You can use this method to export data from the component in various formats or for different purposes.\n *\n * @param {Object} options - Export options that control the behavior of the export.\n * @param {boolean} options.ifSelectedOnly - If true, exports only the selected records. If false, exports all records.\n * @param {boolean} options.includeHiddenField - If true, includes hidden fields in the exported data.\n * @returns {Object[]} - An array of objects representing the exported records.\n */\n exportRecords({ ifSelectedOnly = true, includeHiddenField = true } = {}) {\n let records = ifSelectedOnly ? this.selected : this.data.records\n\n if (ifSelectedOnly && (!records || records.length == 0)) {\n records = this.data.records\n }\n\n let columns = this.compiledConfig.columns.filter(column => column.type !== 'gutter')\n if (!includeHiddenField) {\n columns = columns.filter(column => !column.hidden)\n }\n let columnNames = columns.map(column => column.name)\n\n return records.map(item => {\n return columnNames.reduce((record, name) => {\n record[name] = item[name]\n return record\n }, {} as any)\n })\n }\n\n /**\n * Gets the currently selected records in the component. It returns an array of GristRecord objects\n * that are currently selected. You can access this getter to retrieve the selected records.\n *\n * @getter\n * @public\n * @type {GristRecord[]}\n */\n get selected() {\n var { records = [] } = this.grist?.data\n return records.filter(record => record['__selected__'])\n }\n\n /**\n * Sets the currently selected records in the component. You can use this setter to programmatically\n * select specific records by providing an array of GristRecord objects to be selected.\n *\n * @setter\n * @public\n * @type {GristRecord[]}\n */\n set selected(selected: GristRecord[]) {\n if (!this.grist) {\n console.warn('grist not ready')\n return\n }\n\n selected.forEach(record => (record.__selected__ = true))\n this.refresh()\n }\n\n /**\n * Selects records in the component based on the provided selector function. You can use this method\n * to programmatically select specific records in the component.\n *\n * @method\n * @param {GristSelectFunction} selector - A function that determines which records to select.\n * @param {boolean} reset - If true, clears the previous selection before applying the new one.\n * If false, adds to the existing selection.\n */\n select(selector: GristSelectFunction, reset: boolean = false) {\n var { records = [] } = this.grist?.data\n\n if (reset) {\n this.selected.forEach(record => (record.__selected__ = false))\n }\n\n records.filter(record => selector(record)).forEach(record => (record.__selected__ = true))\n this.refresh()\n }\n\n /**\n * Shows the loading spinner in the component's UI to indicate ongoing data loading or processing.\n * You can call this method to display the spinner when necessary.\n */\n showSpinner() {\n this._showSpinner = true\n }\n\n /**\n * Hides the loading spinner in the component's UI to indicate that data loading or processing has completed.\n * You can call this method to hide the spinner when loading or processing is finished.\n */\n hideSpinner() {\n this._showSpinner = false\n }\n\n /**\n * Focuses on the component, making it the active element in the document. This method is useful\n * when you want to programmatically set focus to the component.\n */\n focus() {\n super.focus()\n\n this.grist.focus()\n }\n\n /**\n * Commits the changes made in the dirty state to the component's data. This method updates the\n * component's data with the changes made in the dirty state and clears the dirty state.\n */\n commit() {\n var { page, total, limit, records } = this.grist.data\n\n this.data = {\n page,\n total,\n limit,\n records: records.map(record => {\n var copied = {\n ...record\n }\n\n delete copied.__seq__\n delete copied.__dirty__\n delete copied.__selected__\n delete copied.__changes__\n delete copied.__dirtyfields__\n delete copied.__origin__\n delete copied.__depth__\n delete copied.__expanded__\n delete copied.__check_in_tree__\n delete copied.__children__\n delete copied.__typename\n\n return copied\n })\n }\n }\n\n /**\n * Shows the headroom element in the component. The headroom element is typically used for\n * displaying additional information or controls at the top of the component.\n */\n showHeadroom() {\n if (this.head) {\n this.head.style.display = 'block'\n this.setHeadroom()\n }\n }\n\n /**\n * Hides the headroom element in the component. This method hides the additional information\n * or controls displayed at the top of the component.\n */\n hideHeadroom() {\n if (this.head) {\n this.head.style.display = 'none'\n this.setHeadroom()\n }\n }\n\n /**\n * Toggles the visibility of the headroom element in the component. If the headroom element is\n * currently visible, this method hides it. If it's hidden, this method shows it.\n */\n toggleHeadroom() {\n if (this.head) {\n const display = this.head.style.display\n this.head.style.display = display !== 'none' ? 'none' : 'block'\n\n this.setHeadroom()\n }\n }\n\n /**\n * Forced internal data to be reflected on the screen\n * Data changing through a normal method is automatically reflected on the screen, so it is a method that does not need to be used in general.\n * Therefore, it will be deprecated.\n * @method\n */\n refresh() {\n this.grist.refresh()\n }\n\n /**\n * Resets the component's data to its original state before any changes were made.\n * This method discards all unsaved changes and restores the data to its initial state.\n *\n * @method\n * @public\n */\n reset() {\n // TODO tree 형태의 데이타로 _data를 만들 때, children, collapsed 등을 감안한다.\n var {\n limit = ZERO_PAGINATION.limit,\n page = ZERO_PAGINATION.page,\n total = ZERO_PAGINATION.total,\n records = []\n } = this.data || ZERO_PAGINATION\n\n const { childrenProperty, expanded } = this.compiledConfig.tree\n\n /* 원본 데이타를 남기고, 복사본(_data)을 사용한다. */\n records = ([] as GristRecord[]).concat(\n ...records.map((record, idx) =>\n this.traverseReset(\n record,\n this.mode == 'GRID' ? (page - 1) * limit + idx + 1 : idx + 1,\n 0,\n childrenProperty,\n expanded as () => boolean\n )\n )\n )\n\n if (childrenProperty) {\n records = ([] as GristRecord[]).concat(...records.map(record => this.traverseExpanded(record)))\n }\n\n this._data = {\n limit,\n page,\n total,\n records\n }\n\n this.timeCapsule?.reset()\n this.snapshotTaker?.take(true)\n }\n\n private traverseReset(\n record: GristRecord,\n seq: number,\n __depth__: number,\n childrenProperty: string | undefined,\n expanded: () => boolean\n ): GristRecord {\n const copied = {\n ...record,\n __seq__: seq,\n __origin__: record\n }\n\n if (childrenProperty) {\n const children: GristRecord[] = record[childrenProperty!]\n\n const __expanded__ = (expanded as Function)(record)\n const __children__ = (children || []).map(child =>\n this.traverseReset(child, seq, __depth__ + 1, childrenProperty, expanded)\n )\n\n Object.assign(copied, { __depth__, __children__, __expanded__ })\n }\n\n return copied\n }\n\n private traverseExpanded(record: GristRecord): GristRecord[] {\n const { __expanded__, __children__ = [] } = record\n\n if (__expanded__ && __children__.length > 0) {\n return [record].concat(...__children__.map(child => this.traverseExpanded(child)))\n } else {\n return [record]\n }\n }\n\n /**\n * Checks for dirty records in the component's data and marks them as dirty.\n * Dirty records are those that have unsaved changes.\n */\n checkDirties() {\n const records = this.dirtyRecords\n const { columns = [] } = this.compiledConfig || {}\n\n for (var record of records || []) {\n var origin = record['__origin__'] || {}\n\n var dirtyFields = (record['__dirtyfields__'] = columns\n .filter(column => column.type !== 'gutter' && !isEqual(origin[column.name], record[column.name]))\n .reduce((sum, column) => {\n var name = column.name\n\n sum[name] = {\n before: origin[name],\n after: record[name]\n }\n\n return sum\n }, {} as any))\n\n if (record['__dirty__'] == 'M' && isEmpty(dirtyFields)) {\n delete record['__dirty__']\n }\n }\n\n this._data = { ...this.dirtyData }\n\n this.snapshotTaker?.touch()\n }\n\n /**\n * Clones the selected records in the component's data. It creates a copy of the selected records\n * and marks them as new (added) records.\n */\n cloneSelectedRecords() {\n const records = this.selected || ([] as GristRecord[])\n\n records.forEach(record => {\n var cloned = {\n __dirty__: '+'\n } as GristRecord\n\n this.compiledConfig.columns\n .filter(column => column.record.editable)\n .forEach(column => {\n cloned[column.name] = record[column.name]\n })\n const rowIndex = this.dirtyData.records.findIndex(rec => rec === record)\n\n this.dirtyData.records.splice(rowIndex + 1, 0, cloned)\n })\n\n this.checkDirties()\n }\n\n /**\n * Adds child nodes to selected records in the component's tree data. It allows users to add child nodes\n * to the selected parent records.\n */\n addChildNodes() {\n const records = this.selected || ([] as GristRecord[])\n\n records.forEach(record => {\n this.grist.addChildNode(record)\n })\n }\n\n /**\n * Adds sibling nodes to selected records in the component's tree data. It allows users to add sibling nodes\n * to the selected records.\n */\n addSiblingNodes() {\n const records = this.selected || ([] as GristRecord[])\n\n records.forEach(record => {\n this.grist.addSiblingNode(record)\n })\n }\n\n /**\n * Deletes the selected records in the component's data. It removes the selected records from the data,\n * optionally marking them as deleted.\n *\n * @method\n * @param {boolean} dirty - If true, the method marks the records as deleted.\n */\n deleteSelectedRecords(dirty = true) {\n const records = this.selected || ([] as GristRecord[])\n\n records.forEach(record => {\n if (dirty) {\n record.__dirty__ = '-'\n }\n\n const rowIndex = this.dirtyData.records.findIndex(rec => rec === record)\n this.dirtyData.records.splice(rowIndex, 1)\n })\n\n this.checkDirties()\n }\n\n /**\n * Adds a new record to the data grid. The added record is marked as newly created\n * by setting the `__dirty__` flag to '+'. This flag indicates that the record\n * is in a \"new\" state and hasn't been committed to the main data yet.\n *\n * @param {GristRecord} [record] - An optional record to add. If no record is provided,\n * an empty record with the `__dirty__` flag set to '+' will be added.\n */\n addRecord(record?: GristRecord) {\n this._data = {\n ...this._data,\n records: [\n ...this.dirtyData.records,\n {\n ...record,\n __dirty__: '+'\n }\n ]\n }\n }\n\n /**\n * Adds a new record to the top of the data grid. The added record is marked as newly created\n * by setting the `__dirty__` flag to '+'. This flag indicates that the record\n * is in a \"new\" state and hasn't been committed to the main data yet.\n *\n * This method is useful when you need to add new records at the top of the grid\n * without changing the default behavior of the appendable row.\n *\n * @param {GristRecord} [record] - An optional record to add. If no record is provided,\n * an empty record with the `__dirty__` flag set to '+' will be added.\n */\n addRecordToTop(record?: GristRecord) {\n const newRecord = {\n ...record,\n __dirty__: '+'\n }\n\n this._data = {\n ...this._data,\n records: [newRecord, ...this.dirtyData.records]\n }\n\n // 새 레코드에 포커스 및 스크롤 처리\n setTimeout(() => {\n // 그리드가 있는 경우 첫 번째 행에 포커스 설정\n if (this.grist) {\n // 포커스를 첫 번째 행으로 설정 (첫 번째 편집 가능한 셀로)\n const focusableColumns = this.compiledConfig.columns.filter(\n column => column.type !== 'gutter' && !column.hidden && column.record.editable\n )\n\n if (focusableColumns.length > 0) {\n const columnIndex = this.compiledConfig.columns.indexOf(focusableColumns[0])\n this.grist.dispatchEvent(\n new CustomEvent('focus-change', {\n bubbles: true,\n composed: true,\n detail: {\n row: 0,\n column: columnIndex\n }\n })\n )\n }\n\n // 스크롤을 맨 위로 이동\n this.grist.scrollTop = 0\n }\n }, 0)\n }\n\n /**\n * Retrieves the search text used for filtering records.\n *\n * @property {string}\n */\n get searchText() {\n return (this.filters?.find(filter => filter.operator === 'search')?.value as string)?.match(/^\\%(.*)\\%$/)?.[1] || ''\n }\n\n /**\n * Sets the search text for filtering records.\n *\n * @property {string}\n */\n set searchText(searchText: string) {\n var filters = (this.filters || []).filter((filter: FilterValue) => filter.operator !== 'search')\n\n if (searchText) {\n const filtersConfig = this.compiledConfig.columns.filter(columnConfig => !!columnConfig.filter)\n const searchColumns = filtersConfig.filter(columnConfig => {\n const filter = columnConfig.filter as FilterConfigObject\n return filter!.operator === 'search'\n })\n\n filters = [\n ...searchColumns.map((column: ColumnConfig) => {\n const { name } = column\n\n return {\n name,\n operator: 'search',\n value: `%${searchText}%`\n } as FilterValue\n }),\n ...filters\n ]\n }\n\n this.grist.dispatchEvent(\n new CustomEvent('fetch-params-change', {\n bubbles: true,\n composed: true,\n detail: {\n filters\n }\n })\n )\n }\n /**\n * Returns the current pagination limit.\n * @returns {number} The current pagination limit value\n */\n getCurrentLimit() {\n return this.dataProvider?.limit || ZERO_PAGINATION.limit\n }\n\n /**\n * Checks the validity of dirty records.\n * @returns {Array<{record: GristRecord, invalidFields: Array<{field: string, reason: ValidationReason}>}>} List of invalid records and their corresponding invalid fields\n */\n checkDirtyRecordsValidity(): { record: GristRecord; invalidFields: { field: string; reason: ValidationReason }[] }[] {\n const records = this.dirtyRecords\n const validationResults = []\n\n for (const record of records) {\n const invalidFields = []\n\n for (const column of this.compiledConfig.columns) {\n if (column.record?.mandatory && (record[column.name] === undefined || record[column.name] === null)) {\n invalidFields.push({\n field: column.name,\n reason: ValidationReason.MANDATORY\n })\n }\n // Additional validation rules can be implemented here.\n }\n\n if (invalidFields.length > 0) {\n validationResults.push({\n record,\n invalidFields\n })\n }\n }\n\n return validationResults\n }\n}\n"]}
|
|
1
|
+
{"version":3,"file":"data-grist.js","sourceRoot":"","sources":["../../src/data-grist.ts"],"names":[],"mappings":"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","sourcesContent":["import './data-grid/data-grid.js'\nimport './data-list/data-list.js'\nimport './data-card/data-card.js'\n\nimport { css, html, LitElement, PropertyValues } from 'lit'\nimport { customElement, property, query, queryAsync, state } from 'lit/decorators.js'\nimport isEmpty from 'lodash-es/isEmpty.js'\nimport isEqual from 'lodash-es/isEqual.js'\n\nimport Headroom from '@operato/headroom'\nimport { pulltorefresh } from '@operato/pull-to-refresh'\nimport { HeadroomStyles, ScrollbarStyles, SpinnerStyles } from '@operato/styles'\nimport { PagePreferenceProvider } from '@operato/p13n'\nimport { SnapshotTaker, TimeCapsule } from '@operato/utils'\n\nimport { buildConfig } from './configure/config-builder.js'\nimport { ZERO_CONFIG, ZERO_DATA, ZERO_PAGES, ZERO_PAGINATION } from './configure/zero-config.js'\nimport { DataCard } from './data-card/data-card.js'\nimport { DataConsumer } from './data-consumer.js'\nimport { DataGrid } from './data-grid/data-grid.js'\nimport { DataList } from './data-list/data-list.js'\nimport { DataProvider } from './data-provider.js'\nimport {\n ColumnConfig,\n FetchHandler,\n FilterConfigObject,\n FilterValue,\n GristConfig,\n GristData,\n GristRecord,\n GristSelectFunction,\n PaginationConfig,\n PersonalGristPreference,\n SortersConfig,\n ValidationReason\n} from './types.js'\nimport { convertListParamToSearchString, convertSearchStringToListParam } from './utils/index.js'\n\n/**\n * A custom element for rendering data in a grid, list, or card format.\n *\n * @element ox-grist\n */\n@customElement('ox-grist')\nexport class DataGrist extends LitElement implements DataConsumer {\n static styles = [\n ScrollbarStyles,\n HeadroomStyles,\n SpinnerStyles,\n css`\n :host {\n display: flex;\n flex-direction: column;\n box-sizing: border-box;\n background-color: var(--grist-background-color);\n min-height: 120px;\n\n overflow: hidden;\n\n /* for pulltorefresh controller */\n position: relative;\n\n padding: var(--ox-grist-padding);\n\n --md-icon-size: var(--grid-record-wide-fontsize);\n }\n\n #wrap {\n flex: 1;\n display: flex;\n flex-direction: column;\n overflow: auto;\n }\n\n ox-grid {\n flex: 1;\n border: var(--grid-wrap-container-border, 0px solid transparent);\n border-width: var(--grid-wrap-container-border-width, 0px);\n }\n\n slot[name='headroom'] {\n display: block;\n position: absolute;\n top: 0;\n left: 0;\n\n width: 100%;\n box-sizing: border-box;\n background-color: var(--grist-background-color);\n\n z-index: 8;\n }\n `\n ]\n\n /**\n * The rendering mode of the component, which can be 'GRID', 'LIST', or 'CARD'.\n * Default is 'GRID'.\n *\n * @property {string}\n */\n @property() mode: 'GRID' | 'LIST' | 'CARD' = 'GRID'\n\n /**\n * The configuration object for the data grist.\n *\n * @property {Object}\n */\n @property() config: any\n\n /**\n * The data to be displayed in the data grist.\n *\n * @property {GristData}\n */\n @property({ type: Object }) data: GristData = ZERO_DATA\n\n /**\n * An array of selected records in the data grist.\n *\n * @property {GristRecord[]}\n */\n @property({ type: Array }) selectedRecords?: GristRecord[]\n\n /**\n * Indicates whether explicit fetching of data is enabled. If true, data will be fetched\n * only when `fetch` method is called. Default is false.\n *\n * @property {boolean}\n */\n @property({ type: Boolean, attribute: 'explicit-fetch' }) explicitFetch: boolean = false\n\n /**\n * The fetch handler function used to retrieve data from a remote source.\n *\n * @property {FetchHandler}\n */\n @property() fetchHandler?: FetchHandler\n\n /**\n * Additional fetch options to be passed to the fetch handler.\n *\n * @property {Object}\n */\n @property() fetchOptions: any\n\n /**\n * An array of filter values to be applied to the data grist.\n *\n * @property {FilterValue[]}\n */\n @property({ type: Array }) filters?: FilterValue[]\n\n /**\n * An array of sorters to determine the order of records in the data grist.\n *\n * @property {SortersConfig}\n */\n @property({ type: Array }) sorters?: SortersConfig\n\n /**\n * The pagination configuration for the data grist.\n *\n * @property {PaginationConfig}\n */\n @property({ type: Object }) pagination?: PaginationConfig\n\n /**\n * Indicates whether URL parameters are sensitive to changes. If true, changes in URL\n * parameters will trigger data fetching. Default is undefined.\n *\n * @property {boolean}\n */\n @property({ type: Boolean, attribute: 'url-params-sensitive' }) urlParamsSensitive?: boolean\n\n @property({ type: Object }) personalConfigProvider: PagePreferenceProvider = {\n load: () => {\n return {}\n },\n save: (preference: any) => preference,\n reset: () => {}\n }\n\n @state() personalConfig?: {\n columns?: Partial<ColumnConfig>[]\n [key: string]: any\n }\n\n @state() _data: GristData = ZERO_DATA // copy data, dirty data\n @state() _config: GristConfig = ZERO_CONFIG // compiled configuration\n @state() private _showSpinner: boolean = false\n\n @query('slot[name=headroom]') head!: HTMLElement\n @query('#grist') grist!: DataGrid | DataList | DataCard\n @queryAsync('#wrap') private wrap!: Promise<HTMLElement>\n\n private timeCapsule?: TimeCapsule\n private snapshotTaker?: SnapshotTaker\n\n private dataProvider?: DataProvider\n private pulltorefreshHandle?: any\n private headroom?: Headroom\n private orginPaddingTop?: string\n private originMarginTop?: string\n private lastLocation: { origin?: string; pathname?: string; search?: string } = {}\n\n /* 그리드가 준비되기 전에 fetch 요청이 있었음을 나타내는 플래그임 */\n private pendingFetch?: boolean\n\n private popstateEventHandler: EventListener = ((e: Event) => {\n const { origin, pathname, search } = window.location\n if (\n this.lastLocation.origin &&\n (this.lastLocation.origin !== origin ||\n this.lastLocation.pathname !== pathname ||\n this.lastLocation.search === search)\n ) {\n return\n }\n\n this.lastLocation = {\n origin,\n pathname,\n search\n }\n\n var { filters = [], sorters = [] } = convertSearchStringToListParam(search)\n\n try {\n if (!isEqual(filters, this.filters) || !isEqual(sorters, this.sorters)) {\n this.dispatchEvent(\n new CustomEvent('fetch-params-change', {\n bubbles: true,\n composed: true,\n detail: {\n filters,\n sorters,\n from: 'url-parameter'\n }\n })\n )\n }\n } catch (e) {\n console.error(`invalid fetch params on URL query string : ${e}`)\n }\n }).bind(this)\n\n private fetchParamsChangeEventHandler: EventListener = ((e: Event) => {\n const { sorters, filters, from } = (e as CustomEvent).detail\n\n sorters && (this.sorters = sorters)\n filters && (this.filters = filters)\n\n if (!this.urlParamsSensitive || from === 'url-parameter') {\n return\n }\n\n const queryString = convertListParamToSearchString({ filters, sorters, base: window.location.search })\n this.lastLocation.search = queryString ? `?${queryString}` : ''\n const url = `${window.location.pathname}${this.lastLocation.search}`\n\n history.pushState({}, document.title, url)\n }).bind(this)\n\n async firstUpdated() {\n // Mutation Observer를 사용하여 슬롯의 크기 변경을 감지하고 다시 그린다.\n const observer = new ResizeObserver(mutationsList => {\n this.setHeadroom()\n })\n\n observer.observe(this.head)\n }\n\n async connectedCallback() {\n super.connectedCallback()\n\n this.dataProvider = new DataProvider(this)\n\n this.timeCapsule = new TimeCapsule(10)\n this.snapshotTaker = new SnapshotTaker(this, this.timeCapsule!)\n\n this.addEventListener('fetch-params-change', this.fetchParamsChangeEventHandler)\n document.addEventListener('keydown', this._onDocumentKeydown)\n\n await this.updateComplete\n }\n\n disconnectedCallback() {\n super.disconnectedCallback()\n\n this.removeEventListener('fetch-params-change', this.fetchParamsChangeEventHandler)\n document.removeEventListener('keydown', this._onDocumentKeydown)\n\n this.timeCapsule && this.timeCapsule.dispose()\n this.snapshotTaker && this.snapshotTaker.dispose()\n\n delete this.timeCapsule\n delete this.snapshotTaker\n\n this.dataProvider?.dispose()\n this.resetPullToRefresh()\n }\n\n private resetPullToRefresh() {\n if (this.pulltorefreshHandle) {\n this.pulltorefreshHandle()\n delete this.pulltorefreshHandle\n }\n }\n\n private async setPullToRefresh() {\n this.resetPullToRefresh()\n if (this.mode !== 'GRID' && this.fetchHandler) {\n this.pulltorefreshHandle = pulltorefresh({\n container: await this.wrap,\n scrollable: this.grist.pullToRefreshTarget,\n refresh: () => {\n return this.fetch(true)\n }\n })\n }\n }\n\n public applyUpdatedConfiguration() {\n if (!this.personalConfig || !this.config) {\n return\n }\n\n const config = { ...this.config }\n const columns: Partial<ColumnConfig>[] = config.columns\n\n const { columns: personalColumns, sorters, pagination, mode } = this.personalConfig\n\n if (personalColumns) {\n const xcolumns = columns.map((column: Partial<ColumnConfig>) => {\n const personalColumn = personalColumns.find(pcolumn => pcolumn.name == column.name)\n return personalColumn ? { ...column, ...personalColumn } : column\n })\n\n function reorderList(a: { name: string }[], b: { name: string }[]): { name: string }[] {\n // 결과 배열 초기화, a 배열 길이만큼 undefined로 채움\n const result = new Array(a.length)\n\n // b 배열에 없는 아이템은 원래 위치로 채움\n a.forEach((item, index) => {\n if (!item.name || !b.find(bi => bi.name == item.name)) {\n result[index] = item\n }\n })\n\n b.forEach(item => {\n const ai = a.find(ai => ai.name == item.name)\n if (ai) {\n result[result.findIndex(slot => slot === undefined)] = ai\n }\n })\n\n return result\n }\n\n // 배열 재정렬 실행\n config.columns = reorderList(xcolumns as any, personalColumns as any)\n }\n\n if (pagination) {\n config.pagination = pagination\n }\n\n if (sorters) {\n config.sorters = sorters\n }\n\n if (mode) {\n this.mode = mode\n }\n\n this._config = buildConfig({\n ...config\n })\n\n this.dispatchEvent(\n new CustomEvent('config-change', {\n bubbles: true,\n composed: true,\n detail: this.compiledConfig\n })\n )\n\n this.pagination = this.compiledConfig.pagination || {}\n\n if (!this.urlParamsSensitive) {\n const sorters = this.compiledConfig?.sorters\n const filters = this.compiledConfig?.columns\n .filter(\n column =>\n column.filter &&\n 'value' in (column.filter as FilterConfigObject) &&\n (typeof (column.filter as FilterConfigObject).value === 'boolean' ||\n (column.filter as FilterConfigObject).value)\n )\n .map(column => {\n const filter = column.filter as FilterConfigObject\n return { name: column.name, operator: filter.operator, value: filter.value } as FilterValue\n })\n\n this.dispatchEvent(\n new CustomEvent('fetch-params-change', {\n bubbles: true,\n composed: true,\n detail: {\n filters,\n sorters,\n from: 'config'\n }\n })\n )\n }\n\n if (this.dataProvider) {\n const { limit, pages = ZERO_PAGES } = this._config.pagination || ZERO_PAGINATION\n this.dataProvider.page = 1\n this.dataProvider.limit = limit || pages[0] || ZERO_PAGES[0]\n }\n\n if (this.pendingFetch || (!this.urlParamsSensitive && !this.explicitFetch)) {\n this.pendingFetch = false\n this.fetch()\n }\n }\n\n private setHeadroom() {\n this.headroom?.destroy()\n\n if (this.grist && this.head && this.head.style.display !== 'none') {\n const style = getComputedStyle(this.grist)\n\n this.orginPaddingTop = style.paddingTop || '0'\n this.originMarginTop = style.marginTop || '0'\n\n this.headroom = new Headroom(this.head, {\n scroller: this.grist,\n onTop: () => {\n this.grist.style.paddingTop = this.orginPaddingTop!\n this.originMarginTop = this.grist.style.marginTop\n\n this.grist.style.marginTop = this.head.clientHeight + 'px'\n },\n onNotTop: () => {\n this.grist.style.marginTop = this.originMarginTop!\n this.orginPaddingTop = this.grist.style.paddingTop\n\n this.grist.style.paddingTop = this.head.clientHeight + 'px'\n }\n })\n\n this.headroom.init()\n } else if (this.orginPaddingTop) {\n this.grist.style.paddingTop = this.orginPaddingTop\n this.grist.style.marginTop = this.originMarginTop!\n }\n }\n\n render() {\n const empty = !this._showSpinner && this._data.records.length == 0\n\n return html`\n <slot name=\"headroom\"> </slot>\n <div id=\"wrap\" @keydown=${(e: KeyboardEvent) => this.onKeydown(e)}>\n ${this.mode == 'GRID'\n ? html`\n <ox-grid\n id=\"grist\"\n .config=${this.compiledConfig}\n .data=${this._data}\n .sorters=${this.sorters || []}\n .filters=${this.filters || []}\n .pagination=${this.pagination || {}}\n ?empty=${empty}\n >\n <slot name=\"setting\" slot=\"setting\"> </slot>\n </ox-grid>\n `\n : this.mode == 'CARD'\n ? html`\n <ox-card\n id=\"grist\"\n .config=${this.compiledConfig}\n .data=${this._data}\n .sorters=${this.sorters || []}\n .filters=${this.filters || []}\n ?empty=${empty}\n >\n </ox-card>\n `\n : html`\n <ox-list\n id=\"grist\"\n .config=${this.compiledConfig}\n .data=${this._data}\n .sorters=${this.sorters || []}\n .filters=${this.filters || []}\n ?empty=${empty}\n >\n </ox-list>\n `}\n </div>\n\n <div id=\"spinner\" ?show=${this._showSpinner}></div>\n `\n }\n\n /* for timecapsule feature */\n private onKeydown(e: KeyboardEvent) {\n if (e.key === 'z' && (e.metaKey || e.ctrlKey)) {\n if (e.shiftKey) {\n this.redo()\n } else {\n this.undo()\n }\n }\n }\n\n /* 트리 그리드 단일 셀 복사 폴백: document 레벨에서 Ctrl+C를 수신.\n * 혼합 화면 등에서 행 클릭 후 scan input이 포커스를 빼앗아가므로\n * DataGrist 내부 이벤트 버블링에 의존할 수 없어 document 레벨에서 처리.\n * 이 DataGrist에 focused 셀이 있을 때만 동작한다. */\n private _onDocumentKeydown = (e: KeyboardEvent) => {\n if (e.key !== 'c' || !(e.metaKey || e.ctrlKey) || this.mode !== 'GRID') return\n if (e.defaultPrevented) return // 내부 DataGridBody 핸들러가 이미 처리함\n const grist = this.grist as any\n const focused = grist?.focused\n if (focused?.row === undefined) return\n const selection = window.getSelection()\n if (selection?.type === 'Range') return\n /* DataGridBody.copy()에 위임: 컬럼 조회·클립보드 쓰기·flash 애니메이션을 일괄 처리 */\n e.preventDefault()\n ;(grist.body as any).copy()\n }\n\n /**\n * Gets the current state of the component. The state includes information about the\n * dirty records and their changes.\n *\n * @getter\n * @public\n * @type {string}\n */\n get state() {\n return JSON.stringify(this.dirtyData)\n }\n\n /**\n * Undoes the previous change in the component's data by restoring it to the previous state.\n * This method is part of the TimeCapsule feature, allowing users to revert changes.\n */\n undo() {\n if (!this.timeCapsule?.backwardable) {\n return\n }\n\n this._data = JSON.parse(this.timeCapsule?.backward())\n }\n\n /**\n * Redoes the previously undone change in the component's data by restoring it to the next state.\n * This method is part of the TimeCapsule feature, allowing users to reapply changes.\n */\n redo() {\n if (!this.timeCapsule?.forwardable) {\n return\n }\n\n this._data = JSON.parse(this.timeCapsule?.forward())\n }\n\n /**\n * Fetches data from a data source and updates the component's data. This method is used to retrieve\n * new data or refresh the existing data in the component.\n *\n * @method\n * @param {boolean} reset - If true, the method resets the scroll position to the top.\n */\n async fetch(reset = true) {\n if (this.compiledConfig === ZERO_CONFIG) {\n /* avoid to be here */\n console.warn('grist is not configured yet.')\n this.pendingFetch = true\n return\n }\n\n if (reset && this.grist) {\n /*\n * scroll 의 현재위치에 의해서 scroll 이벤트가 발생할 수 있으므로, 이를 방지하기 위해서 스크롤의 위치를 TOP으로 옮긴다.\n * (scroll 이 첫페이지 크기 이상으로 내려가 있는 경우, 첫페이지부터 다시 표시하는 경우에, scroll 이벤트가 발생한다.)\n */\n this.grist.scrollTop = 0\n }\n\n if (this.dataProvider) {\n let { limit: initLimit, page: initPage, infinite } = this.compiledConfig.pagination || {}\n let { limit = initLimit || ZERO_PAGINATION.limit, page = initPage || ZERO_PAGINATION.page } = this.dataProvider\n\n if (infinite || this.mode !== 'GRID') {\n await this.dataProvider.attach(reset)\n } else {\n await this.dataProvider.fetch({\n limit,\n page,\n sorters: this.sorters || this.compiledConfig?.sorters,\n sortings: this.sorters || this.compiledConfig?.sorters,\n filters: this.filters\n })\n\n this.pagination && (this.pagination!.limit = limit)\n }\n }\n }\n\n async updated(changes: PropertyValues<this>) {\n var needToSetPullToRefresh = false\n\n if (changes.has('filters')) {\n await this.requestUpdate()\n }\n\n if (changes.has('sorters')) {\n await this.requestUpdate()\n }\n\n if (changes.has('personalConfigProvider')) {\n this.personalConfig = await this.personalConfigProvider.load()\n } else if (changes.has('config') || changes.has('personalConfig')) {\n this.applyUpdatedConfiguration()\n }\n\n if (changes.has('fetchHandler')) {\n this.dataProvider && (this.dataProvider.fetchHandler = this.fetchHandler)\n needToSetPullToRefresh = true\n }\n\n if (changes.has('fetchOptions')) {\n this.dataProvider && (this.dataProvider.fetchOptions = this.fetchOptions)\n }\n\n if (changes.has('data')) {\n this.reset()\n }\n\n if (changes.has('mode')) {\n if (this.mode === 'GRID') {\n this.style.removeProperty('--ox-grist-padding')\n } else {\n this.style.setProperty('--ox-grist-padding', '0')\n }\n\n needToSetPullToRefresh = true\n this.setHeadroom()\n }\n\n if (changes.has('selectedRecords')) {\n var { records } = this.data || []\n var selectedRecords = this.selectedRecords || []\n\n var _records = this.dirtyData.records\n\n /* 원본데이타에서 index를 찾아서, 복사본 데이타의 selected를 설정한다. */\n selectedRecords.forEach(selected => {\n var index = records.indexOf(selected)\n var record = _records[index]\n if (record) {\n record['__selected__'] = true\n }\n })\n\n /* update _data property intentionally */\n this.refresh()\n }\n\n if (changes.has('urlParamsSensitive')) {\n if (this.urlParamsSensitive) {\n //@ts-ignore\n this.popstateEventHandler() // call for the first time\n\n window.addEventListener('popstate', this.popstateEventHandler)\n } else {\n window.removeEventListener('popstate', this.popstateEventHandler)\n }\n }\n\n if (needToSetPullToRefresh) {\n await this.setPullToRefresh()\n }\n }\n\n /**\n * Represents the compiled configuration of the component, which includes various settings and\n * column configurations. You can access this property to get information about how the component\n * is configured.\n *\n * @getter\n * @public\n * @type {GristConfig}\n */\n get compiledConfig(): GristConfig {\n return this._config\n }\n\n /**\n * Returns the dirty data in the component, which includes the records that have been added,\n * modified, or deleted but have not been committed to the main data yet.\n *\n * @getter\n * @public\n * @type {GristData} - An object representing the dirty data.\n */\n get dirtyData(): GristData {\n return (this.grist as any)?.data || {}\n }\n\n /**\n * Returns an array of GristRecord objects representing the records in the dirty state. These are\n * the records that have been added, modified, or deleted but have not been committed to the main\n * data yet.\n *\n * @getter\n * @public\n * @type {GristRecord[]} - An array of GristRecord objects representing the dirty records.\n */\n get dirtyRecords() {\n var { records = [] } = this.dirtyData\n return records\n .filter(record => record['__dirty__'])\n .filter(record => {\n // cuFlag 제외하고 키가 모두 빈값이면 필터함 (오브젝트일때는 키가 있어도 모든 값이 빈값이면 제외)\n const keys = Object.keys(record).filter(k => !k.startsWith('__') && k !== 'cuFlag')\n return keys.some(k => {\n const value = record[k]\n if (value && typeof value === 'object' && !Array.isArray(value) && !(value instanceof Date)) {\n return !Object.values(value).every(v => v === '' || v === null || v === undefined)\n }\n return typeof value === 'string' ? value.trim().length > 0 : !isEmpty(value)\n })\n })\n }\n\n /**\n * Exports a list of patches representing the changes in the dirty state of records. Each patch\n * contains information about whether a record was added, modified, or deleted, along with the\n * record's unique identifier and the changed field values.\n *\n * @param {Object} options - Export options that control the format of the patch list.\n * @param {string} options.flagName - The name of the flag field in the patch indicating the change type (default: 'patchFlag').\n * @param {string} options.addedFlag - The flag value for added records (default: '+').\n * @param {string} options.deletedFlag - The flag value for deleted records (default: '-').\n * @param {string} options.modifiedFlag - The flag value for modified records (default: 'M').\n * @param {string} options.idField - The name of the unique identifier field (default: 'id').\n * @returns {Object[]} - An array of objects representing the patches.\n */\n exportPatchList({ flagName = 'patchFlag', addedFlag = '+', deletedFlag = '-', modifiedFlag = 'M', idField = 'id' }) {\n let dirtyRecords = this.dirtyRecords\n if (!dirtyRecords || dirtyRecords.length == 0) {\n return []\n }\n\n return dirtyRecords.map(record => {\n let flag = record.__dirty__\n\n let patch: any = {\n [flagName]: flag == 'M' ? modifiedFlag : flag == '+' ? addedFlag : deletedFlag\n }\n\n if (idField in record && record[idField]) {\n patch[idField] = record[idField]\n }\n\n for (let key in record.__dirtyfields__) {\n const value = record[key]\n\n // id를 가진 object면 id, name만 남긴다 (ObjectRef 규격)\n if (value && typeof value === 'object' && !Array.isArray(value) && !(value instanceof Date) && value.id) {\n patch[key] = { id: value.id, name: value.name }\n } else {\n // 그리드를 빈값으로 던지면\n patch[key] = value === '' || value === null || value === undefined ? null : value\n }\n }\n return patch\n })\n }\n\n /**\n * Exports the selected records or all records in the component, depending on the specified options.\n * You can use this method to export data from the component in various formats or for different purposes.\n *\n * @param {Object} options - Export options that control the behavior of the export.\n * @param {boolean} options.ifSelectedOnly - If true, exports only the selected records. If false, exports all records.\n * @param {boolean} options.includeHiddenField - If true, includes hidden fields in the exported data.\n * @returns {Object[]} - An array of objects representing the exported records.\n */\n exportRecords({ ifSelectedOnly = true, includeHiddenField = true } = {}) {\n let records = ifSelectedOnly ? this.selected : this.data.records\n\n if (ifSelectedOnly && (!records || records.length == 0)) {\n records = this.data.records\n }\n\n let columns = this.compiledConfig.columns.filter(column => column.type !== 'gutter')\n if (!includeHiddenField) {\n columns = columns.filter(column => !column.hidden)\n }\n let columnNames = columns.map(column => column.name)\n\n return records.map(item => {\n return columnNames.reduce((record, name) => {\n record[name] = item[name]\n return record\n }, {} as any)\n })\n }\n\n /**\n * Gets the currently selected records in the component. It returns an array of GristRecord objects\n * that are currently selected. You can access this getter to retrieve the selected records.\n *\n * @getter\n * @public\n * @type {GristRecord[]}\n */\n get selected() {\n var { records = [] } = this.grist?.data\n return records.filter(record => record['__selected__'])\n }\n\n /**\n * Sets the currently selected records in the component. You can use this setter to programmatically\n * select specific records by providing an array of GristRecord objects to be selected.\n *\n * @setter\n * @public\n * @type {GristRecord[]}\n */\n set selected(selected: GristRecord[]) {\n if (!this.grist) {\n console.warn('grist not ready')\n return\n }\n\n selected.forEach(record => (record.__selected__ = true))\n this.refresh()\n }\n\n /**\n * Selects records in the component based on the provided selector function. You can use this method\n * to programmatically select specific records in the component.\n *\n * @method\n * @param {GristSelectFunction} selector - A function that determines which records to select.\n * @param {boolean} reset - If true, clears the previous selection before applying the new one.\n * If false, adds to the existing selection.\n */\n select(selector: GristSelectFunction, reset: boolean = false) {\n var { records = [] } = this.grist?.data\n\n if (reset) {\n this.selected.forEach(record => (record.__selected__ = false))\n }\n\n records.filter(record => selector(record)).forEach(record => (record.__selected__ = true))\n this.refresh()\n }\n\n /**\n * Shows the loading spinner in the component's UI to indicate ongoing data loading or processing.\n * You can call this method to display the spinner when necessary.\n */\n showSpinner() {\n this._showSpinner = true\n }\n\n /**\n * Hides the loading spinner in the component's UI to indicate that data loading or processing has completed.\n * You can call this method to hide the spinner when loading or processing is finished.\n */\n hideSpinner() {\n this._showSpinner = false\n }\n\n /**\n * Focuses on the component, making it the active element in the document. This method is useful\n * when you want to programmatically set focus to the component.\n */\n focus() {\n super.focus()\n\n this.grist.focus()\n }\n\n /**\n * Commits the changes made in the dirty state to the component's data. This method updates the\n * component's data with the changes made in the dirty state and clears the dirty state.\n */\n commit() {\n var { page, total, limit, records } = this.grist.data\n\n this.data = {\n page,\n total,\n limit,\n records: records.map(record => {\n var copied = {\n ...record\n }\n\n delete copied.__seq__\n delete copied.__dirty__\n delete copied.__selected__\n delete copied.__changes__\n delete copied.__dirtyfields__\n delete copied.__origin__\n delete copied.__depth__\n delete copied.__expanded__\n delete copied.__check_in_tree__\n delete copied.__children__\n delete copied.__typename\n\n return copied\n })\n }\n }\n\n /**\n * Shows the headroom element in the component. The headroom element is typically used for\n * displaying additional information or controls at the top of the component.\n */\n showHeadroom() {\n if (this.head) {\n this.head.style.display = 'block'\n this.setHeadroom()\n }\n }\n\n /**\n * Hides the headroom element in the component. This method hides the additional information\n * or controls displayed at the top of the component.\n */\n hideHeadroom() {\n if (this.head) {\n this.head.style.display = 'none'\n this.setHeadroom()\n }\n }\n\n /**\n * Toggles the visibility of the headroom element in the component. If the headroom element is\n * currently visible, this method hides it. If it's hidden, this method shows it.\n */\n toggleHeadroom() {\n if (this.head) {\n const display = this.head.style.display\n this.head.style.display = display !== 'none' ? 'none' : 'block'\n\n this.setHeadroom()\n }\n }\n\n /**\n * Forced internal data to be reflected on the screen\n * Data changing through a normal method is automatically reflected on the screen, so it is a method that does not need to be used in general.\n * Therefore, it will be deprecated.\n * @method\n */\n refresh() {\n this.grist.refresh()\n }\n\n /**\n * Resets the component's data to its original state before any changes were made.\n * This method discards all unsaved changes and restores the data to its initial state.\n *\n * @method\n * @public\n */\n reset() {\n // TODO tree 형태의 데이타로 _data를 만들 때, children, collapsed 등을 감안한다.\n var {\n limit = ZERO_PAGINATION.limit,\n page = ZERO_PAGINATION.page,\n total = ZERO_PAGINATION.total,\n records = []\n } = this.data || ZERO_PAGINATION\n\n const { childrenProperty, expanded } = this.compiledConfig.tree\n\n /* 원본 데이타를 남기고, 복사본(_data)을 사용한다. */\n records = ([] as GristRecord[]).concat(\n ...records.map((record, idx) =>\n this.traverseReset(\n record,\n this.mode == 'GRID' ? (page - 1) * limit + idx + 1 : idx + 1,\n 0,\n childrenProperty,\n expanded as () => boolean\n )\n )\n )\n\n if (childrenProperty) {\n records = ([] as GristRecord[]).concat(...records.map(record => this.traverseExpanded(record)))\n }\n\n this._data = {\n limit,\n page,\n total,\n records\n }\n\n this.timeCapsule?.reset()\n this.snapshotTaker?.take(true)\n }\n\n private traverseReset(\n record: GristRecord,\n seq: number,\n __depth__: number,\n childrenProperty: string | undefined,\n expanded: () => boolean\n ): GristRecord {\n const copied = {\n ...record,\n __seq__: seq,\n __origin__: record\n }\n\n if (childrenProperty) {\n const children: GristRecord[] = record[childrenProperty!]\n\n const __expanded__ = (expanded as Function)(record)\n const __children__ = (children || []).map(child =>\n this.traverseReset(child, seq, __depth__ + 1, childrenProperty, expanded)\n )\n\n Object.assign(copied, { __depth__, __children__, __expanded__ })\n }\n\n return copied\n }\n\n private traverseExpanded(record: GristRecord): GristRecord[] {\n const { __expanded__, __children__ = [] } = record\n\n if (__expanded__ && __children__.length > 0) {\n return [record].concat(...__children__.map(child => this.traverseExpanded(child)))\n } else {\n return [record]\n }\n }\n\n /**\n * Checks for dirty records in the component's data and marks them as dirty.\n * Dirty records are those that have unsaved changes.\n */\n checkDirties() {\n const records = this.dirtyRecords\n const { columns = [] } = this.compiledConfig || {}\n\n for (var record of records || []) {\n var origin = record['__origin__'] || {}\n\n var dirtyFields = (record['__dirtyfields__'] = columns\n .filter(column => column.type !== 'gutter' && !isEqual(origin[column.name], record[column.name]))\n .reduce((sum, column) => {\n var name = column.name\n\n sum[name] = {\n before: origin[name],\n after: record[name]\n }\n\n return sum\n }, {} as any))\n\n if (record['__dirty__'] == 'M' && isEmpty(dirtyFields)) {\n delete record['__dirty__']\n }\n }\n\n this._data = { ...this.dirtyData }\n\n this.snapshotTaker?.touch()\n }\n\n /**\n * Clones the selected records in the component's data. It creates a copy of the selected records\n * and marks them as new (added) records.\n */\n cloneSelectedRecords() {\n const records = this.selected || ([] as GristRecord[])\n\n records.forEach(record => {\n var cloned = {\n __dirty__: '+'\n } as GristRecord\n\n this.compiledConfig.columns\n .filter(column => column.record.editable)\n .forEach(column => {\n cloned[column.name] = record[column.name]\n })\n const rowIndex = this.dirtyData.records.findIndex(rec => rec === record)\n\n this.dirtyData.records.splice(rowIndex + 1, 0, cloned)\n })\n\n this.checkDirties()\n }\n\n /**\n * Adds child nodes to selected records in the component's tree data. It allows users to add child nodes\n * to the selected parent records.\n */\n addChildNodes() {\n const records = this.selected || ([] as GristRecord[])\n\n records.forEach(record => {\n this.grist.addChildNode(record)\n })\n }\n\n /**\n * Adds sibling nodes to selected records in the component's tree data. It allows users to add sibling nodes\n * to the selected records.\n */\n addSiblingNodes() {\n const records = this.selected || ([] as GristRecord[])\n\n records.forEach(record => {\n this.grist.addSiblingNode(record)\n })\n }\n\n /**\n * Deletes the selected records in the component's data. It removes the selected records from the data,\n * optionally marking them as deleted.\n *\n * @method\n * @param {boolean} dirty - If true, the method marks the records as deleted.\n */\n deleteSelectedRecords(dirty = true) {\n const records = this.selected || ([] as GristRecord[])\n\n records.forEach(record => {\n if (dirty) {\n record.__dirty__ = '-'\n }\n\n const rowIndex = this.dirtyData.records.findIndex(rec => rec === record)\n this.dirtyData.records.splice(rowIndex, 1)\n })\n\n this.checkDirties()\n }\n\n /**\n * Adds a new record to the data grid. The added record is marked as newly created\n * by setting the `__dirty__` flag to '+'. This flag indicates that the record\n * is in a \"new\" state and hasn't been committed to the main data yet.\n *\n * @param {GristRecord} [record] - An optional record to add. If no record is provided,\n * an empty record with the `__dirty__` flag set to '+' will be added.\n */\n addRecord(record?: GristRecord) {\n this._data = {\n ...this._data,\n records: [\n ...this.dirtyData.records,\n {\n ...record,\n __dirty__: '+'\n }\n ]\n }\n }\n\n /**\n * Adds a new record to the top of the data grid. The added record is marked as newly created\n * by setting the `__dirty__` flag to '+'. This flag indicates that the record\n * is in a \"new\" state and hasn't been committed to the main data yet.\n *\n * This method is useful when you need to add new records at the top of the grid\n * without changing the default behavior of the appendable row.\n *\n * @param {GristRecord} [record] - An optional record to add. If no record is provided,\n * an empty record with the `__dirty__` flag set to '+' will be added.\n */\n addRecordToTop(record?: GristRecord) {\n const newRecord = {\n ...record,\n __dirty__: '+'\n }\n\n this._data = {\n ...this._data,\n records: [newRecord, ...this.dirtyData.records]\n }\n\n // 새 레코드에 포커스 및 스크롤 처리\n setTimeout(() => {\n // 그리드가 있는 경우 첫 번째 행에 포커스 설정\n if (this.grist) {\n // 포커스를 첫 번째 행으로 설정 (첫 번째 편집 가능한 셀로)\n const focusableColumns = this.compiledConfig.columns.filter(\n column => column.type !== 'gutter' && !column.hidden && column.record.editable\n )\n\n if (focusableColumns.length > 0) {\n const columnIndex = this.compiledConfig.columns.indexOf(focusableColumns[0])\n this.grist.dispatchEvent(\n new CustomEvent('focus-change', {\n bubbles: true,\n composed: true,\n detail: {\n row: 0,\n column: columnIndex\n }\n })\n )\n }\n\n // 스크롤을 맨 위로 이동\n this.grist.scrollTop = 0\n }\n }, 0)\n }\n\n /**\n * Retrieves the search text used for filtering records.\n *\n * @property {string}\n */\n get searchText() {\n return (this.filters?.find(filter => filter.operator === 'search')?.value as string)?.match(/^\\%(.*)\\%$/)?.[1] || ''\n }\n\n /**\n * Sets the search text for filtering records.\n *\n * @property {string}\n */\n set searchText(searchText: string) {\n var filters = (this.filters || []).filter((filter: FilterValue) => filter.operator !== 'search')\n\n if (searchText) {\n const filtersConfig = this.compiledConfig.columns.filter(columnConfig => !!columnConfig.filter)\n const searchColumns = filtersConfig.filter(columnConfig => {\n const filter = columnConfig.filter as FilterConfigObject\n return filter!.operator === 'search'\n })\n\n filters = [\n ...searchColumns.map((column: ColumnConfig) => {\n const { name } = column\n\n return {\n name,\n operator: 'search',\n value: `%${searchText}%`\n } as FilterValue\n }),\n ...filters\n ]\n }\n\n this.grist.dispatchEvent(\n new CustomEvent('fetch-params-change', {\n bubbles: true,\n composed: true,\n detail: {\n filters\n }\n })\n )\n }\n /**\n * Returns the current pagination limit.\n * @returns {number} The current pagination limit value\n */\n getCurrentLimit() {\n return this.dataProvider?.limit || ZERO_PAGINATION.limit\n }\n\n /**\n * Checks the validity of dirty records.\n * @returns {Array<{record: GristRecord, invalidFields: Array<{field: string, reason: ValidationReason}>}>} List of invalid records and their corresponding invalid fields\n */\n checkDirtyRecordsValidity(): { record: GristRecord; invalidFields: { field: string; reason: ValidationReason }[] }[] {\n const records = this.dirtyRecords\n const validationResults = []\n\n for (const record of records) {\n const invalidFields = []\n\n for (const column of this.compiledConfig.columns) {\n if (column.record?.mandatory && (record[column.name] === undefined || record[column.name] === null)) {\n invalidFields.push({\n field: column.name,\n reason: ValidationReason.MANDATORY\n })\n }\n // Additional validation rules can be implemented here.\n }\n\n if (invalidFields.length > 0) {\n validationResults.push({\n record,\n invalidFields\n })\n }\n }\n\n return validationResults\n }\n}\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/typescript/lib/lib.esnext.float16.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/tslib/tslib.d.ts","../../../node_modules/tslib/modules/index.d.ts","../src/const.ts","../../../node_modules/lit-html/development/directive.d.ts","../../../node_modules/@types/trusted-types/lib/index.d.ts","../../../node_modules/lit-html/development/lit-html.d.ts","../../../node_modules/@lit/reactive-element/development/css-tag.d.ts","../../../node_modules/@lit/reactive-element/development/reactive-controller.d.ts","../../../node_modules/@lit/reactive-element/development/reactive-element.d.ts","../../../node_modules/lit-element/development/lit-element.d.ts","../../../node_modules/lit-html/development/is-server.d.ts","../../../node_modules/lit/development/index.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/base.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/custom-element.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/property.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/state.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/event-options.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query-all.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query-async.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query-assigned-nodes.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query-assigned-elements.d.ts","../../../node_modules/lit/development/decorators.d.ts","../src/configure/zero-config.ts","../src/data-card/data-card-field.ts","../src/data-card/data-card-gutter.ts","../../../node_modules/@material/web/icon/internal/icon.d.ts","../../../node_modules/@material/web/icon/icon.d.ts","../../input/dist/src/ox-form-field.d.ts","../../input/dist/src/ox-input-file.d.ts","../../utils/dist/src/sleep.d.ts","../../utils/dist/src/async-lock.d.ts","../../utils/dist/src/file-drop-helper.d.ts","../../utils/dist/src/context-path.d.ts","../../utils/dist/src/os.d.ts","../../utils/dist/src/swipe-listener.d.ts","../../utils/dist/src/fullscreen.d.ts","../../utils/dist/src/parse-jwt.d.ts","../../utils/dist/src/password-pattern.d.ts","../../utils/dist/src/closest-element.d.ts","../../utils/dist/src/detect-overflow.d.ts","../../utils/dist/src/has-overflow.d.ts","../../utils/dist/src/timecapsule/snapshot-taker.d.ts","../../utils/dist/src/timecapsule/timecapsule.d.ts","../../utils/dist/src/timecapsule/index.d.ts","../../utils/dist/src/clipboard.d.ts","../../utils/dist/src/format.d.ts","../../utils/dist/src/adjust-list-param.d.ts","../../utils/dist/src/is-unvalued.d.ts","../../utils/dist/src/stringify-bignum.d.ts","../../utils/dist/src/encode-form-params.d.ts","../../utils/dist/src/cookie.d.ts","../../utils/dist/src/number-parser.d.ts","../../utils/dist/src/longpressable.d.ts","../../utils/dist/src/decode-html.d.ts","../../utils/dist/src/script-loader.d.ts","../../utils/dist/src/reactive-controllers/tooltip-reactive-controller.d.ts","../../utils/dist/src/reactive-controllers/index.d.ts","../../utils/dist/src/index.d.ts","../src/data-grid/data-grid-field.ts","../src/record-view/event-handlers/record-view-body-click-handler.ts","../../../node_modules/i18next/typescript/helpers.d.ts","../../../node_modules/i18next/typescript/options.d.ts","../../../node_modules/i18next/typescript/t.d.ts","../../../node_modules/i18next/index.d.ts","../../../node_modules/i18next/index.d.mts","../src/record-view/record-view-body.ts","../../styles/dist/src/headroom-styles.d.ts","../../styles/dist/src/scrollbar-styles.d.ts","../../styles/dist/src/spinner-styles.d.ts","../../styles/dist/src/common-button-styles.d.ts","../../styles/dist/src/common-grist-styles.d.ts","../../styles/dist/src/button-container-styles.d.ts","../../styles/dist/src/common-header-styles.d.ts","../../styles/dist/src/box-padding-editor-styles.d.ts","../../styles/dist/src/gradient-direction-styles.d.ts","../../styles/dist/src/property-grid-styles.d.ts","../../styles/dist/src/table-event-styles.d.ts","../../styles/dist/src/inspector-styles.d.ts","../../styles/dist/src/line-styles.d.ts","../../styles/dist/src/index.d.ts","../src/record-view/record-view.ts","../../popup/dist/src/ox-popup.d.ts","../../popup/dist/src/ox-popup-list.d.ts","../../popup/dist/src/ox-popup-menu.d.ts","../../popup/dist/src/ox-popup-menuitem.d.ts","../../../node_modules/@material/web/elevation/internal/elevation.d.ts","../../../node_modules/@material/web/elevation/elevation.d.ts","../../../node_modules/@material/web/internal/controller/attachable-controller.d.ts","../../../node_modules/@material/web/focus/internal/focus-ring.d.ts","../../../node_modules/@material/web/focus/md-focus-ring.d.ts","../../../node_modules/@material/web/ripple/internal/ripple.d.ts","../../../node_modules/@material/web/ripple/ripple.d.ts","../../../node_modules/@material/web/labs/behaviors/mixin.d.ts","../../../node_modules/@material/web/labs/behaviors/element-internals.d.ts","../../../node_modules/@material/web/internal/controller/form-submitter.d.ts","../../../node_modules/@material/web/button/internal/button.d.ts","../../../node_modules/@material/web/button/internal/filled-button.d.ts","../../../node_modules/@material/web/button/filled-button.d.ts","../../../node_modules/@material/web/button/internal/outlined-button.d.ts","../../../node_modules/@material/web/button/outlined-button.d.ts","../../popup/dist/src/ox-prompt.d.ts","../../popup/dist/src/ox-floating-overlay.d.ts","../../popup/dist/src/open-popup.d.ts","../../popup/dist/src/index.d.ts","../src/data-card/data-card-gutter-menu.ts","../../i18n/dist/src/config.d.ts","../../i18n/dist/src/localize.d.ts","../../i18n/dist/src/ox-i18n.d.ts","../../i18n/dist/src/ox-i18n-selector.d.ts","../../i18n/dist/src/index.d.ts","../src/data-grid/data-grid-accum-field.ts","../../../node_modules/lit-html/development/directives/if-defined.d.ts","../../../node_modules/lit/development/directives/if-defined.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/lodash-es/debounce.d.ts","../../../node_modules/@types/lodash-es/isempty.d.ts","../src/data-grid/data-grid-body-style.ts","../src/data-grid/event-handlers/data-grid-body-click-handler.ts","../src/data-grid/event-handlers/data-grid-body-dblclick-handler.ts","../src/data-grid/event-handlers/data-grid-body-focus-change-handler.ts","../src/data-grid/event-handlers/data-grid-body-contextmenu-handler.ts","../src/data-grid/event-handlers/data-grid-body-keydown-handler.ts","../src/accumulator/accumulator.ts","../src/data-grid/data-grid-body.ts","../src/data-list/data-list-gutter.ts","../src/data-list/data-list-field.ts","../src/data-list/event-handlers/record-partial-click-handler.ts","../src/data-list/event-handlers/record-partial-dblclick-handler.ts","../src/data-list/record-partial.ts","../src/record-view/record-view-handler.ts","../src/data-card/event-handlers/record-card-click-handler.ts","../src/data-card/event-handlers/record-card-dblclick-handler.ts","../src/data-card/record-card.ts","../src/data-report/data-report-field.ts","../../../packages/time-calculator/dist/src/registry.d.ts","../../../packages/time-calculator/dist/src/index.d.ts","../src/editors/ox-grist-editor.ts","../src/editors/ox-grist-editor-checkbox.ts","../src/editors/ox-grist-editor-color.ts","../src/editors/ox-grist-editor-date.ts","../src/editors/ox-grist-editor-datetime.ts","../src/editors/ox-grist-editor-email.ts","../src/editors/ox-grist-editor-file.ts","../../input/dist/src/ox-input-image.d.ts","../src/editors/ox-grist-editor-image.ts","../src/editors/ox-grist-editor-month.ts","../../input/dist/src/ox-checkbox.d.ts","../../input/dist/src/ox-select.d.ts","../src/editors/ox-grist-editor-multiple-select.ts","../src/editors/ox-grist-editor-number.ts","../src/editors/ox-grist-editor-password.ts","../../../node_modules/lit-html/development/async-directive.d.ts","../../../node_modules/lit-html/development/directives/until.d.ts","../../../node_modules/lit/development/directives/until.d.ts","../src/editors/ox-grist-editor-select.ts","../src/editors/ox-grist-editor-tel.ts","../src/editors/ox-grist-editor-text.ts","../../input/dist/src/ox-input-textarea.d.ts","../src/editors/ox-grist-editor-textarea.ts","../src/editors/ox-grist-editor-time.ts","../../input/dist/src/ox-buttons-radio.d.ts","../../input/dist/src/ox-input-switch.d.ts","../../input/dist/src/ox-input-angle.d.ts","../../input/dist/src/ox-input-3dish.d.ts","../../input/dist/src/ox-input-3axis.d.ts","../../input/dist/src/ox-input-stack.d.ts","../../input/dist/src/ox-input-barcode.d.ts","../../../node_modules/@codemirror/state/dist/index.d.ts","../../../node_modules/style-mod/src/style-mod.d.ts","../../../node_modules/@codemirror/view/dist/index.d.ts","../../input/dist/src/ox-input-code.d.ts","../../input/dist/src/ox-input-color.d.ts","../../input/dist/src/ox-input-multiple-colors.d.ts","../../input/dist/src/ox-input-video.d.ts","../../input/dist/src/ox-input-audio.d.ts","../../input/dist/src/ox-input-value-ranges.d.ts","../../input/dist/src/ox-input-value-map.d.ts","../../input/dist/src/ox-input-scene-component-id.d.ts","../../../node_modules/@material/web/fab/internal/shared.d.ts","../../../node_modules/@material/web/fab/internal/fab.d.ts","../../../node_modules/@material/web/fab/fab.d.ts","../../input/dist/src/ox-input-crontab.d.ts","../../input/dist/src/ox-input-partition-keys.d.ts","../../input/dist/src/ox-input-duration.d.ts","../../input/dist/src/ox-input-quantifier.d.ts","../../../node_modules/lit-html/development/directives/class-map.d.ts","../../../node_modules/lit/development/directives/class-map.d.ts","../../../node_modules/@material/web/chips/internal/chip.d.ts","../../../node_modules/@material/web/chips/internal/multi-action-chip.d.ts","../../../node_modules/@material/web/chips/internal/filter-chip.d.ts","../../../node_modules/@material/web/chips/filter-chip.d.ts","../../../node_modules/@material/web/chips/internal/chip-set.d.ts","../../../node_modules/@material/web/chips/chip-set.d.ts","../../input/dist/src/ox-input-select-buttons.d.ts","../../input/dist/src/ox-input-direction.d.ts","../../input/dist/src/ox-input-table-column-config.d.ts","../../input/dist/src/ox-input-search.d.ts","../../input/dist/src/ox-input-secret.d.ts","../../input/dist/src/ox-input-signature.d.ts","../../input/dist/src/index.d.ts","../src/editors/ox-input-tree.ts","../src/editors/ox-grist-editor-tree.ts","../src/editors/ox-grist-editor-week.ts","../src/editors/ox-grist-editor-varname.ts","../src/editors/ox-popup-code-input.ts","../../../node_modules/json5/lib/parse.d.ts","../../../node_modules/json5/lib/stringify.d.ts","../../../node_modules/json5/lib/index.d.ts","../../shell/dist/src/types/domain.d.ts","../../shell/dist/src/types/user.d.ts","../../shell/dist/src/types/role.d.ts","../../shell/dist/src/types/privilege.d.ts","../../shell/dist/src/types/types.d.ts","../../shell/dist/src/types/index.d.ts","../../../node_modules/redux/index.d.ts","../../../node_modules/pwa-helpers/lazy-reducer-enhancer.d.ts","../../shell/dist/src/store.d.ts","../../shell/dist/src/actions/app.d.ts","../../shell/dist/src/actions/route.d.ts","../../shell/dist/src/actions/busy.d.ts","../../shell/dist/src/actions/const.d.ts","../../shell/dist/src/actions/index.d.ts","../../shell/dist/src/app/pages/page-view.d.ts","../../shell/dist/src/object-store.d.ts","../../shell/dist/src/custom-alert.d.ts","../../shell/dist/src/index.d.ts","../../layout/dist/src/initializer.d.ts","../../layout/dist/src/layouts/ox-snack-bar.d.ts","../../layout/dist/src/components/ox-resize-splitter.d.ts","../../layout/dist/src/layouts/ox-header-bar.d.ts","../../layout/dist/src/layouts/ox-nav-bar.d.ts","../../layout/dist/src/layouts/ox-aside-bar.d.ts","../../layout/dist/src/layouts/ox-footer-bar.d.ts","../../layout/dist/src/layouts/ox-page-header-bar.d.ts","../../layout/dist/src/layouts/ox-page-footer-bar.d.ts","../../layout/dist/src/actions/layout.d.ts","../../layout/dist/src/actions/snackbar.d.ts","../../layout/dist/src/components/ox-split-pane.d.ts","../../layout/dist/src/index.d.ts","../src/editors/ox-grist-editor-json5.ts","../../../packages/moment-timezone-es/dist/moment-timezone-es.js","../src/editors/ox-grist-editor-timezone.ts","../src/editors/ox-grist-editor-secret.ts","../src/editors/registry.ts","../src/editors/index.ts","../src/filters/filter-checkbox.ts","../src/filters/filter-input-barcode.ts","../src/filters/filter-input.ts","../src/filters/filter-range-date.ts","../src/filters/filter-range-number.ts","../src/filters/filter-select-buttons.ts","../../../node_modules/@material/web/typography/md-typescale-styles.d.ts","../../p13n/dist/src/types.d.ts","../../p13n/dist/src/p13n-mixin.d.ts","../../p13n/dist/src/ox-user-preferences-context.d.ts","../../p13n/dist/src/ox-user-preferences-provider.d.ts","../../p13n/dist/src/ox-user-preferences-consumer.d.ts","../../p13n/dist/src/index.d.ts","../src/empty-note.ts","../../../node_modules/@types/lodash-es/throttle.d.ts","../src/filters/filter-styles.ts","../src/data-grid/data-grid-header.ts","../src/data-grid/data-grid-footer.ts","../src/data-manipulator.ts","../src/data-grid/data-grid.ts","../src/data-list/data-list.ts","../src/data-card/data-card.ts","../../../node_modules/@types/lodash-es/isequal.d.ts","../../headroom/dist/src/headroom.d.ts","../../headroom/dist/src/index.d.ts","../../pull-to-refresh/dist/src/pull-to-refresh-control.d.ts","../../pull-to-refresh/dist/src/pull-to-refresh.d.ts","../../pull-to-refresh/dist/src/index.d.ts","../src/data-report/data-report-header.ts","../src/data-report/data-report-body-style.ts","../src/data-report/event-handlers/data-report-body-click-handler.ts","../src/data-report/event-handlers/data-report-body-dblclick-handler.ts","../src/data-report/event-handlers/data-report-body-keydown-handler.ts","../src/data-report/data-report-body.ts","../src/data-report/data-report-component.ts","../src/data-provider.ts","../src/data-report.ts","../src/renderers/ox-grist-renderer-boolean.ts","../src/renderers/ox-grist-renderer-color.ts","../src/renderers/ox-grist-renderer-date.ts","../src/renderers/ox-grist-renderer-file.ts","../src/renderers/ox-grist-renderer-image.ts","../src/renderers/ox-grist-renderer-json5.ts","../src/renderers/ox-grist-renderer-link.ts","../src/renderers/ox-grist-renderer-password.ts","../src/renderers/ox-grist-renderer.ts","../src/renderers/ox-grist-renderer-progress.ts","../src/renderers/ox-grist-renderer-secret.ts","../src/renderers/ox-grist-renderer-select.ts","../src/renderers/ox-grist-renderer-text.ts","../src/renderers/ox-grist-renderer-textarea.ts","../src/renderers/ox-grist-renderer-tree.ts","../src/renderers/registry.ts","../src/renderers/index.ts","../src/handlers/contextmenu-tree-mutation.ts","../src/handlers/move-down.ts","../src/handlers/move-up.ts","../src/handlers/record-copy.ts","../src/handlers/record-delete.ts","../src/handlers/record-view-handler.ts","../src/handlers/select-row.ts","../src/handlers/select-row-toggle.ts","../src/handlers/registry.ts","../src/handlers/index.ts","../src/formatters/date-formatter.ts","../src/formatters/number-formatter.ts","../src/formatters/text-formatter.ts","../src/formatters/registry.ts","../src/formatters/index.ts","../src/gutters/gutter-button.ts","../src/gutters/gutter-dirty.ts","../src/gutters/gutter-row-selector.ts","../src/gutters/gutter-sequence.ts","../src/gutters/registry.ts","../src/gutters/index.ts","../src/sorters/sorters-control.ts","../src/record-view/ox-record-creator.ts","../src/record-view/index.ts","../src/personalizer/ox-grist-personalizer.ts","../src/personalizer/index.ts","../../../node_modules/@types/lodash-es/pickby.d.ts","../src/utils/list-param.ts","../src/index.ts","../src/configure/column-builder.ts","../src/configure/imex-option-builder.ts","../src/configure/list-option-builder.ts","../src/configure/tree-option-builder.ts","../src/configure/rows-option-builder.ts","../src/configure/filters-option-builder.ts","../src/configure/config-builder.ts","../src/utils/supports-passive.ts","../src/utils/index.ts","../src/data-grist.ts","../src/filters/filters-form.ts","../src/filters/filter-select.ts","../src/filters/registry.ts","../src/filters/index.ts","../src/types.ts","../src/data-consumer.ts","../src/data-list/event-handlers/record-partial-long-press-handler.ts","../src/personalizer/ox-grist-filter-personalizer.ts","../src/record-view/event-handlers/record-view-body-keydown-handler.ts","../stories/accumulator-format.stories.ts","../stories/append-position.stories.ts","../stories/barcode-input-filter.stories.ts","../stories/bounded-select-filters.stories.ts","../stories/bounded-select-record.stories.ts","../stories/click-event-custom.stories.ts","../stories/click-event.stories.ts","../stories/creatable-only-column.stories.ts","../stories/default-filters.stories.ts","../stories/dynamic-editable.stories.ts","../stories/empty-sorters.stories.ts","../stories/explicit-fetch.stories.ts","../stories/fixed-column.stories.ts","../stories/grid-setting.stories.ts","../stories/grist-modes.stories.ts","../stories/group-header.stories.ts","../stories/record-view.stories.ts","../stories/secret.stories.ts","../stories/textarea.stories.ts","../stories/tree-column-with-checkbox.stories.ts","../stories/tree-column.stories.ts","../../../node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/@types/node/web-globals/blob.d.ts","../../../node_modules/@types/node/web-globals/console.d.ts","../../../node_modules/@types/node/web-globals/crypto.d.ts","../../../node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/@types/node/web-globals/encoding.d.ts","../../../node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/undici-types/utility.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client-stats.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/round-robin-pool.d.ts","../../../node_modules/undici-types/h2c-client.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-call-history.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/snapshot-agent.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/undici-types/retry-handler.d.ts","../../../node_modules/undici-types/retry-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/cache-interceptor.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/util.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/eventsource.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/index.d.ts","../../../node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/@types/node/web-globals/importmeta.d.ts","../../../node_modules/@types/node/web-globals/messaging.d.ts","../../../node_modules/@types/node/web-globals/navigator.d.ts","../../../node_modules/@types/node/web-globals/performance.d.ts","../../../node_modules/@types/node/web-globals/storage.d.ts","../../../node_modules/@types/node/web-globals/streams.d.ts","../../../node_modules/@types/node/web-globals/timers.d.ts","../../../node_modules/@types/node/web-globals/url.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/inspector.generated.d.ts","../../../node_modules/@types/node/inspector/promises.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/path/posix.d.ts","../../../node_modules/@types/node/path/win32.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/quic.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/sea.d.ts","../../../node_modules/@types/node/sqlite.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/test/reporters.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/util/types.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/mocha/index.d.ts"],"fileIdsList":[[432,495,503,507,510,512,513,514,527],[229,230,432,495,503,507,510,512,513,514,527],[61,432,495,503,507,510,512,513,514,527],[57,61,432,495,503,507,510,512,513,514,527],[57,61,69,432,495,503,507,510,512,513,514,527],[63,432,495,503,507,510,512,513,514,527],[55,56,432,495,503,507,510,512,513,514,527],[60,146,432,495,503,507,510,512,513,514,527],[54,60,139,141,142,143,144,432,495,503,507,510,512,513,514,527],[54,136,145,432,495,503,507,510,512,513,514,527],[54,145,432,495,503,507,510,512,513,514,527],[60,148,432,495,503,507,510,512,513,514,527],[60,253,432,495,503,507,510,512,513,514,527],[60,251,432,495,503,507,510,512,513,514,527],[54,60,249,432,495,503,507,510,512,513,514,527],[60,139,141,142,248,432,495,503,507,510,512,513,514,527],[54,60,136,250,432,495,503,507,510,512,513,514,527],[54,249,432,495,503,507,510,512,513,514,527],[60,135,432,495,503,507,510,512,513,514,527],[54,60,432,495,503,507,510,512,513,514,527],[60,240,241,432,495,503,507,510,512,513,514,527],[240,432,495,503,507,510,512,513,514,527],[54,60,136,139,141,142,432,495,503,507,510,512,513,514,527],[60,137,432,495,503,507,510,512,513,514,527],[60,138,432,495,503,507,510,512,513,514,527],[60,75,432,495,503,507,510,512,513,514,527],[60,432,495,503,507,510,512,513,514,527],[60,143,432,495,503,507,510,512,513,514,527],[60,142,432,495,503,507,510,512,513,514,527],[54,60,137,432,495,503,507,510,512,513,514,527],[60,140,432,495,503,507,510,512,513,514,527],[175,432,495,503,507,510,512,513,514,527],[163,165,166,167,168,169,170,171,172,173,174,175,432,495,503,507,510,512,513,514,527],[163,164,166,167,168,169,170,171,172,173,174,175,432,495,503,507,510,512,513,514,527],[164,165,166,167,168,169,170,171,172,173,174,175,432,495,503,507,510,512,513,514,527],[163,164,165,167,168,169,170,171,172,173,174,175,432,495,503,507,510,512,513,514,527],[163,164,165,166,168,169,170,171,172,173,174,175,432,495,503,507,510,512,513,514,527],[163,164,165,166,167,169,170,171,172,173,174,175,432,495,503,507,510,512,513,514,527],[163,164,165,166,167,168,170,171,172,173,174,175,432,495,503,507,510,512,513,514,527],[163,164,165,166,167,168,169,171,172,173,174,175,432,495,503,507,510,512,513,514,527],[163,164,165,166,167,168,169,170,172,173,174,175,432,495,503,507,510,512,513,514,527],[163,164,165,166,167,168,169,170,171,173,174,175,432,495,503,507,510,512,513,514,527],[163,164,165,166,167,168,169,170,171,172,174,175,432,495,503,507,510,512,513,514,527],[163,164,165,166,167,168,169,170,171,172,173,175,432,495,503,507,510,512,513,514,527],[163,164,165,166,167,168,169,170,171,172,173,174,432,495,503,507,510,512,513,514,527],[432,492,493,495,503,507,510,512,513,514,527],[432,494,495,503,507,510,512,513,514,527],[495,503,507,510,512,513,514,527],[432,495,503,507,510,512,513,514,527,535],[432,495,496,501,503,506,507,510,512,513,514,516,527,532,544],[432,495,496,497,503,506,507,510,512,513,514,527],[432,495,498,503,507,510,512,513,514,527,545],[432,495,499,500,503,507,510,512,513,514,518,527],[432,495,500,503,507,510,512,513,514,527,532,541],[432,495,501,503,506,507,510,512,513,514,516,527],[432,494,495,502,503,507,510,512,513,514,527],[432,495,503,504,507,510,512,513,514,527],[432,495,503,505,506,507,510,512,513,514,527],[432,494,495,503,506,507,510,512,513,514,527],[432,495,503,506,507,508,510,512,513,514,527,532,544],[432,495,503,506,507,508,510,512,513,514,527,532,535],[432,482,495,503,506,507,509,510,512,513,514,516,527,532,544],[432,495,503,506,507,509,510,512,513,514,516,527,532,541,544],[432,495,503,507,509,510,511,512,513,514,527,532,541,544],[430,431,432,433,434,435,436,437,438,439,440,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,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],[432,495,503,506,507,510,512,513,514,527],[432,495,503,507,510,512,514,527],[432,495,503,507,510,512,513,514,515,527,544],[432,495,503,506,507,510,512,513,514,516,527,532],[432,495,503,507,510,512,513,514,518,527],[432,495,503,507,510,512,513,514,519,527],[432,495,503,506,507,510,512,513,514,522,527],[432,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,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],[432,495,503,507,510,512,513,514,524,527],[432,495,503,507,510,512,513,514,525,527],[432,495,500,503,507,510,512,513,514,516,527,535],[432,495,503,506,507,510,512,513,514,527,528],[432,495,503,507,510,512,513,514,527,529,545,548],[432,495,503,506,507,510,512,513,514,527,532,534,535],[432,495,503,507,510,512,513,514,527,533,535],[432,495,503,507,510,512,513,514,527,535,545],[432,495,503,507,510,512,513,514,527,536],[432,492,495,503,507,510,512,513,514,527,532,538,544],[432,495,503,507,510,512,513,514,527,532,537],[432,495,503,506,507,510,512,513,514,527,539,540],[432,495,503,507,510,512,513,514,527,539,540],[432,495,500,503,507,510,512,513,514,516,527,532,541],[432,495,503,507,510,512,513,514,527,542],[432,495,503,507,510,512,513,514,516,527,543],[432,495,503,507,509,510,512,513,514,525,527,544],[432,495,503,507,510,512,513,514,527,545,546],[432,495,500,503,507,510,512,513,514,527,546],[432,495,503,507,510,512,513,514,527,532,547],[432,495,503,507,510,512,513,514,515,527,548],[432,495,503,507,510,512,513,514,527,549],[432,495,498,503,507,510,512,513,514,527],[432,495,500,503,507,510,512,513,514,527],[432,495,503,507,510,512,513,514,527,545],[432,482,495,503,507,510,512,513,514,527],[432,495,503,507,510,512,513,514,527,544],[432,495,503,507,510,512,513,514,527,550],[432,495,503,507,510,512,513,514,522,527],[432,495,503,507,510,512,513,514,527,540],[432,482,495,503,506,507,508,510,512,513,514,522,527,532,535,544,547,548,550],[432,495,503,507,510,512,513,514,527,532,551],[110,111,112,113,432,495,503,507,510,512,513,514,527],[110,111,112,432,495,503,507,510,512,513,514,527],[110,432,495,503,507,510,512,513,514,527],[110,111,432,495,503,507,510,512,513,514,527],[267,268,432,495,503,507,510,512,513,514,527],[54,57,432,495,503,507,510,512,513,514,527],[52,54,432,495,503,507,510,512,513,514,527],[54,432,495,503,507,510,512,513,514,527],[54,213,432,495,503,507,510,512,513,514,527],[52,53,432,495,503,507,510,512,513,514,527],[62,63,64,65,66,67,68,69,70,432,495,503,507,510,512,513,514,527],[247,432,495,503,507,510,512,513,514,527],[161,432,495,503,507,510,512,513,514,527],[214,432,495,503,507,510,512,513,514,527],[54,57,58,59,432,495,503,507,510,512,513,514,527],[276,432,495,503,507,510,512,513,514,527],[49,432,495,503,507,510,512,513,514,527],[432,447,450,453,454,495,503,507,510,512,513,514,527,544],[432,450,495,503,507,510,512,513,514,527,532,544],[432,450,454,495,503,507,510,512,513,514,527,544],[432,495,503,507,510,512,513,514,527,532],[432,444,495,503,507,510,512,513,514,527],[432,448,495,503,507,510,512,513,514,527],[432,446,447,450,495,503,507,510,512,513,514,527,544],[432,495,503,507,510,512,513,514,516,527,541],[432,495,503,507,510,512,513,514,527,552],[432,444,495,503,507,510,512,513,514,527,552],[432,446,450,495,503,507,510,512,513,514,516,527,544],[432,441,442,443,445,449,495,503,506,507,510,512,513,514,527,532,544],[432,450,459,467,495,503,507,510,512,513,514,527],[432,442,448,495,503,507,510,512,513,514,527],[432,450,476,477,495,503,507,510,512,513,514,527],[432,442,445,450,495,503,507,510,512,513,514,527,535,544,552],[432,450,495,503,507,510,512,513,514,527],[432,446,450,495,503,507,510,512,513,514,527,544],[432,441,495,503,507,510,512,513,514,527],[432,444,445,446,448,449,450,451,452,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,477,478,479,480,481,495,503,507,510,512,513,514,527],[432,450,469,472,495,503,507,510,512,513,514,527],[432,450,459,460,461,495,503,507,510,512,513,514,527],[432,448,450,460,462,495,503,507,510,512,513,514,527],[432,449,495,503,507,510,512,513,514,527],[432,442,444,450,495,503,507,510,512,513,514,527],[432,450,454,460,462,495,503,507,510,512,513,514,527],[432,454,495,503,507,510,512,513,514,527],[432,448,450,453,495,503,507,510,512,513,514,527,544],[432,442,446,450,459,495,503,507,510,512,513,514,527],[432,450,469,495,503,507,510,512,513,514,527],[432,462,495,503,507,510,512,513,514,527],[432,444,450,476,495,503,507,510,512,513,514,527,535,550,552],[50,432,495,503,507,510,512,513,514,527],[196,432,495,503,507,510,512,513,514,527],[50,404,432,495,503,507,510,512,513,514,527],[50,51,306,360,370,381,389,404,432,495,503,507,510,512,513,514,527],[50,390,391,392,393,394,395,404,432,495,503,507,510,512,513,514,527],[50,51,370,404,432,495,503,507,510,512,513,514,527],[50,60,71,72,404,432,495,503,507,510,512,513,514,527],[50,60,71,74,76,153,404,432,495,503,507,510,512,513,514,527],[50,60,71,76,194,320,325,404,432,495,503,507,510,512,513,514,527],[50,73,74,194,432,495,503,507,510,512,513,514,527],[50,60,71,72,73,74,76,130,154,191,192,193,404,432,495,503,507,510,512,513,514,527],[50,60,71,72,159,404,432,495,503,507,510,512,513,514,527],[50,60,432,495,503,507,510,512,513,514,527],[50,60,71,72,107,108,160,162,176,177,178,179,180,181,182,183,184,191,404,432,495,503,507,510,512,513,514,527],[50,60,71,72,107,404,432,495,503,507,510,512,513,514,527],[50,60,71,72,76,107,404,432,495,503,507,510,512,513,514,527],[50,60,71,72,76,107,131,153,162,321,322,402,404,432,495,503,507,510,512,513,514,527],[50,60,71,129,185,313,320,323,324,325,404,432,495,503,507,510,512,513,514,527],[50,108,185,432,495,503,507,510,512,513,514,527],[50,185,432,495,503,507,510,512,513,514,527],[50,60,71,72,107,129,177,319,326,327,328,329,331,334,342,396,398,404,405,432,495,503,507,510,512,513,514,527],[50,60,71,76,190,325,404,432,495,503,507,510,512,513,514,527],[50,186,187,190,432,495,503,507,510,512,513,514,527],[50,60,71,72,76,130,186,187,188,189,191,404,432,495,503,507,510,512,513,514,527],[50,72,404,405,432,495,503,507,510,512,513,514,527],[50,60,71,72,114,129,334,341,342,390,396,404,405,432,495,503,507,510,512,513,514,527],[50,60,71,72,195,336,337,338,339,404,432,495,503,507,510,512,513,514,527],[50,60,71,72,129,335,340,404,432,495,503,507,510,512,513,514,527],[50,60,71,72,321,404,432,495,503,507,510,512,513,514,527],[50,195,340,432,495,503,507,510,512,513,514,527],[50,340,432,495,503,507,510,512,513,514,527],[50,198,206,305,432,495,503,507,510,512,513,514,527],[50,60,71,198,432,495,503,507,510,512,513,514,527],[50,60,71,198,205,432,495,503,507,510,512,513,514,527],[50,60,71,159,198,266,269,300,432,495,503,507,510,512,513,514,527],[50,60,71,132,198,208,209,432,495,503,507,510,512,513,514,527],[50,60,71,107,198,432,495,503,507,510,512,513,514,527],[50,60,71,198,259,432,495,503,507,510,512,513,514,527],[50,60,71,198,215,404,432,495,503,507,510,512,513,514,527],[50,60,71,198,219,432,495,503,507,510,512,513,514,527],[50,60,71,198,302,432,495,503,507,510,512,513,514,527],[50,60,71,198,262,432,495,503,507,510,512,513,514,527],[50,60,71,72,108,197,404,432,495,503,507,510,512,513,514,527],[50,60,71,162,261,404,432,495,503,507,510,512,513,514,527],[50,60,71,76,129,153,159,232,432,495,503,507,510,512,513,514,527],[50,108,198,199,200,201,202,203,204,206,207,210,211,212,216,217,218,220,221,263,264,265,301,303,304,404,432,495,503,507,510,512,513,514,527],[50,60,71,76,432,495,503,507,510,512,513,514,527],[50,54,208,404,432,495,503,507,510,512,513,514,527],[50,54,228,404,432,495,503,507,510,512,513,514,527],[50,54,404,432,495,503,507,510,512,513,514,527],[50,54,255,404,432,495,503,507,510,512,513,514,527],[50,60,208,215,323,400,404,432,495,503,507,510,512,513,514,527],[50,60,71,132,197,208,209,258,313,319,322,399,402,404,432,495,503,507,510,512,513,514,527],[50,307,309,310,311,312,400,401,402,432,495,503,507,510,512,513,514,527],[50,307,308,309,310,311,312,401,404,432,495,503,507,510,512,513,514,527],[50,374,432,495,503,507,510,512,513,514,527],[50,51,371,372,373,432,495,503,507,510,512,513,514,527],[50,60,76,162,404,432,495,503,507,510,512,513,514,527],[50,60,71,76,404,432,495,503,507,510,512,513,514,527],[50,60,326,327,328,404,432,495,503,507,510,512,513,514,527],[50,326,327,328,404,432,495,503,507,510,512,513,514,527],[50,380,432,495,503,507,510,512,513,514,527],[50,376,377,378,379,404,432,495,503,507,510,512,513,514,527],[50,60,108,153,404,432,495,503,507,510,512,513,514,527],[50,369,432,495,503,507,510,512,513,514,527],[50,108,404,432,495,503,507,510,512,513,514,527],[50,361,362,363,364,365,366,367,368,404,432,495,503,507,510,512,513,514,527],[50,72,306,343,360,370,375,381,382,384,386,388,399,403,404,432,495,503,507,510,512,513,514,527],[50,385,432,495,503,507,510,512,513,514,527],[50,60,71,149,153,159,400,404,432,495,503,507,510,512,513,514,527],[50,60,71,149,153,159,261,399,404,432,495,503,507,510,512,513,514,527],[50,108,115,432,495,503,507,510,512,513,514,527],[50,115,432,495,503,507,510,512,513,514,527],[50,130,383,432,495,503,507,510,512,513,514,527],[50,60,71,76,130,153,399,404,432,495,503,507,510,512,513,514,527],[50,60,71,72,76,108,109,114,404,432,495,503,507,510,512,513,514,527],[50,108,130,185,190,194,404,432,495,503,507,510,512,513,514,527],[50,60,71,72,76,78,108,115,129,404,432,495,503,507,510,512,513,514,527],[50,344,345,346,347,348,349,350,351,352,353,354,355,356,359,432,495,503,507,510,512,513,514,527],[50,60,404,432,495,503,507,510,512,513,514,527],[50,60,269,404,432,495,503,507,510,512,513,514,527],[50,60,71,352,432,495,503,507,510,512,513,514,527],[50,60,159,404,432,495,503,507,510,512,513,514,527],[50,60,215,404,432,495,503,507,510,512,513,514,527],[50,60,107,404,432,495,503,507,510,512,513,514,527],[50,60,71,162,352,432,495,503,507,510,512,513,514,527],[50,60,71,72,108,404,432,495,503,507,510,512,513,514,527],[50,73,74,108,186,187,190,194,195,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,404,432,495,503,507,510,512,513,514,527],[50,60,71,399,404,432,495,503,507,510,512,513,514,527],[50,54,73,74,108,186,187,190,194,195,306,352,403,432,495,503,507,510,512,513,514,527],[50,388,397,432,495,503,507,510,512,513,514,527],[50,269,387,404,432,495,503,507,510,512,513,514,527],[50,60,76,129,132,313,382,383,389,400,404,432,495,503,507,510,512,513,514,527],[50,60,129,313,399,404,432,495,503,507,510,512,513,514,527],[50,60,76,129,132,313,382,389,400,404,432,495,503,507,510,512,513,514,527],[50,60,76,107,108,129,132,313,382,389,400,404,432,495,503,507,510,512,513,514,527],[50,60,76,129,132,153,313,382,383,389,400,404,432,495,503,507,510,512,513,514,527],[50,60,76,107,129,132,153,313,382,383,385,389,400,404,407,432,495,503,507,510,512,513,514,527],[50,60,76,115,129,313,389,390,404,432,495,503,507,510,512,513,514,527],[330,432,495,503,507,510,512,513,514,527],[114,432,495,503,507,510,512,513,514,527],[155,156,157,158,432,495,503,507,510,512,513,514,527],[60,114,432,495,503,507,510,512,513,514,527],[77,78,205,208,209,219,222,223,224,225,226,227,228,232,233,234,235,236,237,238,239,243,244,245,246,255,256,257,258,259,260,432,495,503,507,510,512,513,514,527],[54,60,77,432,495,503,507,510,512,513,514,527],[54,60,77,224,432,495,503,507,510,512,513,514,527],[54,60,76,77,432,495,503,507,510,512,513,514,527],[54,60,77,131,432,495,503,507,510,512,513,514,527],[60,77,231,432,495,503,507,510,512,513,514,527],[54,60,76,77,242,432,495,503,507,510,512,513,514,527],[54,60,76,77,233,432,495,503,507,510,512,513,514,527],[54,60,77,252,254,432,495,503,507,510,512,513,514,527],[54,60,77,233,432,495,503,507,510,512,513,514,527],[54,60,76,77,132,208,432,495,503,507,510,512,513,514,527],[60,153,432,495,503,507,510,512,513,514,527],[153,288,289,291,292,293,294,295,296,297,298,299,432,495,503,507,510,512,513,514,527],[287,432,495,503,507,510,512,513,514,527],[151,290,432,495,503,507,510,512,513,514,527],[76,147,432,495,503,507,510,512,513,514,527],[314,315,316,317,318,432,495,503,507,510,512,513,514,527],[314,432,495,503,507,510,512,513,514,527],[131,132,133,134,150,152,432,495,503,507,510,512,513,514,527],[60,151,432,495,503,507,510,512,513,514,527],[54,60,76,432,495,503,507,510,512,513,514,527],[54,60,76,131,432,495,503,507,510,512,513,514,527],[54,60,131,432,495,503,507,510,512,513,514,527],[54,60,133,432,495,503,507,510,512,513,514,527],[54,60,76,147,149,432,495,503,507,510,512,513,514,527],[333,432,495,503,507,510,512,513,514,527],[332,432,495,503,507,510,512,513,514,527],[279,280,281,282,432,495,503,507,510,512,513,514,527],[275,278,283,284,285,286,432,495,503,507,510,512,513,514,527],[276,277,432,495,503,507,510,512,513,514,527],[270,271,272,273,274,432,495,503,507,510,512,513,514,527],[271,272,432,495,503,507,510,512,513,514,527],[270,271,273,432,495,503,507,510,512,513,514,527],[116,117,118,119,120,121,122,123,124,125,126,127,128,432,495,503,507,510,512,513,514,527],[79,80,81,82,83,84,85,86,87,88,89,90,93,94,95,96,97,98,99,100,101,102,103,104,106,432,495,503,507,510,512,513,514,527],[105,432,495,503,507,510,512,513,514,527],[91,92,432,495,503,507,510,512,513,514,527],[92,432,495,503,507,510,512,513,514,527],[91,432,495,503,507,510,512,513,514,527]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"a6a5253138c5432c68a1510c70fe78a644fe2e632111ba778e1978010d6edfec","impliedFormat":1},{"version":"b8f34dd1757f68e03262b1ca3ddfa668a855b872f8bdd5224d6f993a7b37dc2c","impliedFormat":99},{"version":"2ddb9572f13b565c3fe90c9c797950c8c7b49e84989e850ce8619564b711d6f6","signature":"26e4e730c693d40c7b96173958fda238b0bdc5060efef9d8dde36e61a0c53418"},{"version":"00cb63103f9670f8094c238a4a7e252c8b4c06ba371fea5c44add7e41b7247e4","impliedFormat":99},{"version":"15fe687c59d62741b4494d5e623d497d55eb38966ecf5bea7f36e48fc3fbe15e","impliedFormat":1},{"version":"e09db3291e6b440f7debed2227d8357e80c95987a0d0d67ac17521d8f7b11bdb","impliedFormat":99},{"version":"74012d464fbc5354ca3a7d5e71bee43b17da01a853c8ff10971bbe3680c76f40","impliedFormat":99},{"version":"5e30131b6a5587fe666926ad1d9807e733c0a597ed12d682669fcaa331aea576","impliedFormat":99},{"version":"a0f82d2f9450bd147a8c137798d9501bd49b7c9e118f75b07b76709ff39b6b55","affectsGlobalScope":true,"impliedFormat":99},{"version":"9a318e3a8900672b85cd3c8c3a5acf51b88049557a3ae897ccdcf2b85a8f61f9","impliedFormat":99},{"version":"1bcd560deed90a43c51b08aa18f7f55229f2e30974ab5ed1b7bb5721be379013","impliedFormat":99},{"version":"dc08fe04e50bc24d1baded4f33e942222bbdd5d77d6341a93cfe6e4e4586a3be","impliedFormat":99},{"version":"cdeae34aca6700620ebf3f27cf7d439c3af97595dd6e2729fa4780483add5680","impliedFormat":99},{"version":"3ff87ea3471b51beaf4aa8fd8f4422862b11d343fdbb55bf383e0f8cc195a445","impliedFormat":99},{"version":"99bdf729529cdbf12e2bf76ea751b662011133dcf9e35abcb3def47bb02f7b0a","impliedFormat":99},{"version":"732fb71ecb695d6f36ddcbb72ebfe4ff6b6491d45101a00fa2b75a26b80d640f","impliedFormat":99},{"version":"039cb05125d7621f8143616c495b8e6b54249c4e64d2754b80ff93867f7f4b01","impliedFormat":99},{"version":"1b81f1fa82ad30af01ab1cae91ccaddc10c48f5916bbd6d282155e44a65d858d","impliedFormat":99},{"version":"a0fc7a02a75802678a67000607f20266cf1a49dc0e787967efe514e31b9ed0c3","impliedFormat":99},{"version":"5ebf098a1d81d400b8af82807cf19893700335cf91a7b9dbd83a5d737af34b11","impliedFormat":99},{"version":"101cf83ac3f9c5e1a7355a02e4fbe988877ef83c4ebec0ff0f02b2af022254a3","impliedFormat":99},{"version":"d017e2fcd44b46ca80cd2b592a6314e75f5caab5bda230f0f4a45e964049a43a","impliedFormat":99},{"version":"a8992b852521a66f63e0cedc6e1f054b28f972232b6fa5ca59771db6a1c8bbea","impliedFormat":99},{"version":"52e9e23e66f4bea029399f8cc8856802dc62acff80d265fe37bb521db56a69b7","signature":"11e3901adc967efa6d847dda8cd9227026ef306b91d569d366d6f08e2decde26"},{"version":"9b78ff004fbc89d7a62e1bd74e96110abd566106ef15b8b7e7a70d95508a6d15","signature":"c5983f3043b088d467b970a80be1160308a73db09a014219342d0d71651de001"},{"version":"0590da5b7f7d8e5d22b408b4e45ec75efa998c81d8d1167c75fdc8689e509a46","signature":"4958be23f4af4775159ac70ebaad509dc5a32e92ebe5a8ef71b8c830313f68ca"},{"version":"5565deadc1d553f9f1ef370351432c258d2a6f1a5ca47e574e5430db824468c7","impliedFormat":99},{"version":"4ae1ed87c59518f4e0918a21409ec3020e97037a386b57953c6b9fed9cad6949","affectsGlobalScope":true,"impliedFormat":99},"cb85235628f67d0904e45733fd9071f6ec8332e9a6ae66d32730ba6c445a51ef","ebe6f76595fbda9ca25d8018bd932cab144c2b1ec62ab8ec064da0ad729eac96","05cfea0488751015b0b85911b6cdcde7c6cebdd9b8cada1ec0b5c1736357a552","f5800813e5c0d6c27d73b76f2c99f39bdfd6229d03553a8a9ae485f6aeb94425","4d5e201faa4bceca840b652dfc10795170c061f498e19429a06e056490aa69aa","b085d2f3c839ad9634c9b1ea8bb2d4e3a321af1392d8ac44a79b99c0d8d194aa","ee11b7061adce4a1c0370620949a57851215b152a5632d2faf1aedbc90ad0520","f8c86fcbfb0a1e69a0ed28d3249cc33c312fa23a39c17e15cbbcc539bdcdc303","85e0f00b17c3ae8cd88438c754a2c43f4a9361e685b97a70e52e33afbf62488f","39d2d450df6efbf38585fd316f18922c8ac3fdfd4c3fc412d0bee34e2bc86378","4dcdfe4c18557fc02d8cb22cb422cb98bfeba8158aaf18cc66f9d99293ebe2c8","7efea6f2270a14f1b0d5f472f2a6fcb0a97beb677299e10b073cc2abdabeef51","642bd83dc8b11abc31785975f869fea5ab2dd84246acd13c6ad7e769fea95150","712dbb6cc6020b1dae2a2031b8a117717318652f73fd5042d508f7de416c47b7","637a5a32ea266fdaa0efa1c4d25ce2eed3b420dcd7836a6952374ddd95aaccaf","145e598b9f835b46757263cf952af5b8735d0bfb08a6dff2187f7b5611e17578","f499d7fb533781939c7a5ab778ac6e6c8ffe65601b1a61a843c36ee0013f05b6","7fcb76be88d4a64f6318b5a24b57021d7463f24485a3d1a931bf664c7e437534","d75490903da576f8fd0ee1c990858cb31e605d3db925593c12728bd0949eedfe","098ec42cd54c2b3354584c4fe8ad143040114891dde762741522b62788772f0d","1e73d612f806d183d6c16c4135c16c1a14dd827c1a67097e72ab1841852bfcb9","30046b0787c577061d43e498b507da8a249fbc58bbe33a09a7bef777e1d5fb67","cb2de9f1d7d286191834eeb331d23dc69eeb322745114ddad1695e4c575b5feb","dc2461db89dde29306a73a2926e2cf874e981ef034412f4d1e3d06d45bb3127e","13a5d8ec52111b64ed8fdcb47ab664b60085733c46c44aede33fd2926840ac31","1cf02270a889fcc3fa5863734fcdbea410d3b4dd71e4678a894a48028f836f6e","4f69dd36aa514494e2665a9dd1ecbb94f705c37f13554aa6f0c4b55d47dcfec1","3cb5734586224b2daa65a52cbe2428195e1542681ac85e4d7e9ca691e841db5e","c88faa2f2d9778aa0b4dedc2bfde0990b0beea6c45b0fc7d4a79e1294ebe8cb0","51f3be4aa09529ea1ad83a3d66830075a49e3e630df25d9892ef5708bb00de55","e0289b150095e1e86a7a201aa8ca9df044922019fcb4d125fb69535ae375d6a7",{"version":"cd82f088b9a22f12ef41306919af6231241ff9a09e779c6f1f16cde4b2b1c8b0","signature":"b9545dbda87ee111d4cc60b546d51b54a0d2ea077e9f6ce708fca09d51bd057b"},{"version":"6650db0255dd5a273da605a1b2eedc8d8636b38089d2929747b4b05192bedc75","signature":"2a89e53f61a55d8d39394d6862f79857744701d85f80b875886250c06c43b9bf"},{"version":"e30accdbef6f904f20354b6f598d7f2f7ff29094fc5410c33f63b29b4832172a","impliedFormat":1},{"version":"3786a961459023ec78bb575e5ea74f504d3ffc61ae82a305c959a4d94d7d70eb","impliedFormat":1},{"version":"de83915a380bdd6d7ddf075e3f60fe347db64ad4d06822835724ac601cb61daf","impliedFormat":1},{"version":"4d39c150715cb238da715e5c3fbeac2e2b2d0ef3f23c632996dd59ae35ba1f45","impliedFormat":1},{"version":"e9f80c5934982b97886eadab6684c073344a588d1758b12fba2d0184e6f450a2","impliedFormat":99},{"version":"27437df64b07bb19ad6b45ecd1f006e674aa2cac8f74931d7316dca4d7f22f59","signature":"ce9587610e65de259eb2421457b8793e2291a84b6d0e3c50170691d8f2657c09"},"cf93fb9208a01c80f0fad245c4360356e5de6c2384b7641acf0b9cc2f5c42448","336398b0efaf964124e636a9b29c4edd5870aee79ac64bf87be58a9d66b7c048","571bc65ec37ba124e762bb822e14a2b8502dc684e356be8feaccbd6b9cadd023","7cd455fc4c4818f19263d73b29c59f3fb5fd54b45a6ab83ca3eb3661281db56b","1c6b9b5501774a2ece6574be8e26092800e3f1f836f8c179b4f9fdd271a620f8","bcd2426fd141157e04e3a8eff914b575403587f398cf0878f07c2f283e0d1afd","bac8ff394e831e4dd3f0961d6abb414b0e2b4ba16fdeb502d087ebf0340ed5f6","4c559568877f16745410a69bbbf0e2b131a228c819d581048f4d1ba7115b1b36","c89d663edb7c20cfab677286571dc8f4f09878119d7ecd010895133995f12532","9d04b912e18e966fca08158f28e5c41bfb2fa864187d926e04d737aa83a96e17","2ad4fcfa075cde73e5ae78491531cef44cec9fb9a880be8335afd98c444528cf","bf3dca387e78050848ddcb2ed4e5362f55948aaea8074205d2b1571e69780429","e2d895b9561b0b9a350c970475ff268e4e0fc44436e107a916889a0a93d3389b","c182c5370e3838b58902fb21d6800447a2e4d29329a4253f85f2b89bc3d4ce6a",{"version":"46af8a6c2c3591ca9214fbdac6dd9bab981a3bd4652662d3859c98031896872a","signature":"efea818d1d1ee1b45c9d508281693bd6890ef147762ae32b38dc4badb31cf8d8"},{"version":"75069a2a1e380502ff9a1074b8ee61f5e84f31973e5f81b444e6993e5633c72b","affectsGlobalScope":true},"8aff91f00938aa90ce829f4d577903d6826fa19e8edc583f7bb64ef1a6b4ae3b","986165ecc3a59d4b6a272a92f7ca4fd7a0762c63a674abd2c1efa0bea64da604","3e7b241ec38126d95f9e37c49a631c00cff006a888276e2d02920c6443c8b593",{"version":"6184309fe39e2fe444f4ba94e7cd1abef48fcb48e258457c3b77c65828184241","impliedFormat":99},{"version":"98c511f60c3079d731a35353a47bfa89dd79eeacad48a45d07170d22ef4bfd02","affectsGlobalScope":true,"impliedFormat":99},{"version":"905800cc110167503d0cf58bb0dd6fa4aaac1e9cedc9bd9c48e5d1f8b5b8d4c8","impliedFormat":99},{"version":"d17be577b99e59611df19ca2cf0356df554f55bb06617c21321fc4ec06b820d0","impliedFormat":99},{"version":"5f30145fbc8ca508ae4e0d90a4fe9eaff490783f380a92f6aa262accdf7887b7","affectsGlobalScope":true,"impliedFormat":99},{"version":"cefe49d29d43726072e88671a2c40cdeeb8d49ca8fa6c2d4b06013dc7b9d6206","impliedFormat":99},{"version":"f882b77c5939860d599b4b7bc39f741ebcd56123e18b284500f4b8923acd2e72","affectsGlobalScope":true,"impliedFormat":99},{"version":"0230bc76ed3a464531a43d2434d315b9cc2096aaca28bdaa65b8f9dce9f3bc81","impliedFormat":99},{"version":"559d2d1cd7f37dc2ac59e7adce198ad16a5eb0c7273d67b8e4ff72821b7c853f","impliedFormat":99},{"version":"afa8760622183e35e86f516574217eb1853b08cf2168be0bfe991643ece1a8fe","impliedFormat":99},{"version":"40e539ae4fb534c8032594c8e2e7c420be13942b43b20a9afca53d1fd42eb8b3","impliedFormat":99},{"version":"d08d474654640266d6ac03f51ee04d72438b78ea377b9dc4678c480ce0477e1a","impliedFormat":99},{"version":"929f21090183949e93fd99327d292bff76f781895d5252eb43319b2c3e014528","affectsGlobalScope":true,"impliedFormat":99},{"version":"f9f3097a031827350b6befd870e9da3ec0953b7269497c1a7c5dc840223d2fb3","impliedFormat":99},{"version":"d56278ed347a6685abc6da6b49277da36db3ddce86bd298c03b48a5f9c6d145c","affectsGlobalScope":true,"impliedFormat":99},"b73f10c107ec43e50acf38b06626eaa6ebeaa2093432f814338f9ddf1b4112fa","b6b0e59158a1c8ad34747722a19398d7bf26701e9ee2a130d80a52a815a8bb92","c97f742ef6e8c0bc4e5e4ad8d90b4489cdd3bd1c007510ee4a2e4c09266a11d2","6a17f676d06d3e695520b275dd483b4fe62d34b84926c0bf6425c08490ee2c41",{"version":"9d23d162b6ddbc219ce2124e805b08aee6589f631e1ec4024bd0067f554bcd0c","signature":"7df0848e1a42b4e997f23f3d432ef1920a6c3b0587d32aedb6ae851f3b1aee2b"},"0f81a53d54fd2b4ae2bf60067d616de99884bda21cb5784d942089d52319fb97","86d356e64ab8d56852623677eb1bed0c106703aed9b7788ad8a5a56e647822cb","29dca1b5f0cac95b675f86c7846f9d587ed47cc46609dd00d152bcb37683b069","231d829c892caeb88dd469e0847bf9d14e29c82b8b158b381ec866c868adf9af","886bcc73e8cf74ebec1bd14a5cc5b8dfa28276210df634e6f81c844b1eef767b",{"version":"33632e1a33eb088a1e248b84e78fa46fae4f3b6575c1365e11c141006483a51a","signature":"f7b1eea3f4773ad7c5ddf23f3baf80f9bb4b3a8d188e839bc901833c5849f15d"},{"version":"74fe889b1d2bba4b2893d518ba94e2b20dabe6d19d0c2f9554d9a5d3755710f4","impliedFormat":99},{"version":"2ae64cd7b6e760496069ee3b496c64700c956a0620740e1ef52b163824859db7","impliedFormat":99},{"version":"380b919bfa0516118edaf25b99e45f855e7bc3fd75ce4163a1cfe4a666388804","impliedFormat":1},{"version":"40de86ced5175a6ffe84a52abe6ac59ac0efbc604a5975a8c6476c3ddc682ff1","impliedFormat":1},{"version":"fcf79300e5257a23ed3bacaa6861d7c645139c6f7ece134d15e6669447e5e6db","impliedFormat":1},{"version":"187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","impliedFormat":1},{"version":"aa2c18a1b5a086bbcaae10a4efba409cc95ba7287d8cf8f2591b53704fea3dea","impliedFormat":1},{"version":"5a0b15210129310cee9fa6af9200714bb4b12af4a04d890e15f34dbea1cf1852","impliedFormat":1},{"version":"0244119dbcbcf34faf3ffdae72dab1e9bc2bc9efc3c477b2240ffa94af3bca56","impliedFormat":1},{"version":"00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","impliedFormat":1},{"version":"a873c50d3e47c21aa09fbe1e2023d9a44efb07cc0cb8c72f418bf301b0771fd3","impliedFormat":1},{"version":"7c14ccd2eaa82619fffc1bfa877eb68a012e9fb723d07ee98db451fadb618906","impliedFormat":1},{"version":"49c36529ee09ea9ce19525af5bb84985ea8e782cb7ee8c493d9e36d027a3d019","impliedFormat":1},{"version":"df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","impliedFormat":1},{"version":"4f6a12044ee6f458db11964153830abbc499e73d065c51c329ec97407f4b13dd","impliedFormat":1},{"version":"a862dcb740371257e3dae1ab379b0859edcb5119484f8359a5e6fb405db9e12e","impliedFormat":99},{"version":"3be6b3304a81d0301838860fd3b4536c2b93390e785808a1f1a30e4135501514","impliedFormat":99},{"version":"23784bcab96ac127a2f11bb51d638f756d998dfa899e5cdc9062a7ccf5af0103","signature":"7e6f3b3128a22e847dcf416c6b33ffe6204ca823e1db144a8b8aacf0b6ec33cf"},{"version":"a39a722eb2a5753895be6b0acbca1993e155c69c625aa660a6fe9f86436a0842","signature":"e51745730d265c18484e271698662678e3008688fd3b9c810001f376f890c0ec"},{"version":"1dda322d3ea65a73b44db563766ee642874b8209077e4ad6f9c8f9cd4af3c1c6","signature":"a578b0b6ddb89b21342fdd5cd9bda070327f6474bb122a5c32bcbf003ad70aa4"},{"version":"0387e76fd05d3b7c2c858d99c13856856a692ef66e9d467b3270f4a6a4fc23b4","signature":"71ee69e3f316d5a0a1ef7944978ea7277624a91240496956161cbf6dd323c60a"},{"version":"30a45b4f02a31fd3ee963296303e31bf7ec59d1ae9bb0596404dfa0f1681d648","signature":"78cd37ed8de28ebd0855c85cfe3de35c522b299bec6e2d1347dcd3bed4493fc1"},{"version":"cd304540fd76f0f45ca8ce1caa0d8e79d8ade6e241dfd2845005af4b1ee635e9","signature":"fd8a9355fa38228abae79cb3b5e83dc3143454ff86404f2be732be3c759b2bb8"},{"version":"b62fd9e39144c74c670d68af0adfd2ed04ae240a3c32fc888799e04917f26b07","signature":"10af275fa81b6bcfc2675ffc735524ac0679af9382de849e5bdbf1a34fa5a267"},{"version":"d698055bccf1fba6127e703ddd5fb4c43887ef9cd725d616a96e623ffe5d4365","signature":"4d348e8128fa38c82e714c3237f652cb7d4ae4f1a488848a3279ec8757c1a388"},{"version":"c6de40e045417a3cfb15dd2e4a6c57fca6e319289554dd66bd7fd8515750ffd5","signature":"eea379cd939c41bba4166171d98539dded117f3d7dba82d58ed5225955ad24ce"},{"version":"b4a06a3cf5b9203ac5be556b0bb0338096fb9d72f062090a9531a107cf62429e","signature":"db5c72a5d860e35fd0c98feb8d25ef9023ef20d873bb640279a52232be78d43e"},{"version":"4c1393c1180e85a94e48c6fa75fd9f3c0636b0e619b70eb55f89f868d259172b","signature":"7798e625cab62c5328428361026e1e8cad985db56c8e4ede8362a74454a615ba"},{"version":"7b47d55cd4e08dca36274caa4e2731f45ce501c6a9b30c8c85b1f759482e361a","signature":"49773aeac3fe5729896505b313cc510741fbe5354e23ef4d16ce27955707bab9"},{"version":"d81d47ef1c059033ee5a5aaebc22df64c34b89fc350fbd4d1956b02691953e8e","signature":"c286184427311be2421096b4a3dc0bb32e693ae25d9f015da3ab60cfed6fff55"},{"version":"8585e007ffb5f835663ae08b8c69c145bc9c8893060e91fc1e6bc854d3e9b5bc","signature":"8f78d0f72403b049b1f3598a1fb0510e1b4ca5b34e3e2b9d80643424e75366ac"},{"version":"771be7888836efe4c0ac019077d137b2dc690fbc2be055ee3b5dc04bdc749e3a","signature":"7dcefe1297a16e9463873613da97ecc97fe8fed53371eeb9dafe2d2fbddbbcb8"},{"version":"029dd6b1640c9a59e6b92da9f62b028f6b4962f4d3e120da0dc1459369a4cfff","signature":"ab9e0cb3a1de5ecdfe05fbc8947ba5f1bd36fa799f6033b8d5becf88afed7f92"},{"version":"f113bdf4e73ca3cd36864cf3a89e11312e155b192e3447fb6c56c4c9fbe6dfde","signature":"69546ff9ed013b886118b086056e683656b95aac15c77e541785fe2679a8b54f"},{"version":"9150512338b6eacdd52cdbf1b37a6a7a19ed1b34a6522212348294e6d298c9a7","signature":"4e4d2597118abf33550e8a22569ab602d2f7867b6d6834c720a78cb46d5bd726"},"444d7b365bc0b5d85e198e5a70dcc4bb99b7d19a6525071d2b34cfbac3b75e66","34a7396c117c7751d6eb8d0469639f3381f36bf5bc7b77237ddff68954190ff9",{"version":"fdb48eb09b0dd727aa910172855826567da519b3bee2eadee209a3fd71178043","signature":"e5c8ca76468fecea8f2890ffb47c40e4667a76daadcd907d4626ad571bc577fa"},{"version":"b5cc98c007d3c63a2f85d8c14e120932b20f0092ef46c19bab741c25664b770f","signature":"c66d1dfe44eeaee2f129547a9f822cd271a510a8a62941bfbef00395ed6b60e6"},{"version":"ff45af1139b61759bd26f08fcd36b3d4311a77e3f1be94b8b1ff582950e79221","signature":"1fa27a2737b97856d4c626aeb160d4eb2be9bdb430116f682e6aea2c302acc69"},{"version":"7060bd351f43e0165d52958f99adeb6839be26046213c6b661628cede55c82e6","signature":"44e1a9f36b41a93165ca1a8ae69c38528eae065856dd7e854a3ffae97801ce00"},{"version":"2e24ae173f40792e3941a2699c7b5caa27a0751ad03ccd429d635813702ebcf3","signature":"4407669bd505d8a03ca675be46129d7d1e3110ac8a541ce1c0a48fe450b83a85"},{"version":"0eb009ca9bab7ed05e23270d194a8958a004439ccdfc998207ddffe26a919c51","signature":"f0d539a02cba1e4bab64d2bc6447effe2b197a1d30fec8cb636b25478f7de4f0"},{"version":"296c4ddf01e94ed5fafa7a1d1ada9b77d28199c5ec9f36c9b5f0f21c99648340","signature":"fd5466afeeb6b4351f0ba943b582bedb3720b94cb5d28d945f34871951d949db"},"6bb8d9049c8717a1aa508b02a46bbad3a5a682442f7aa2bbec8ae65409c9cab9",{"version":"cbd762ac17acf3080e0acefc49b9b84a36756d3c835204fc152c1ce9a2cf028f","signature":"5b2dafe66896138a12fc33743126ed316f93971f5233fccaf602784a3c8ac22d"},{"version":"da84102257a1041607674f42ea9cc84237825fb363d54d1cdd42baf1489aa0ea","signature":"437020e4126eb3f158b1cd46ce7c469465e7f60029fa78335e44f85dae0bf97c"},"2e8d620000b61541f0a8ac23d90fcc9ffacf72045920273f95aa9d17ba54b6fa","a8ef8a6b8827c526b0bcbdd50b066e884ae5ae2d4c07711c83b8afe23c37a100",{"version":"3e21e5658458213bbf254b87e8ac88aca6e922fd10d8b7a0e07625b6fa3909f6","signature":"f075fcae71eb7641f6a73d5efd39072a9f8d02b4185bfc0ea0977026b4895dd7"},{"version":"a43a79716ea9f2761256f7e8fa06344dd579d9b184064b125284738a09d02859","signature":"3e4cd4ced7e1059b14a400e6e035ae8a2872484d5d8ee9ac9c07a0a21cc230c9"},{"version":"cc5271ae03529c1bbd0641d3fce46f72a4ad28b39dba4ac588bf96433816a023","signature":"8c952d03f02465cf6a46fdeb9209f586c45f76cb29170cc94d2ea4898733d8cd"},{"version":"c42f9b18f5f559b133cf9b409f678afb30df9c6498865aae9a1abad0f1e727a8","impliedFormat":99},{"version":"f4b26b8107218c67993b23418c9f07888651ef7106a611fa2ec30a2f8b61efd9","impliedFormat":99},{"version":"deb6a1fe91454c998461ab46ccfe923c761e859989e5267b84c911945fde22be","impliedFormat":99},{"version":"a647b4a652d4d596ffa78ca67ddc6c90c909175319e256c770dcad53c22f045f","signature":"eb3467ea87de54d0159d56cb11b2c011b948183d1f5b8bbca396543c92e68fea"},{"version":"be3570eb0fba40c48257efa6fbf672a81166e73546804d14e0de730ec15658d3","signature":"533fad16dc5ea358001aaa1593ad8b6ec9f01593530aa3593a2c267991f4a569"},{"version":"023df7640738f59e9e81128ff194f354b9a948d43d2f00e6bd7d29e8f2e8c7f7","signature":"6334bc1747824bcc915df251966fa4a6a23882884f63e78a6afa167672a7ce32"},"3b0d25bc34c74e14b479fb9b4e38d3668899b15afb99a75831c446c28b3de10a",{"version":"b8cca2153afcd0cf116b3bc9dcac04636aa518dbbc19daa82d8912289cd64b5a","signature":"3382af95e795d8905a8396033f1e7b9043fc83782c14d7ccf8ce49769ee03bd4"},{"version":"dea786ba9d99cea91928d37c4d63ec985ee4add485c351a62f18139c45fd5c1b","signature":"6281abf5998eeb7645c2fd778f165fb09aa8040925545ef803c5102bd0afeba7"},"1ccafbe3e56f7563bca7e6ada29fd3b736d44c7f9008b2f1067b9d52fda58d64","a8f8aa9f6c2bf7ef88e0fcf342fd9d1e6dffe7053f49320f6bf39ed0a9c37001","53b2a55014f054f5b36eb94b4ebd5790e3e455f668403718032efec1b589d103","aceae7fb3a67386f3feedcc318ff33a7199c4280f18a642be53cd53f615e1f82","e46c6b9e011509b9d5cb86a0daf0ddec8abed2b575a575325f8e886784a8163b","a95e1764db3cd0d538286b20694a57c95a27812522740bee895be8f612057d89","82bbc4f18267bf75c517fa7aa5835adef8a0a452050d1f8c4ab737917bf549b4",{"version":"152accb0c34090709491877e607a5ec957a70040e5320a1516348311c112933a","impliedFormat":99},{"version":"fe9dd679e568dc2a0e5e6959f77b53f8bc1f126d46b0d17631347ba57470b808","impliedFormat":99},{"version":"b3805662389944b27203c90f238a4fa7b77a2dccad09860af701bb72ce502b0d","impliedFormat":99},"a8a3a2175e08d443028d02b9825934205084137e7530ab3b49e1dbefcca6e345","e7db50dc539498b089c30cac94b538962d340c63c277a13c7233ddf3d4641fab","4d0acbfbdcfac4d84cd03d34354746381bb97b0a4e070005b2d63b35a50dfbf4","02536878763a90ed82ba3468f3ae1c615cbb59de62618b27bac6dfc17aedfd8d","a6a8866783c99c76df9c914175f8f07b903e6679aea6c40a6c2cac16bc1176e1","0d2b9fab22e46386e3f0b78034f49462c9c5d8c314164226f6b51ce2d35568a6","dde253c181a3100c7794c40c30aa6144bf797abcc2348bb214586e3123fa0b86","2c6a82385d5e3e5d7fb82b6f14c50c8964b6a78c0ea3c11d272157b7be580c60",{"version":"50d6de22a2638ee065f170cf1c4e7db26b2cd9eeb1a1ce023f4cd93d43fc453e","impliedFormat":99},{"version":"41e4b825afe9f38c821a8d7bd9667e2c923c847e31036cfd6c98006b0ca1653e","impliedFormat":99},{"version":"fb3796f25b77cf1496279d8250b8ca76741ce750a75bd8cca753eccf02358e07","affectsGlobalScope":true,"impliedFormat":99},"fa7607f48ba2c02eb8af042878d7e376157900562340f72874650d2102b5b72d","aa433a025387d244052e46f11daeaacb21b53f645b336d64d6d920b0f330c5b5","14344cf9bac2f1a62ec32f52858a3f11f63c70832207e824ce1f7083492affb8","fb5c068182ae45b9970d0ba96eef722610272bb072a41b7111a00b431c2d8ffc",{"version":"9e77270468dc77ee3f0182f377a6022b37cce590cab79205c497cfb964ee2d20","impliedFormat":99},{"version":"8bb8931e629d9adfac6fe0c067de1a3c2f82b47262f83fa76eb0772ef13808e8","impliedFormat":99},{"version":"75c9b7226184ba8d96f2f8818e8a1c1c8f1f8325b17645029ddda07bec3ade83","impliedFormat":99},{"version":"1e8f86f007abd453e72e49dbc52aae6946167a1bdc2a989c1f12d3cf0244d2f8","impliedFormat":99},{"version":"1b45982abdcb2d07d5d1fc84dc6966227b7c82d4a12bd8ec50a28a01c8842d9f","impliedFormat":99},{"version":"220a08c0460aff4f65b8129a53c63c97599d96430150e7fb2ca8da5ccbc16bfc","affectsGlobalScope":true,"impliedFormat":99},{"version":"f296e6ff892a925da76ed1e7b2114803db2877f1fdd665f33e0b26de7e1a6523","impliedFormat":99},{"version":"2b7426977de7220c78217f27552dca65b529654f85f7c26b6689684c9f002cef","affectsGlobalScope":true,"impliedFormat":99},"4171fcef202a19a14cfbf1d9269a7007c5ab79c58a07c88f77419dcb576e3362","fc69e4655f851f0fbf23122caffe18d2ece057464030aa20dc485003492adbe1","1cf690d9be450e173185a111175a4f6d4e0bacefeee568dcccfde8b8aa212891","7eba8a6646923a39bb4ababe5faad2f5a9dba44b1d9324dc07200350341d89ee","e4a8c00018b11ec228d4920c5a0145ad82c16b5819a3698e81e9d72e061fa50b","dafb14b69c8f0b0509c6b26813b1dd823466bf11f9a00488d7d6be080b2738c6","f18d557ae862aae659c92fa35b64b0fe52f4d0b3bbc85280ad5b7ec4c5f14e99",{"version":"193f7c363dc7695b2c3f2883b617dadd685c04766aa11b7fded108b541566bb8","signature":"f49e8770fe9aa864f583a58b868fcb15291422d9affb7c3106e62a8fc7646837"},{"version":"79790d6ea88741ec865f174eb6cacec03b31d227cd63edaf9c82232a5030edcb","signature":"b3ff7287cd50af7e58662ce93eebd7058f32f4429a30260d19d7c1d232cc9c13"},{"version":"4fd357efbcc34d7fdfd0b4fd62ecaa536f10648769841b7863231f4e2d08e926","signature":"c447020e4465f53f011373d258d785edba93ee7195bfdd10f053ddccf5a47148"},{"version":"56f122e43663273fc452e5e1dc7b196da288b9cb409ab17d9e0dc5df5efebd2b","signature":"e2f28ddf93fa9d0abb4aaad451b6b7c203c6c52bd790759ee5006fcbb2f51c25"},{"version":"717dfaffea96e5864b23e53a0c560924dbcc99fdaa35ec244b5b32ed4dec6643","signature":"b6055bd20d535316a609541fb72c570fd94d6d21434be4bbae7a0d62fb192c96"},{"version":"88a3a6f8c2a1640d8d5fd30d8d86462f8babd86a1e52fab0e8b7f7c141fb348e","impliedFormat":1},{"version":"345f76c854da724803c96f727a3f9c75e26cf95c6e7b8c1064dbc4e7727b74e6","impliedFormat":1},{"version":"ab7b7a15a5d73eb0cfc2b973e580f357f07492bff6608669d7e899e2d49ac9a3","impliedFormat":1},"4d4cf93a6b4c81851ad759e4569b6feb7a701e80b13a6f9d8d9c6012bbb86bd6","2e6035af8f3e43bf95e4983329c8277d66f9b271106af27b99a85d1c1b9daf4a","df32d43311e85715e2a573239a4bbc5b78ebaf29af2af5fa8c85370197997515","3a792bbf677343364a1d9b7197c6e4e512764f17364efd656b1a3598f2a9e820","3d7c0b593a29d717b2b2ba3f03f819c3c48bf9e250d79c4a31860af80f177e8c","e576aa80090f8b6020355ca8d7f4184067c84389f4b92125be29e03b1f6c5194",{"version":"fd624f7d7b264922476685870f08c5e1c6d6a0f05dee2429a9747b41f6b699d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"701978f3975f96e76e3ffc2e1762e3a97e3d323812049fb6fdfd559579b89708","impliedFormat":1},{"version":"4ab17f80ced148d509345cee706b2b85941515dd76e32cf47118bcdf6a4bd56a","affectsGlobalScope":true},"641089f0b8094ef74b9d4b3364d5dec1592d5e3b8a51c1ba491bc8872049e79a","950fc6ac97ce76785f03282f907aac4b2cbd8ac74b17c963f1389847962cbc20","b42033bf1067564808e4d360d79281667c2b3b0792c2d615ab641eb85974d4ba","7af29b0589483f7bb8a99405ddb849f34bc053146184561ed4179e02f5fe4d0f","ad3ee9f7d14ad8b7ae8094d0f1a2276656f7a970827d4030d1dead7c2d765f75","9c7568f9c75cf6a7d35dc9f18c5971cd5b21344c686c7cce56b3558d3305d40f","fc48282c397084016a939e1b3f91dcaf4199b6cba339d91d8b2dc2acade79762","3e62a55b950132d6eeacc607b7a1bff990d5484347b2be5a1f54db51af30ff25","cfe1163736972c7c0d23497a09d6349a435ec7a0e0622509693c4fc142e7a403","60997095f458b8c2c94af5759c796d9d17678e740a41a04c3e518c14c47f2ee7","904d1d0706427169b37660f296fff6457b55c7f5589656b98e10d34b8fea3806","5582fb24ca35ef8a72d61a095d62ae2ada8143c33bc56febf626e333d3a5b013","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","81ca54beeb924c5601f429901f0ef2ee616e4291a203ebb42f235d84c6ff0e40","c36d51dd36b3887d7c2b81ebbffa009fa0ef62f4421f6b6b2ac8f06fcc6328e6","86d239790a025b4f1213571ed5d578b9080415e1218b253b499ed73ac436ae63","d2a35e0fac40e510839fdc737b1c16cd476150f7edef48a79553a8585b23f30b",{"version":"1b4b46886a4d72b889e054b9d9628a3ec9450aa986994ece9e83b05ea496c6d6","signature":"f26ba7b83293a295b31ca4d3aab0357577166f3e54310fde5df565b63aa17be1"},"1fc5d4c45c203fcd4db24fc1286f6a42e7df5064c32462aba7883353d6231394",{"version":"62001319115158192e88449ded6f0ec3b9954cb2482688b69ce0d71c14a11f98","signature":"02e03d8af5328c2d44edd9a1aa568ff23014a678c83b37700a79b90d8bfb3052"},{"version":"984a0cd7679641ce1627513cebd23378eb58e3a4cf89363303fa25f5c27343a5","signature":"4bf870ddf3bb3b346099a15a1486c86b991c09a263ffddb229d01586d52f4656"},{"version":"6bd7c748ab196a69f84b1d84b2b4e2f6e50b7e1647d7746b2cbe8bb3f9170a08","signature":"cf5e4a2d5423f58aa3a08b378bb0fc3f5ef5beadcccd99ec11d5dcf8d8010ad4"},{"version":"62262c39efa889af275815505cae82fe511749fa3b80a4b1b2445c08f0711b1e","signature":"a1ac23ef001a63c92f12f4205f0ae2d977149c76fb63f375e91baf9556cf0d7f"},{"version":"a7db10c9e8fe7bf5b08b25288802a95ecde8bbb397237edbaf388dd3f4974902","signature":"ea65e3ce32dcbb61edb379f86b303732103a887fcfe61fb0434cd5398fc8c272"},{"version":"38d283fcc907d965fc0d5cf56db46a44e6a26944f7c47125611c4090227414be","signature":"2a489164e760c8f1c603a0272822b1eaf4886e578e8128ba6bfb82993b419c53"},{"version":"00378ad85e8f41cde25be7d36915c271836e716963a82915c76253f16b339ac9","signature":"49e700af7573f0145ae3e5d80c85d244d7f72c532c15d51428f722a21ff46bd2"},{"version":"58dc31707812eb9e7ee25c9f011eb4a6efc6550cd81d3e13cac4313bae25efc8","signature":"e62ce39bfd35c9b635c17cd38ec65e4560d28c5f6a9419400a542c436a3257d1"},{"version":"0b6063fc23afcaf0b1b4de2c6e6f1ff5b6a3fc586259664d968f4c936f7b9dbc","signature":"1f8156cfa59fe2f9029598911458a03d2e8cd67954c17b5be72470b902ddede6"},{"version":"50e6401cef702c4c8406927c06050ce1b91d08e274d028c5b80b7531fd33a39b","signature":"75a28692c8dbce56c0b07de8604d9761a5aa1e555cea4dcff3cef077b5f8efbd"},{"version":"d6c0b824e25ca3bdd752c8baa81a8c5c2da034ffaa54ad60fb5cb2bea6e2bcec","impliedFormat":99},"f267810dcd09cb85ea08c95901e568becf0b9d22a6d213701ef804d40b386f60","4b624b0123ffb53ac7617babb35706283dc8e9c08029591b6e20199a8292f756","680b90445420b57653cd9afa1a143605cebe72cfdd0404fd5865cf7468d9fbaf","08c284a870f969e3755ec10154f7116391ef7370d157b612598f9a990adf6b37","90e0f68bc1ea26121712b8697446d05374c920d57178f64cf1864171de75129c","38310ee8ef968c009441d8589375a1a9c302594afb260aa663f70906f581175e",{"version":"5d12cb6727905e2c47f26154cc2b0625adef069d5666e534dcb158f4eeee2317","signature":"b4e0c5592f4108bc1c855177aaa1b61d09d02f8e0f59089388aba7206c47d4d7"},{"version":"1be8da453470021f6fe936ba19ee0bfebc7cfa2406953fa56e78940467c90769","impliedFormat":99},{"version":"3b4541e209c5748bd4193c455e8eff5e289ea8745e0bdfa640dd17ac4efe483c","signature":"a1338c1eb0e7551a083f0f812e6ceefac1814572837a6c3d3bb4c9b7c3b0156a"},{"version":"91d62367aa7efdba9b4d6c5b56fc8187a82e546a77167acd804f388d652d564b","signature":"b716363b91ef2010c599a34d8d9757eab83ed5ab3d798616ba61884a0816f732"},{"version":"058b0c290cc2891370f46357b63a9f5c44cc471c8158564ddcc17186114bf31c","signature":"c2a17ebbed3ed2b156debeb41b51f45cd76a8ea930dee56ec984a2467c0ede54"},{"version":"3caa5f8b5875f7165eb1cf9271c166df2690aa4b300c542fee7ba3b6e0848127","signature":"f714e700470b18b5cf8ee5e69b90994abb6613f956d95bc35ce1ed07e57ff8f7"},{"version":"8673704cb11f8e92a15639656456ec331e42cacfcf9241d8f6fb8fdb171dc6e4","signature":"33ef38b44de1f8012d7ca8331733e9347287579b1922d64af126546d85af23ab"},{"version":"52896ff4ba2e60f508e7faf896328ec563b5f4994bc2b70ad9930e6bffb082e9","signature":"0b7070aa7e1af7efc6c302cc833b7f8c96e40afaa0d1722d2356d5051a2cb86c"},{"version":"006fff646357c487146c77e88a2d1d493e06640a46a8af2895052abc7c45f563","signature":"b241f57d288bb85f48768b19ca0a4c00f8a4bfd745c53317078c5701fbeb0cb8"},{"version":"da66c1b3e50ef9908e31ce7a281b137b2db41423c2b143c62524f97a536a53d9","impliedFormat":99},"769c966ef166205a08c0382a298a6c5877951599d805931a963ae5650ee46391","4a9a87f04a4857cd229d0b7c5b18f62fdcba0bc74ba8809310114e84dd6864ff","690a59ec8ef431839c447cd88fbb0bd0ce59c037736d8748737d4e0f2ed57077","d16cba0bf795ae7ed4c2029ca8264c4a41a713060eb66699e1ec16563318a5f9","20009872fece11af61f0935c11746c371a2eb11041af2a3da1bbc53bf2ac8826",{"version":"107ed798b88a71b3e448e365a7e5af3f25375b4c6a7cf248907ae6c8559dbd07","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"84f090849fcf05385e3028adb7e0dd317ef90d2d6e2ce5b3014cc227ad959012","signature":"15a84436cf944e1fd426624372ee52fb1f5e46c515bcb778619e821275942b9e"},{"version":"74c47de25084e27eedd84956e93572439209018381f645b6b3c4afbe168e566a","signature":"a3471ef2afd658a0cefe89df72ba00f8adea67c2294853b1184e52872af2f822"},{"version":"0296d26e81d2c741e9283346ab26b2cc328f14e68df9a32fe8fbd10d15450281","signature":"79632a1c955375607d5ae3d631d9376175f1518023cfcdbd096db7a8a6bdac4f"},{"version":"333e0aaa5b9a5129ad1be9f0e563f80a72510ae6dc6f8c7905f24d987c7a0532","signature":"5085652d0d83133ff53f106ec75c998dda8d6f7aec01d65a51e1df3a4738696b"},{"version":"67109c88ef3fdad4126aae2d8da272662dbfb6742f812be8b29a5e0589d009fa","signature":"a5ba81b3ee037c88484f0475ef97da766e52abafbc0a87c267fcf3c42f6fb883"},{"version":"a5765d2ade3f82bf272c1bf5cbf0b41c7cd7ffce0aad1407d72a282a2cf904cd","signature":"ee72a6fcb7937cfb067c412ee0ce469d1d327d2c6db7c7e9542687d9ca78684d"},{"version":"fd215c07f5de917879cfef7b20517092933ab9b1c3516164cff05610d5278058","signature":"8fa46771471e73275f627ca29cc6ad4227cbfad15a7a0abcc7027d13867e55ea"},{"version":"39e2b849c71ff373fb6e04ee89bf6182c1ecf9a6773dd3b61465036f6904d347","signature":"12051cef0483c091431470de729c82211cdc9093d0ff92e8cb3a502b0b1f7767"},{"version":"6bf5134b1a34fcf69540045faa7ce9e3fd797d8bf3276251e79bddfcbdcb6227","signature":"e3cb6d4cfee2e0504f1bf8e897181462f026e9a29ac6fcd784bf2cd0b6ba9439"},{"version":"d9958a5dd0e25b9fb747d91b0befa9e3889516131910ab1bc7c5579595487ee3","signature":"bbb05ef0cca9dde33f69e1a9e5dbbbb1d0e676d3a2d0545188b074477343b120"},{"version":"29796bbb6ba60acab0236e474216ff9630a34393f57f3d2e1194c2ed21292472","signature":"ea1ba57d293afc21604250f1ee9d035c50f9548439e4a940a96029994a690855"},{"version":"eae246cee7f7ab29879abd532b4df584a43af5329e5ba3163bdf8cadfb26347b","signature":"bc0d436a8a92e365b6c0fba8712d925d47f30b150ab018f25cc7ed722304e87a"},{"version":"942d425219de7c2d82fb396b5ecf678c98f21d7783c04a8ab644b8f0dcaa82b8","signature":"58c17083dc5670cdd4fa086639b06e9c4c0bd7966e47db2af2c33a6b709d3cec"},{"version":"df324e4e2489e99e3db42b88ca394f84fc5d8f5f52a2a42d18356d481dca62fa","signature":"f910e5fde3c2ee17d0c75fee30baf91be97a1f8961a97cc4fab78113f5235755"},{"version":"cc3e477fae0223bb35579dd7b12939952cd6a23da177647e1c024c78787dc2d8","signature":"be092d0d60f9d2bac1bc9d854e3ed099d46b6c6c1a35c2f11627036ed9988d86"},{"version":"e295f1e9f2092dc2c8cf31235494ef96f0af401bf1396661b8ec3f9ec091b512","signature":"c7cc8ceb5b443e3c6f120cad5677e884be1520c24dd397a29e267e2e871c7733"},{"version":"56c47742fd9be79c2c0afea97a1bc6a8b420928668d001a303b40d6bae07e095","signature":"e5d3dadc5be9652b10ac1e2784e3f4fcdc32bc61fa0f5707ec863a28012ee728"},{"version":"bcc70dc7af280642a4c2c909560c21439ec3946c38bac1c473000d0cf3e07f0b","signature":"f5345362e8db7ca509febbc627cc971adaf41d2055dce2160003114016039893"},{"version":"4ec1308a2df36eefc5d33f20a5705a54c44ceb34e17e52b35a288b91adde8404","signature":"ad93d98c875005b00fcc8f37a9fc64c8b1a61eb631cec1a27b0007ba8f7ff3cb"},{"version":"dcbcbf37ffc16b3a88400aeb9667b25f06addd0d40b8eac00dde35033b78bd2a","signature":"46c2e9644f95c53cd3bb1e46a44b5c0a004db9003e72577d6f100d165d346bee"},{"version":"529bf49c29ab180890796e00ec1a4deb907bdd65a63e5352506e8ec494720255","signature":"36d9dd224edc317ad504e67dcb8036ab7d9c8ebaa7f08a3e0893da86893ad4db"},{"version":"e727d824e472831b424b58522b37b187f8e509e40de45067da00c44d719eb2b2","signature":"ef709e9410b7958393b5c9cd6c5d886b19ea3bf6d6fa7234185a332a99b864b0"},{"version":"7296a463bdb19a88db4dfc04f3166f7f8f7b133988073b2b17d0aac06f7cd81d","signature":"1a47ede4bd339acd9b911c263d83fb40d86c2d62ed60b0d8e43469de3b1d3097"},{"version":"4013f22bb73504595278388ba58c34d10dd326bc37fd99bd9920cb5f54a6472d","signature":"b248a2c86a9608ef3f4c5480fda53e28daaa858fdfbfbe9ed31e0e0a0aa83b69"},{"version":"1a269b8837fa04e633ea693e0184276f7f6d6e1b0f6c743366dde255e6ac4e39","signature":"db9c5405bf5625a5add898aca1f3da363ba3e4e34861a35c076fbb7eda56181e"},{"version":"9004aa7025bd6a77d700ab90bde2077fc50c369ffe5e25f792880238411654c8","signature":"858602103825e2c1b7a108a78cf858242720a46bc18216a4b7d27d01b37eee6f"},{"version":"e049cc26badca0641c47b0eb3b40fdab33f4707283872241d94dbd4866b24f0d","signature":"677af76589c637ef77f58380600fd33adbd2d31aeb92e308869dcb91a6039fe2"},{"version":"1e17680600975f0fd95747a07a3929e3123a62d741d3e9446a595e43d8cb87e3","signature":"52ec1df32932b15a0412a6a5f633128244fce12fe7db8d792953938afae8a82d"},{"version":"51aecc19f24d2948f82b6e64c6faa81d87cb5450beb197c41022bc14617583a1","signature":"528ec8bc7f45c4f0a3c003110c5e0e3b27a2103816fa7ef055f6b76969a9c72b"},{"version":"9aefe5d6d31690f4c7acc244f4d4e1350512968c84708273730136a6c4a3bf60","signature":"87826b45abe64b6ff3a88de373ab5f8bd7b3ecfc225c437db4b3b57694898c19"},{"version":"c42885cc08eef697588e95c5148b16a1ec10ddff5b8bc74167656c5afbe21eb1","signature":"de122de2a5f01fca22abf424dde229a4e8c4e53733dbbb3677a3f1bf1133de5a"},{"version":"3fceb14ee934c0e6dbcf7781c6c949fa6dba07229c6075691ac8769d409d1b22","signature":"979e5c5783dec326c00c1c65e1d3c6382bb9e94340c811d1218c5a43e325f2f5"},{"version":"7a6bb7c236fda22ad67d3d5bc52a43ec69a2ce016c0f4b655011ce59c3534f8c","signature":"e817da152d71839e10055330041fa545a80bebf8321ddbf9bccdc4560fb6a145"},{"version":"2c951297ce4964f5c3d2f9772cbf9c7ec1f014f478585791bb412888869cd1ca","signature":"b4583ac6c50ac509c24ecb26f0c49175ea99aa561799c6059684d868a1fa56d1"},{"version":"49e477f761032c18480a0ced281de50aedda7ec1fac5f2a9e9244cbaddc43cde","signature":"34a7396c117c7751d6eb8d0469639f3381f36bf5bc7b77237ddff68954190ff9"},{"version":"1e8c51eaab31c7c7ce8590e80b8663f360aed54caf8cdf2643349ef59ae27876","signature":"1a85409fafbd8616120a0a0e65fde663d6ce75fc66a83cdfa2b6553baea53cdc"},{"version":"85d33ba4097c3f24ceeca365379301c327d5291da44e57bbcf301b68621f3708","signature":"33612a1d9e60be6cb57a6cc5e1b364840ab6930b72464f19bb4361bfd68c37a3"},{"version":"39426a077f479e1b77cd46b3b2341d76963fc3f4832143effe966b22cd77b72f","signature":"976a07c70d961e35f4ff28926415b8d479400e46fb667f664ce10339226b2fe8"},{"version":"b7621e8157feb55d8bfd930bff0feb7f6314c1977c509c86e8f1957fb58b590c","signature":"e10371bd77f5af2847adeb8cb585bcd0208bb156fdb7ea42d474190a7e9f4399"},{"version":"49e477f761032c18480a0ced281de50aedda7ec1fac5f2a9e9244cbaddc43cde","signature":"34a7396c117c7751d6eb8d0469639f3381f36bf5bc7b77237ddff68954190ff9"},{"version":"68428c40c89590026ae93a83ffe8cf1daf58e3f43ba9d9444c60506bd26cd557","signature":"7eaa267651c453bd142030361de235c42135e9e51d6d4215d557eb3cbe5eceab"},{"version":"dde36f97c0db07487bdd0ba4d3a443e2b4597f4b64fd97d79f84dc7a55c66cd4","signature":"59e59d8579b6f2bf2bc8a3c51d355a3cd0b1b96670d04596d9babb2c55f6cb93"},{"version":"990ebf5a9f92452038d0790d7546d6e5cc72e64308b1f3ef079de401bd0f9514","signature":"5c1b8c98a6104f4ef9c37d5a4857c7ab99c5a345188aa912a6e896e4d4841e64"},{"version":"fb1a7ac4fc8d527c8db7ca6983d920094623209d178ec63a60377d7700c21982","signature":"9b4e99e46701ec1772a7d457041c710abd838f88dca8eba25d8df4ebd1438c41"},{"version":"498a2a4b2b1c935ff1995977d0438e9b21d2950a1382310ee65218d7c2f3ee05","signature":"0daca193f44847ca6a1f4f4ccc695200e5739bfe8026244aba21c136917780f9"},{"version":"49e477f761032c18480a0ced281de50aedda7ec1fac5f2a9e9244cbaddc43cde","signature":"34a7396c117c7751d6eb8d0469639f3381f36bf5bc7b77237ddff68954190ff9"},{"version":"2558fdfbcd3b68164593330fbb9edf8c7e77bcad57fedb70122848e2d947dfd5","signature":"af2c6f6177181cd7fd5ed77162ddfb127ccad05dee4979dcaa314b620bf00db7"},{"version":"45f6ab8336804dab84c76e5c07483f220d358d23e86774a772461fabbe6e89dd","signature":"9db311570e95f7f07391ede131d8c591a6646478a93a867066439ff4a04b8497"},{"version":"69366f416f215b5de1ebee3d2701f35cfd66de1df416190cb275f82f0187185e","signature":"b2afd16c37f8021115977d7e1676891e742d3773c28389206bf3b92fcd792b09"},{"version":"27876043c2193acaf352330a6ff74be78a078f3f29fc66616d5e360735971d0c","signature":"b546c64e0e45bd8ce4806cc8e541c99c161ea07eedd9259dd3bd33bda8713a36"},{"version":"f11ada9cb64108fc51cc6fd2f856be01dd4be71a2492d843acf89057057f3525","signature":"32c367dd0a1a9ce901b5e5b27a3e0fa05551ed1c9da473be1979edf95411e15e"},{"version":"553312560ad0ef97b344b653931935d6e80840c2de6ab90b8be43cbacf0d04cf","impliedFormat":99},{"version":"94c69b998bf1e5d142f7f448d6de90a6f9fcdd37d18337b898f0c5682737a81b","signature":"807c2f3ec9aad7754411e505ffe872f5cbf1d3502917f0d2ff2a2f35aff51d8d"},{"version":"fc5b44e49e76f05fd917a02550d8985806697005d964d6e6f974caa1239b2066","signature":"0a719863d4ad5ec6d4f2321f95ad7f2df209ca1253925227f2a744d9e484cdc2"},{"version":"94edf744878999ad29d54a2d6f41e2bb84e6c1beaad3993c2afe96dda7ff1b71","signature":"fb540a256bd349d050618d9e4bba74ce19299f34f028c485ff9cbf872df5b8eb"},{"version":"aae1075c1c78b95bf2b7b03dbceb98580e8369260bffb0bfa16e307c9a6b1dad","signature":"b7627f3b542782d8590500b33b5d895077df589da27e9575f11802dfee094134"},{"version":"d7439f5cc0a08c4aa4a6704111d52b297a0c551df340f00145269340f55a25a4","signature":"d8c9696b5474faed802561397e2adb5044e4765428edd144c5238ac2cd7cb91e"},{"version":"e278a488b22c02a983f72a6dff0cc2cbd07c910d77e4e1d3959dd5222765b406","signature":"0e8a79f4958560ddfd818144decc371b6028d7b09380ae845d7401e17d5252d4"},{"version":"57b07b652e87546cb90e601371d6e82c60fe3429d437795c8151165a2dd10d81","signature":"370d2647b65eab82ed70f71c2f964cc105fbaa6ef7574c5d64f85ef571d5b95f"},{"version":"26d0d232e557b20d5e91eb1a02c99127890d2e1086300af7ca00fed6ffc0710d","signature":"68e208a41cc79e2a62df011bc0bd7f98036c8972b069074ffbb5de97eeeadc1f"},{"version":"f4f50cf8f6b45a02dd3cb5b4c1fdf26d0ba3d8e0f93e8417dbe1c9c8078cd38d","signature":"18f0756a3823751fb2e073ccda418e9073d508c41a37866984b6d2973ffced09"},{"version":"2fd48df87a103cee6f65309642f4502853d1608eeb00189249b2286093413e09","signature":"311011b8c26c201fcbf5d2640cb0fc0a68bb6e86982da073bd966438a560c5bf"},{"version":"cefc716db2896ff7219bcd6d673bf73ddb5d7c7d2bf1b7e312527f496f03b672","signature":"913015efb54d0ddd7eb696fa0d229c37655ed4c3c07c09774c1f407e1132f2b4"},{"version":"309c5f54b0cfea7c7d3898328e5040093a2ec372fc554e8fda29dbed1f5ba5e6","signature":"e4e81ead973e39f0bdfe9c5b413b9d25d4849b7a574acdec6ab1bdaf9e9fde62"},{"version":"d6a6b47935175e00c041b330bd648be29c9ca1b26a57607a1f60f0507ea7a08a","signature":"26bad57957e9f9eb1cba37346baf8917437799f8867e7b3e1c74afec81d97e46"},{"version":"f6a6a00d7bf36768b2c8ea62f1bbca4afee36386c65087faec35fde4b5894293","signature":"3a013f7fbf37d729acc77549e65bddfee493c8eb0a1bda4938cdd4a930284ac9"},{"version":"38ef896f3757957ce79dfd87e5a25d439f95a76870ca5e88b19ddbe83a85c8a3","signature":"4285b3976062212af73781ab61cd2d35014d6c8922ccbc082272ea14b56c4119"},{"version":"3e6565a2ad92128e71ac9c7a3270c7fdfa7bddc416b2f726a8f72b0b71bfa497","signature":"5eebd8d6472ff8d9311d6601eb974474e9a5c70abb29d7f92023a21e4c151fbf"},{"version":"3b77a24b559a97a13702c2cc95fafe3050b358c8ef64bcef391f447aad4c8e05","signature":"8f8600a6c8adc260e45ba1e461cf4a4902c54555e66f8d99fad1121c791dae63"},{"version":"9192eee004e249dbc3e29592b46eaceabb83a156e1f29abd8aea5d8806a589c3","signature":"13d4e6fe29b7b1091de2284a93229d609b6054c52cdf043aed190acb19033721"},{"version":"7d603e5b47f305c1f7e64441ff096fd0d46704fed8550e822f3c53c4a5c828ee","signature":"d615f8c2c0efde69f76f044635fa37b2aa911bdddfa879534729df4f517ecce6"},{"version":"3a58aa64ddada83559c0d54205536799d3b4a5521a118f2be1438d34a4f7950a","signature":"ba9da035a3894eadb8a2c45f8ed91994ff56124e47b3e830bc27102edf619eb0"},{"version":"ea3ead3a94603033f6de190d458017fcaefb4fa61bc43fc0c6106d32c1a6ba8c","signature":"9f581e1df8ef43a0317266e91dba0df6d18d0435e52e2ad8931a3cc709559141"},{"version":"76542c9db69275566c78bd7b260180cf6e198601b333f6895b0931a92e65f8d0","signature":"f171f8d6a6814dfcb7edfd42728744ca3b4482f38aef02d4f8e220068e7d12f4"},{"version":"5f76615e6d335c3bf93ca3fb72110b1db32a55cca465e62771f63daaa3004e1e","signature":"0fb77370f61f82b36b5aaa238eaaec7bbd0f19c74a962c957d61638620579434"},{"version":"ffe38e5b3a24d14b540ab3908d8e0112ea6e92ef5aecb045a111b34eb2bd3f38","signature":"5ef4059db4d4ac518e838c27b560782f3dc39458004a782ac0a9df9f7ed9fde1"},{"version":"9e6fd1b7fcc82900c7e20ec71e76e65381ae7a68f50b799140f1ba5b1a68d0f7","signature":"d248a78d5e4bea035815dd54f943fedfc69fd7e6c55d6fe5af957c20f147fb0a"},{"version":"497cf3a7f87d4bb34f14c3b52ac05104bee99304495bfca41de7ae71435a4f90","signature":"d248a78d5e4bea035815dd54f943fedfc69fd7e6c55d6fe5af957c20f147fb0a"},{"version":"9dd690931a2a69defd57349dadfa52ea1fab2f0414b9649ba794b4f34dc90351","signature":"fa0de7906ceb6931a7544600f902c3b69258b6fd3a5c079bea2dfd65eabe0e59"},{"version":"53111c04866fa2ec9b0be2080a0168b939709a662c37f6c223bfd7df9a997155","signature":"fa0de7906ceb6931a7544600f902c3b69258b6fd3a5c079bea2dfd65eabe0e59"},{"version":"9ed0acb954a1c450f94ccbb9d063a34c6b6e5475d6922f8478e3917472a4c372","signature":"99f8cd656806c513d5308d8cf6abfd50d0ace6e9985b6f5babc36f5cb44211c6"},{"version":"07fbb6baba4fc11facf81cb89ac06bb3a4a5786b4b625d81460481c8e8863659","signature":"9ac56e2af0dc7c8a14b4a3accd9e41553c15931bfbda0bb14e9e3f7404e33934"},{"version":"df948894552207efac5421e5d704f375e07e477de1fb53dc4d6a9f8be2494504","signature":"d248a78d5e4bea035815dd54f943fedfc69fd7e6c55d6fe5af957c20f147fb0a"},{"version":"29a684d2159aeb35b22ce9fefcf741516e32ccf8ef22e357a2082ae40b7b9727","signature":"b4d58ec0ee5953e935eb7446d08db5c22021be7621c4c3945c132c300a07116a"},{"version":"525ba1e7109d233c189216551aa0aaaf92c304da7172808d23577f2cd03f535f","signature":"8b93142525a231ca64d023448ce684dde544b96bc61f095adf81151c70c9ea2a"},{"version":"9f7b310cb0f5863366a7696cd26a099ba01e28a90661620629a6beb4d43063ee","signature":"462a34c5ce99bc7ad18d4e8aaccba3230918e0e1d7885c822e3f69466c08006e"},{"version":"48dd1ffe15d9d0fb41d32e3ddecf06f42e3a0612466b89960c589e300076434a","signature":"5e3aa3762886f0d7add3347e4bd2f77f00c0e5f347f1147dd4133e3651188d00"},{"version":"eda79d8f8fff58ed68390e9c7d71395f1fd771c67d2d071832dedf82e8123e85","signature":"90b8333c67f8de7c0fc0677b00a6979bf3ccb8d4659f0482262a77bb7bf517d9"},{"version":"8593f4ba03378c796e5472dd4219117ccd0b5b506050c959cdef7a6c2f293e38","signature":"462a34c5ce99bc7ad18d4e8aaccba3230918e0e1d7885c822e3f69466c08006e"},{"version":"22e6c0b1f6b2eaca7b13b0c8b268d008e3e9fc0bf3dd750759e857896fe85589","signature":"46644db1af6f096ee5e7adbd4a591b2f30c28fb1386e8b516af215788051549a"},{"version":"93403c510a4c45278dc281789d98a4dc200c9fe683f3a2dc8be720dd8aaff5d9","signature":"1e537dac3b660070c0b5338c196ff883270a7231955b6a19d9ff6a20e3c44885"},{"version":"c00cfe0249000a29d1c8c91bebc11a69db8d7b4b5f9fc8047867361d1e5c75cc","signature":"90b8333c67f8de7c0fc0677b00a6979bf3ccb8d4659f0482262a77bb7bf517d9"},{"version":"e42eab119ff00b924d61c72e064e06c75698a5962be8b370e3934b8eb8befee5","signature":"462a34c5ce99bc7ad18d4e8aaccba3230918e0e1d7885c822e3f69466c08006e"},{"version":"7a2630d193c8df2c9077e98a6bfac049968b1e1a08dc2f1574e8b34999387f1f","signature":"462a34c5ce99bc7ad18d4e8aaccba3230918e0e1d7885c822e3f69466c08006e"},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ccdaa19852d25ecd84eec365c3bfa16e7859cadecf6e9ca6d0dbbbee439743f","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc2110f7decca6bfb9392e30421cfa1436479e4a6756e8fec6cbc22625d4f881","affectsGlobalScope":true,"impliedFormat":1},{"version":"096116f8fedc1765d5bd6ef360c257b4a9048e5415054b3bf3c41b07f8951b0b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5e01375c9e124a83b52ee4b3244ed1a4d214a6cfb54ac73e164a823a4a7860a","affectsGlobalScope":true,"impliedFormat":1},{"version":"f90ae2bbce1505e67f2f6502392e318f5714bae82d2d969185c4a6cecc8af2fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b58e207b93a8f1c88bbf2a95ddc686ac83962b13830fe8ad3f404ffc7051fb4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1fefabcb2b06736a66d2904074d56268753654805e829989a46a0161cd8412c5","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"c18a99f01eb788d849ad032b31cafd49de0b19e083fe775370834c5675d7df8e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5247874c2a23b9a62d178ae84f2db6a1d54e6c9a2e7e057e178cc5eea13757fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"156a859e21ef3244d13afeeba4e49760a6afa035c149dda52f0c45ea8903b338","impliedFormat":1},{"version":"10ec5e82144dfac6f04fa5d1d6c11763b3e4dbbac6d99101427219ab3e2ae887","impliedFormat":1},{"version":"615754924717c0b1e293e083b83503c0a872717ad5aa60ed7f1a699eb1b4ea5c","impliedFormat":1},{"version":"074de5b2fdead0165a2757e3aaef20f27a6347b1c36adea27d51456795b37682","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"4137ebf04166f3a325f056aa56101adc75e9dceb30404a1844eb8604d89770e2","impliedFormat":1},{"version":"ccab02f3920fc75c01174c47fcf67882a11daf16baf9e81701d0a94636e94556","impliedFormat":1},{"version":"3e11fce78ad8c0e1d1db4ba5f0652285509be3acdd519529bc8fcef85f7dafd9","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"9c32412007b5662fd34a8eb04292fb5314ec370d7016d1c2fb8aa193c807fe22","impliedFormat":1},{"version":"7fd1b31fd35876b0aa650811c25ec2c97a3c6387e5473eb18004bed86cdd76b6","impliedFormat":1},{"version":"4d327f7d72ad0918275cea3eee49a6a8dc8114ae1d5b7f3f5d0774de75f7439a","impliedFormat":1},{"version":"6ebe8ebb8659aaa9d1acbf3710d7dae3e923e97610238b9511c25dc39023a166","impliedFormat":1},{"version":"e85d7f8068f6a26710bff0cc8c0fc5e47f71089c3780fbede05857331d2ddec9","impliedFormat":1},{"version":"7befaf0e76b5671be1d47b77fcc65f2b0aad91cc26529df1904f4a7c46d216e9","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"5b03a034c72146b61573aab280f295b015b9168470f2df05f6080a2122f9b4df","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"8aee8b6d4f9f62cf3776cda1305fb18763e2aade7e13cea5bbe699112df85214","impliedFormat":1},{"version":"98498b101803bb3dde9f76a56e65c14b75db1cc8bec5f4db72be541570f74fc5","impliedFormat":1},{"version":"1cc2a09e1a61a5222d4174ab358a9f9de5e906afe79dbf7363d871a7edda3955","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"b64d4d1c5f877f9c666e98e833f0205edb9384acc46e98a1fef344f64d6aba44","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"12950411eeab8563b349cb7959543d92d8d02c289ed893d78499a19becb5a8cc","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"c9381908473a1c92cb8c516b184e75f4d226dad95c3a85a5af35f670064d9a2f","impliedFormat":1},{"version":"c3f5289820990ab66b70c7fb5b63cb674001009ff84b13de40619619a9c8175f","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3275d55fac10b799c9546804126239baf020d220136163f763b55a74e50e750","affectsGlobalScope":true,"impliedFormat":1},{"version":"fa68a0a3b7cb32c00e39ee3cd31f8f15b80cac97dce51b6ee7fc14a1e8deb30b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c36e755bced82df7fb6ce8169265d0a7bb046ab4e2cb6d0da0cb72b22033e89","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"7a93de4ff8a63bafe62ba86b89af1df0ccb5e40bb85b0c67d6bbcfdcf96bf3d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"90e85f9bc549dfe2b5749b45fe734144e96cd5d04b38eae244028794e142a77e","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0a5deeb610b2a50a6350bd23df6490036a1773a8a71d70f2f9549ab009e67ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"d2ae155afe8a01cc0ae612d99117cf8ef16692ba7c4366590156fdec1bcf2d8c","impliedFormat":1},{"version":"3f5e5d9be35913db9fea42a63f3df0b7e3c8703b97670a2125587b4dbbd56d7c","impliedFormat":1},{"version":"8caeb65fdc3bfe0d13f86f67324fcb2d858ed1c55f1f0cce892eb1acfb9f3239","impliedFormat":1},{"version":"57c23df0b5f7a8e26363a3849b0bc7763f6b241207157c8e40089d1df4116f35","affectsGlobalScope":true,"impliedFormat":1},{"version":"3b8bc0c17b54081b0878673989216229e575d67a10874e84566a21025a2461ee","impliedFormat":1},{"version":"5b0db5a58b73498792a29bfebc333438e61906fef75da898b410e24e52229e6f","impliedFormat":1},{"version":"dbe055b2b29a7bab2c1ca8f259436306adb43f469dca7e639a02cd3695d3f621","impliedFormat":1},{"version":"1678b04557dca52feab73cc67610918a7f5e25bfdba3e7fa081acd625d93106d","impliedFormat":1},{"version":"e3905f6902f0b69e5eefc230daa69fdd4ab707a973ec2d086d65af1b3ea47ef0","impliedFormat":1},{"version":"2ea729503db9793f2691162fec3dd1118cab62e96d025f8eeb376d43ec293395","impliedFormat":1},{"version":"9ec87fea42b92894b0f209931a880789d43c3397d09dd99c631ae40a2f7071d1","impliedFormat":1},{"version":"c68e88cdfadfb6c8ba5fc38e58a3a166b0beae77b1f05b7d921150a32a5ffb8d","impliedFormat":1},{"version":"2bc7aa4fba46df0bd495425a7c8201437a7d465f83854fac859df2d67f664df3","impliedFormat":1},{"version":"41d17e1ad9a002feb11c8cdd2777e5bbc0cdb1e3f595d237e4dded0b6949983b","impliedFormat":1},{"version":"07e4e61e946a9c15045539ecd5f5d2d02e7aab6fa82567826857e09cf0f37c2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c4714ccc29149efb8777a1da0b04b8d2258f5d13ddbf4cd3c3d361fb531ac86","impliedFormat":1},{"version":"3ff275f84f89f8a7c0543da838f9da9614201abc4ce74c533029825adfb4433d","impliedFormat":1},{"version":"0eb5d0cbf09de5d34542b977fd6a933bb2e0817bffe8e1a541b2f1ad1b9af1ff","impliedFormat":1},{"version":"f9713757bcdfa4d58b48c0fb249e752c94a3eee8bf4532b906094246ac49ef88","impliedFormat":1},{"version":"2c2bdaa1d8ead9f68628d6d9d250e46ee8e81aa4898b4769a36956ae15e060fe","impliedFormat":1},{"version":"c32c840c62d8bd7aeb3147aa6754cd2d922b990a6b6634530cb2ebdce5adc8e9","impliedFormat":1},{"version":"e1c1a0b4d1ead0de9eca52203aeb1f771f21e6238d6fcd15aa56ac2a02f1b7bf","impliedFormat":1},{"version":"82b91e4e42e6c41bc7fc1b6c2dc5eba6a2ba98375eb1f210e6ff6bba2d54177e","impliedFormat":1},{"version":"6fe28249ac0c7bc19a79aa9264baf00efbd080e868dbe1d3052033ad1c64f206","affectsGlobalScope":true,"impliedFormat":1},{"version":"cbed824fec91efefc7bbdcb8b43d1a531fdbebd0e2ef19481501ff365a93cb70","impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"d0716593b3f2b0451bcf0c24cfa86dec2235c325c89f201934248b7c742715fc","impliedFormat":1},{"version":"ec501101c2a96133a6c695f934c8f6642149cc728571b29cbb7b770984c1088e","impliedFormat":1},{"version":"b214ebcf76c51b115453f69729ee8aa7b7f8eccdae2a922b568a45c2d7ff52f7","impliedFormat":1},{"version":"429c9cdfa7d126255779efd7e6d9057ced2d69c81859bbab32073bad52e9ba76","impliedFormat":1},{"version":"2991bca2cc0f0628a278df2a2ccdb8d6cbcb700f3761abbed62bba137d5b1790","impliedFormat":1},{"version":"ce8653341224f8b45ff46d2a06f2cacb96f841f768a886c9d8dd8ec0878b11bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"230763250f20449fa7b3c9273e1967adb0023dc890d4be1553faca658ee65971","impliedFormat":1},{"version":"c3e9078b60cb329d1221f5878e88cecfa3e74460550e605a58fcfb41a66029ff","impliedFormat":1},{"version":"a74edb3bab7394a9dbde529d60632be590def2f5f01024dbd85441587fbfbbe0","impliedFormat":1},{"version":"0ea59f7d3e51440baa64f429253759b106cfcbaf51e474cae606e02265b37cf8","impliedFormat":1},{"version":"bc18a1991ba681f03e13285fa1d7b99b03b67ee671b7bc936254467177543890","impliedFormat":1},{"version":"00049ccc87f3f37726db03c01ca68fe74fd9c0109b68c29eb9923ebec2c76b13","impliedFormat":1},{"version":"fa94bbf532b7af8f394b95fa310980d6e20bd2d4c871c6a6cb9f70f03750a44b","impliedFormat":1},{"version":"68d3f35108e2608b1f2f28b36d19d7055f31c4465cc5692cbd06c716a9fe7973","impliedFormat":1},{"version":"a6d543044570fbeed13a7f9925a868081cd2b14ef59cdd9da6ae76d41cab03d3","affectsGlobalScope":true,"impliedFormat":1},{"version":"7fa2214bb0d64701bc6f9ce8cde2fd2ff8c571e0b23065fa04a8a5a6beb91511","impliedFormat":1},{"version":"f1c93e046fb3d9b7f8249629f4b63dc068dd839b824dd0aa39a5e68476dc9420","impliedFormat":1},{"version":"eab2f3179607acb3d44b2db2a76dd7d621c5039b145dc160a1ee733963f9d2f5","impliedFormat":1},{"version":"841983e39bd4cbb463be385e92fda11057cab368bf27100a801c492f1d86cbaa","impliedFormat":1},{"version":"6f5383b3df1cdf4ff1aa7fb0850f77042b5786b5e65ec9a9b6be56ebfe4d9036","impliedFormat":1},{"version":"62fc21ed9ccbd83bd1166de277a4b5daaa8d15b5fa614c75610d20f3b73fba87","impliedFormat":1},{"version":"e4156ddb25aa0e3b5303d372f26957b36778f0f6bbd4326359269873295e3058","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc1b433a84cae05ddc5672d4823170af78606ad21ecef60dbc4570190cbf1357","impliedFormat":1},{"version":"9d3821bc75c59577e52643324cec92fc2145642e8d17cf7ee07a3181f21d985d","impliedFormat":1},{"version":"7f78cfb2b343838612c192cb251746e3a7c62ac7675726a47e130d9b213f6580","impliedFormat":1},{"version":"201db9cf1687fab1adf5282fcba861f382b32303dc4f67c89d59655e78a25461","impliedFormat":1},{"version":"c77fb31bc17fd241d3922a9f88c59e3361cdf76d1328ba9412fc6bf7310b638d","impliedFormat":1},{"version":"0a20eaf2e4b1e3c1e1f87f7bccb0c936375b23b022baeea750519b7c9bc6ce83","impliedFormat":1},{"version":"b484ec11ba00e3a2235562a41898d55372ccabe607986c6fa4f4aba72093749f","impliedFormat":1},{"version":"a16b91b27bd6b706c687c88cbc8a7d4ee98e5ed6043026d6b84bda923c0aed67","impliedFormat":1},{"version":"694b812e0ed11285e8822cf8131e3ce7083a500b3b1d185fff9ed1089677bd0a","impliedFormat":1},{"version":"99ab6d0d660ce4d21efb52288a39fd35bb3f556980ec5463b1ae8f304a3bbc85","impliedFormat":1},{"version":"6eeded8c7e352be6e0efb83f4935ec752513c4d22043b52522b90849a49a3a11","impliedFormat":1},{"version":"6c1ad90050ffbb151cacc68e2d06ea1a26a945659391e32651f5d42b86fd7f2c","impliedFormat":1},{"version":"55cdbeebe76a1fa18bbd7e7bf73350a2173926bd3085bb050cf5a5397025ee4e","impliedFormat":1},{"version":"29f72ec1289ae3aeda78bf14b38086d3d803262ac13904b400422941a26a3636","affectsGlobalScope":true,"impliedFormat":1}],"root":[51,[72,74],108,109,115,130,154,160,[178,195],[198,204],206,207,[210,212],[216,218],220,221,[262,266],301,[303,312],320,[322,328],[335,386],[388,429]],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitOnError":true,"outDir":"./","rootDir":"..","skipLibCheck":true,"sourceMap":true,"strict":true,"target":5,"useDefineForClassFields":false},"referencedMap":[[229,1],[231,2],[55,1],[61,1],[62,3],[65,4],[63,4],[67,4],[70,5],[69,4],[68,4],[66,4],[64,6],[56,1],[57,7],[147,8],[145,9],[146,10],[148,11],[149,12],[254,13],[252,14],[253,15],[249,16],[251,17],[250,18],[136,19],[135,20],[242,21],[241,22],[240,23],[138,24],[139,25],[76,26],[75,20],[137,27],[144,28],[143,29],[142,1],[140,30],[141,31],[313,27],[176,32],[177,32],[329,32],[387,32],[321,32],[164,33],[165,34],[163,35],[166,36],[167,37],[168,38],[169,39],[170,40],[171,41],[172,42],[173,43],[174,44],[175,45],[553,1],[492,46],[493,46],[494,47],[432,48],[495,49],[496,50],[497,51],[430,1],[498,52],[499,53],[500,54],[501,55],[502,56],[503,57],[504,57],[505,58],[506,59],[507,60],[508,61],[433,1],[431,1],[509,62],[510,63],[511,64],[552,65],[512,66],[513,67],[514,66],[515,68],[516,69],[518,70],[519,71],[520,71],[521,71],[522,72],[523,73],[524,74],[525,75],[526,76],[527,77],[528,77],[529,78],[530,1],[531,1],[532,79],[533,80],[534,79],[535,81],[536,82],[537,83],[538,84],[539,85],[540,86],[541,87],[542,88],[543,89],[544,90],[545,91],[546,92],[547,93],[548,94],[549,95],[434,66],[435,1],[436,96],[437,97],[438,1],[439,98],[440,1],[483,99],[484,100],[485,101],[486,101],[487,102],[488,1],[489,49],[490,103],[491,100],[550,104],[551,105],[53,1],[517,1],[114,106],[113,107],[110,1],[111,108],[112,109],[269,110],[267,1],[268,1],[58,111],[213,112],[52,113],[247,112],[161,113],[214,114],[59,1],[54,115],[71,116],[248,117],[162,118],[215,119],[60,120],[277,121],[276,1],[230,1],[50,122],[49,1],[47,1],[48,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[19,1],[20,1],[4,1],[21,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[36,1],[33,1],[34,1],[35,1],[37,1],[7,1],[38,1],[43,1],[44,1],[39,1],[40,1],[41,1],[42,1],[1,1],[45,1],[46,1],[459,123],[471,124],[456,125],[472,126],[481,127],[447,128],[448,129],[446,130],[480,131],[475,132],[479,133],[450,134],[468,135],[449,136],[478,137],[444,138],[445,132],[451,139],[452,1],[458,140],[455,139],[442,141],[482,142],[473,143],[462,144],[461,139],[463,145],[466,146],[460,147],[464,148],[476,131],[453,149],[454,150],[467,151],[443,126],[470,152],[469,139],[457,150],[465,153],[474,1],[441,1],[477,154],[302,155],[197,156],[196,1],[184,157],[390,158],[396,159],[395,157],[391,157],[392,157],[394,160],[393,157],[72,157],[51,155],[73,161],[154,162],[74,161],[328,163],[192,164],[193,164],[194,165],[405,157],[160,166],[178,167],[185,168],[108,169],[324,170],[323,171],[326,172],[179,173],[182,173],[180,173],[181,174],[183,174],[399,175],[187,161],[186,161],[327,176],[188,177],[189,177],[406,177],[190,178],[325,161],[342,179],[343,180],[336,167],[340,181],[341,182],[195,161],[335,183],[337,184],[338,184],[339,185],[306,186],[199,187],[200,187],[201,187],[202,187],[203,187],[204,187],[206,188],[301,189],[207,187],[210,190],[211,191],[212,187],[304,192],[216,193],[217,187],[218,187],[220,194],[221,187],[303,195],[263,196],[265,187],[264,187],[198,197],[262,198],[266,199],[305,200],[320,201],[307,202],[308,203],[309,204],[310,204],[311,204],[312,205],[401,206],[322,167],[400,207],[403,208],[402,209],[371,155],[375,210],[372,155],[374,211],[373,155],[376,212],[377,213],[378,214],[379,215],[381,216],[380,217],[361,218],[370,219],[362,220],[363,220],[364,220],[365,220],[366,220],[369,221],[368,220],[367,220],[389,222],[386,223],[407,224],[385,225],[109,226],[408,227],[384,228],[383,229],[115,230],[191,231],[130,232],[360,233],[344,234],[345,234],[346,234],[347,234],[348,234],[349,235],[350,234],[351,234],[353,236],[354,237],[355,238],[356,239],[357,234],[358,240],[352,241],[359,242],[382,243],[404,244],[398,245],[388,246],[397,155],[409,247],[410,248],[411,249],[412,250],[413,250],[414,247],[415,247],[416,249],[417,249],[418,249],[419,249],[420,249],[421,251],[422,252],[423,251],[424,251],[425,253],[426,247],[427,247],[428,247],[429,247],[330,1],[331,254],[155,255],[159,256],[156,257],[158,20],[157,20],[261,258],[222,259],[208,259],[77,27],[226,259],[225,260],[224,259],[236,261],[228,262],[232,263],[233,259],[243,264],[256,261],[245,259],[78,261],[205,261],[234,265],[244,261],[246,259],[239,259],[258,261],[259,261],[255,266],[260,261],[227,259],[223,259],[257,261],[219,259],[238,267],[237,267],[235,261],[209,268],[297,269],[298,121],[290,20],[299,20],[300,270],[288,271],[293,272],[294,272],[291,272],[292,272],[296,272],[295,272],[289,273],[319,274],[318,20],[316,1],[317,20],[315,275],[314,1],[153,276],[152,277],[151,278],[132,279],[133,280],[134,281],[131,20],[150,282],[334,283],[332,20],[333,284],[279,1],[281,1],[282,1],[283,285],[280,1],[284,27],[286,1],[287,286],[285,1],[278,287],[270,1],[275,288],[273,289],[272,290],[274,1],[271,1],[123,27],[121,27],[119,1],[120,27],[122,27],[124,27],[116,27],[129,291],[127,27],[128,27],[125,27],[117,27],[118,27],[126,27],[96,1],[80,1],[94,1],[88,1],[82,1],[100,1],[103,1],[89,1],[99,1],[81,1],[95,1],[85,1],[90,1],[107,292],[97,1],[102,1],[101,1],[83,1],[86,1],[87,1],[106,293],[105,27],[104,1],[79,1],[98,1],[84,1],[93,294],[91,295],[92,296]],"version":"5.9.3"}
|
|
1
|
+
{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/typescript/lib/lib.esnext.float16.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/tslib/tslib.d.ts","../../../node_modules/tslib/modules/index.d.ts","../src/const.ts","../../../node_modules/lit-html/development/directive.d.ts","../../../node_modules/@types/trusted-types/lib/index.d.ts","../../../node_modules/lit-html/development/lit-html.d.ts","../../../node_modules/@lit/reactive-element/development/css-tag.d.ts","../../../node_modules/@lit/reactive-element/development/reactive-controller.d.ts","../../../node_modules/@lit/reactive-element/development/reactive-element.d.ts","../../../node_modules/lit-element/development/lit-element.d.ts","../../../node_modules/lit-html/development/is-server.d.ts","../../../node_modules/lit/development/index.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/base.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/custom-element.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/property.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/state.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/event-options.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query-all.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query-async.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query-assigned-nodes.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query-assigned-elements.d.ts","../../../node_modules/lit/development/decorators.d.ts","../src/configure/zero-config.ts","../src/data-card/data-card-field.ts","../src/data-card/data-card-gutter.ts","../../../node_modules/@material/web/icon/internal/icon.d.ts","../../../node_modules/@material/web/icon/icon.d.ts","../../input/dist/src/ox-form-field.d.ts","../../input/dist/src/ox-input-file.d.ts","../../utils/dist/src/sleep.d.ts","../../utils/dist/src/async-lock.d.ts","../../utils/dist/src/file-drop-helper.d.ts","../../utils/dist/src/context-path.d.ts","../../utils/dist/src/os.d.ts","../../utils/dist/src/swipe-listener.d.ts","../../utils/dist/src/fullscreen.d.ts","../../utils/dist/src/parse-jwt.d.ts","../../utils/dist/src/password-pattern.d.ts","../../utils/dist/src/closest-element.d.ts","../../utils/dist/src/detect-overflow.d.ts","../../utils/dist/src/has-overflow.d.ts","../../utils/dist/src/timecapsule/snapshot-taker.d.ts","../../utils/dist/src/timecapsule/timecapsule.d.ts","../../utils/dist/src/timecapsule/index.d.ts","../../utils/dist/src/clipboard.d.ts","../../utils/dist/src/format.d.ts","../../utils/dist/src/adjust-list-param.d.ts","../../utils/dist/src/is-unvalued.d.ts","../../utils/dist/src/stringify-bignum.d.ts","../../utils/dist/src/encode-form-params.d.ts","../../utils/dist/src/cookie.d.ts","../../utils/dist/src/number-parser.d.ts","../../utils/dist/src/longpressable.d.ts","../../utils/dist/src/decode-html.d.ts","../../utils/dist/src/script-loader.d.ts","../../utils/dist/src/reactive-controllers/tooltip-reactive-controller.d.ts","../../utils/dist/src/reactive-controllers/index.d.ts","../../utils/dist/src/index.d.ts","../src/data-grid/data-grid-field.ts","../src/record-view/event-handlers/record-view-body-click-handler.ts","../../../node_modules/i18next/typescript/helpers.d.ts","../../../node_modules/i18next/typescript/options.d.ts","../../../node_modules/i18next/typescript/t.d.ts","../../../node_modules/i18next/index.d.ts","../../../node_modules/i18next/index.d.mts","../src/record-view/record-view-body.ts","../../styles/dist/src/headroom-styles.d.ts","../../styles/dist/src/scrollbar-styles.d.ts","../../styles/dist/src/spinner-styles.d.ts","../../styles/dist/src/common-button-styles.d.ts","../../styles/dist/src/common-grist-styles.d.ts","../../styles/dist/src/button-container-styles.d.ts","../../styles/dist/src/common-header-styles.d.ts","../../styles/dist/src/box-padding-editor-styles.d.ts","../../styles/dist/src/gradient-direction-styles.d.ts","../../styles/dist/src/property-grid-styles.d.ts","../../styles/dist/src/table-event-styles.d.ts","../../styles/dist/src/inspector-styles.d.ts","../../styles/dist/src/line-styles.d.ts","../../styles/dist/src/index.d.ts","../src/record-view/record-view.ts","../../popup/dist/src/ox-popup.d.ts","../../popup/dist/src/ox-popup-list.d.ts","../../popup/dist/src/ox-popup-menu.d.ts","../../popup/dist/src/ox-popup-menuitem.d.ts","../../../node_modules/@material/web/elevation/internal/elevation.d.ts","../../../node_modules/@material/web/elevation/elevation.d.ts","../../../node_modules/@material/web/internal/controller/attachable-controller.d.ts","../../../node_modules/@material/web/focus/internal/focus-ring.d.ts","../../../node_modules/@material/web/focus/md-focus-ring.d.ts","../../../node_modules/@material/web/ripple/internal/ripple.d.ts","../../../node_modules/@material/web/ripple/ripple.d.ts","../../../node_modules/@material/web/labs/behaviors/mixin.d.ts","../../../node_modules/@material/web/labs/behaviors/element-internals.d.ts","../../../node_modules/@material/web/internal/controller/form-submitter.d.ts","../../../node_modules/@material/web/button/internal/button.d.ts","../../../node_modules/@material/web/button/internal/filled-button.d.ts","../../../node_modules/@material/web/button/filled-button.d.ts","../../../node_modules/@material/web/button/internal/outlined-button.d.ts","../../../node_modules/@material/web/button/outlined-button.d.ts","../../popup/dist/src/ox-prompt.d.ts","../../popup/dist/src/ox-floating-overlay.d.ts","../../popup/dist/src/open-popup.d.ts","../../popup/dist/src/index.d.ts","../src/data-card/data-card-gutter-menu.ts","../../i18n/dist/src/config.d.ts","../../i18n/dist/src/localize.d.ts","../../i18n/dist/src/ox-i18n.d.ts","../../i18n/dist/src/ox-i18n-selector.d.ts","../../i18n/dist/src/index.d.ts","../src/data-grid/data-grid-accum-field.ts","../../../node_modules/lit-html/development/directives/if-defined.d.ts","../../../node_modules/lit/development/directives/if-defined.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/lodash-es/debounce.d.ts","../../../node_modules/@types/lodash-es/isempty.d.ts","../src/data-grid/data-grid-body-style.ts","../src/data-grid/event-handlers/data-grid-body-click-handler.ts","../src/data-grid/event-handlers/data-grid-body-dblclick-handler.ts","../src/data-grid/event-handlers/data-grid-body-focus-change-handler.ts","../src/data-grid/event-handlers/data-grid-body-contextmenu-handler.ts","../src/data-grid/event-handlers/data-grid-body-keydown-handler.ts","../src/accumulator/accumulator.ts","../src/data-grid/data-grid-body.ts","../src/data-list/data-list-gutter.ts","../src/data-list/data-list-field.ts","../src/data-list/event-handlers/record-partial-click-handler.ts","../src/data-list/event-handlers/record-partial-dblclick-handler.ts","../src/data-list/record-partial.ts","../src/record-view/record-view-handler.ts","../src/data-card/event-handlers/record-card-click-handler.ts","../src/data-card/event-handlers/record-card-dblclick-handler.ts","../src/data-card/record-card.ts","../src/data-report/data-report-field.ts","../../../packages/time-calculator/dist/src/registry.d.ts","../../../packages/time-calculator/dist/src/index.d.ts","../src/editors/ox-grist-editor.ts","../src/editors/ox-grist-editor-checkbox.ts","../src/editors/ox-grist-editor-color.ts","../src/editors/ox-grist-editor-date.ts","../src/editors/ox-grist-editor-datetime.ts","../src/editors/ox-grist-editor-email.ts","../src/editors/ox-grist-editor-file.ts","../../input/dist/src/ox-input-image.d.ts","../src/editors/ox-grist-editor-image.ts","../src/editors/ox-grist-editor-month.ts","../../input/dist/src/ox-checkbox.d.ts","../../input/dist/src/ox-select.d.ts","../src/editors/ox-grist-editor-multiple-select.ts","../src/editors/ox-grist-editor-number.ts","../src/editors/ox-grist-editor-password.ts","../../../node_modules/lit-html/development/async-directive.d.ts","../../../node_modules/lit-html/development/directives/until.d.ts","../../../node_modules/lit/development/directives/until.d.ts","../src/editors/ox-grist-editor-select.ts","../src/editors/ox-grist-editor-tel.ts","../src/editors/ox-grist-editor-text.ts","../../input/dist/src/ox-input-textarea.d.ts","../src/editors/ox-grist-editor-textarea.ts","../src/editors/ox-grist-editor-time.ts","../../input/dist/src/ox-buttons-radio.d.ts","../../input/dist/src/ox-input-switch.d.ts","../../input/dist/src/ox-input-angle.d.ts","../../input/dist/src/ox-input-3dish.d.ts","../../input/dist/src/ox-input-3axis.d.ts","../../input/dist/src/ox-input-stack.d.ts","../../input/dist/src/ox-input-barcode.d.ts","../../../node_modules/@codemirror/state/dist/index.d.ts","../../../node_modules/style-mod/src/style-mod.d.ts","../../../node_modules/@codemirror/view/dist/index.d.ts","../../input/dist/src/ox-input-code.d.ts","../../input/dist/src/ox-input-color.d.ts","../../input/dist/src/ox-input-multiple-colors.d.ts","../../input/dist/src/ox-input-video.d.ts","../../input/dist/src/ox-input-audio.d.ts","../../input/dist/src/ox-input-value-ranges.d.ts","../../input/dist/src/ox-input-value-map.d.ts","../../input/dist/src/ox-input-scene-component-id.d.ts","../../../node_modules/@material/web/fab/internal/shared.d.ts","../../../node_modules/@material/web/fab/internal/fab.d.ts","../../../node_modules/@material/web/fab/fab.d.ts","../../input/dist/src/ox-input-crontab.d.ts","../../input/dist/src/ox-input-partition-keys.d.ts","../../input/dist/src/ox-input-duration.d.ts","../../input/dist/src/ox-input-quantifier.d.ts","../../../node_modules/lit-html/development/directives/class-map.d.ts","../../../node_modules/lit/development/directives/class-map.d.ts","../../../node_modules/@material/web/chips/internal/chip.d.ts","../../../node_modules/@material/web/chips/internal/multi-action-chip.d.ts","../../../node_modules/@material/web/chips/internal/filter-chip.d.ts","../../../node_modules/@material/web/chips/filter-chip.d.ts","../../../node_modules/@material/web/chips/internal/chip-set.d.ts","../../../node_modules/@material/web/chips/chip-set.d.ts","../../input/dist/src/ox-input-select-buttons.d.ts","../../input/dist/src/ox-input-direction.d.ts","../../input/dist/src/ox-input-table-column-config.d.ts","../../input/dist/src/ox-input-search.d.ts","../../input/dist/src/ox-input-secret.d.ts","../../input/dist/src/ox-input-signature.d.ts","../../input/dist/src/index.d.ts","../src/editors/ox-input-tree.ts","../src/editors/ox-grist-editor-tree.ts","../src/editors/ox-grist-editor-week.ts","../src/editors/ox-grist-editor-varname.ts","../src/editors/ox-popup-code-input.ts","../../../node_modules/json5/lib/parse.d.ts","../../../node_modules/json5/lib/stringify.d.ts","../../../node_modules/json5/lib/index.d.ts","../../shell/dist/src/types/domain.d.ts","../../shell/dist/src/types/user.d.ts","../../shell/dist/src/types/role.d.ts","../../shell/dist/src/types/privilege.d.ts","../../shell/dist/src/types/types.d.ts","../../shell/dist/src/types/index.d.ts","../../../node_modules/redux/index.d.ts","../../../node_modules/pwa-helpers/lazy-reducer-enhancer.d.ts","../../shell/dist/src/store.d.ts","../../shell/dist/src/actions/app.d.ts","../../shell/dist/src/actions/route.d.ts","../../shell/dist/src/actions/busy.d.ts","../../shell/dist/src/actions/const.d.ts","../../shell/dist/src/actions/index.d.ts","../../shell/dist/src/app/pages/page-view.d.ts","../../shell/dist/src/object-store.d.ts","../../shell/dist/src/custom-alert.d.ts","../../shell/dist/src/index.d.ts","../../layout/dist/src/initializer.d.ts","../../layout/dist/src/layouts/ox-snack-bar.d.ts","../../layout/dist/src/components/ox-resize-splitter.d.ts","../../layout/dist/src/layouts/ox-header-bar.d.ts","../../layout/dist/src/layouts/ox-nav-bar.d.ts","../../layout/dist/src/layouts/ox-aside-bar.d.ts","../../layout/dist/src/layouts/ox-footer-bar.d.ts","../../layout/dist/src/layouts/ox-page-header-bar.d.ts","../../layout/dist/src/layouts/ox-page-footer-bar.d.ts","../../layout/dist/src/actions/layout.d.ts","../../layout/dist/src/actions/snackbar.d.ts","../../layout/dist/src/components/ox-split-pane.d.ts","../../layout/dist/src/index.d.ts","../src/editors/ox-grist-editor-json5.ts","../../../packages/moment-timezone-es/dist/moment-timezone-es.js","../src/editors/ox-grist-editor-timezone.ts","../src/editors/ox-grist-editor-secret.ts","../src/editors/registry.ts","../src/editors/index.ts","../src/filters/filter-checkbox.ts","../src/filters/filter-input-barcode.ts","../src/filters/filter-input.ts","../src/filters/filter-range-date.ts","../src/filters/filter-range-number.ts","../src/filters/filter-select-buttons.ts","../../../node_modules/@material/web/typography/md-typescale-styles.d.ts","../../p13n/dist/src/types.d.ts","../../p13n/dist/src/p13n-mixin.d.ts","../../p13n/dist/src/ox-user-preferences-context.d.ts","../../p13n/dist/src/ox-user-preferences-provider.d.ts","../../p13n/dist/src/ox-user-preferences-consumer.d.ts","../../p13n/dist/src/index.d.ts","../src/empty-note.ts","../../../node_modules/@types/lodash-es/throttle.d.ts","../src/filters/filter-styles.ts","../src/data-grid/data-grid-header.ts","../src/data-grid/data-grid-footer.ts","../src/data-manipulator.ts","../src/data-grid/data-grid.ts","../src/data-list/data-list.ts","../src/data-card/data-card.ts","../../../node_modules/@types/lodash-es/isequal.d.ts","../../headroom/dist/src/headroom.d.ts","../../headroom/dist/src/index.d.ts","../../pull-to-refresh/dist/src/pull-to-refresh-control.d.ts","../../pull-to-refresh/dist/src/pull-to-refresh.d.ts","../../pull-to-refresh/dist/src/index.d.ts","../src/data-report/data-report-header.ts","../src/data-report/data-report-body-style.ts","../src/data-report/event-handlers/data-report-body-click-handler.ts","../src/data-report/event-handlers/data-report-body-dblclick-handler.ts","../src/data-report/event-handlers/data-report-body-keydown-handler.ts","../src/data-report/data-report-body.ts","../src/data-report/data-report-component.ts","../src/data-provider.ts","../src/data-report.ts","../src/renderers/ox-grist-renderer-boolean.ts","../src/renderers/ox-grist-renderer-color.ts","../src/renderers/ox-grist-renderer-date.ts","../src/renderers/ox-grist-renderer-file.ts","../src/renderers/ox-grist-renderer-image.ts","../src/renderers/ox-grist-renderer-json5.ts","../src/renderers/ox-grist-renderer-link.ts","../src/renderers/ox-grist-renderer-password.ts","../src/renderers/ox-grist-renderer.ts","../src/renderers/ox-grist-renderer-progress.ts","../src/renderers/ox-grist-renderer-secret.ts","../src/renderers/ox-grist-renderer-select.ts","../src/renderers/ox-grist-renderer-text.ts","../src/renderers/ox-grist-renderer-textarea.ts","../src/renderers/ox-grist-renderer-tree.ts","../src/renderers/registry.ts","../src/renderers/index.ts","../src/handlers/contextmenu-tree-mutation.ts","../src/handlers/move-down.ts","../src/handlers/move-up.ts","../src/handlers/record-copy.ts","../src/handlers/record-delete.ts","../src/handlers/record-view-handler.ts","../src/handlers/select-row.ts","../src/handlers/select-row-toggle.ts","../src/handlers/registry.ts","../src/handlers/index.ts","../src/formatters/date-formatter.ts","../src/formatters/number-formatter.ts","../src/formatters/text-formatter.ts","../src/formatters/registry.ts","../src/formatters/index.ts","../src/gutters/gutter-button.ts","../src/gutters/gutter-dirty.ts","../src/gutters/gutter-row-selector.ts","../src/gutters/gutter-sequence.ts","../src/gutters/registry.ts","../src/gutters/index.ts","../src/sorters/sorters-control.ts","../src/record-view/ox-record-creator.ts","../src/record-view/index.ts","../src/personalizer/ox-grist-personalizer.ts","../src/personalizer/index.ts","../../../node_modules/@types/lodash-es/pickby.d.ts","../src/utils/list-param.ts","../src/index.ts","../src/configure/column-builder.ts","../src/configure/imex-option-builder.ts","../src/configure/list-option-builder.ts","../src/configure/tree-option-builder.ts","../src/configure/rows-option-builder.ts","../src/configure/filters-option-builder.ts","../src/configure/config-builder.ts","../src/utils/supports-passive.ts","../src/utils/index.ts","../src/data-grist.ts","../src/filters/filters-form.ts","../src/filters/filter-select.ts","../src/filters/registry.ts","../src/filters/index.ts","../src/types.ts","../src/data-consumer.ts","../src/data-list/event-handlers/record-partial-long-press-handler.ts","../src/personalizer/ox-grist-filter-personalizer.ts","../src/record-view/event-handlers/record-view-body-keydown-handler.ts","../stories/accumulator-format.stories.ts","../stories/append-position.stories.ts","../stories/barcode-input-filter.stories.ts","../stories/bounded-select-filters.stories.ts","../stories/bounded-select-record.stories.ts","../stories/click-event-custom.stories.ts","../stories/click-event.stories.ts","../stories/creatable-only-column.stories.ts","../stories/default-filters.stories.ts","../stories/dynamic-editable.stories.ts","../stories/empty-sorters.stories.ts","../stories/explicit-fetch.stories.ts","../stories/fixed-column.stories.ts","../stories/grid-setting.stories.ts","../stories/grist-modes.stories.ts","../stories/group-header.stories.ts","../stories/record-view.stories.ts","../stories/secret.stories.ts","../stories/textarea.stories.ts","../stories/tree-column-with-checkbox.stories.ts","../stories/tree-column.stories.ts","../../../node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/@types/node/web-globals/blob.d.ts","../../../node_modules/@types/node/web-globals/console.d.ts","../../../node_modules/@types/node/web-globals/crypto.d.ts","../../../node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/@types/node/web-globals/encoding.d.ts","../../../node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/undici-types/utility.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client-stats.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/round-robin-pool.d.ts","../../../node_modules/undici-types/h2c-client.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-call-history.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/snapshot-agent.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/undici-types/retry-handler.d.ts","../../../node_modules/undici-types/retry-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/cache-interceptor.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/util.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/eventsource.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/index.d.ts","../../../node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/@types/node/web-globals/importmeta.d.ts","../../../node_modules/@types/node/web-globals/messaging.d.ts","../../../node_modules/@types/node/web-globals/navigator.d.ts","../../../node_modules/@types/node/web-globals/performance.d.ts","../../../node_modules/@types/node/web-globals/storage.d.ts","../../../node_modules/@types/node/web-globals/streams.d.ts","../../../node_modules/@types/node/web-globals/timers.d.ts","../../../node_modules/@types/node/web-globals/url.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/inspector.generated.d.ts","../../../node_modules/@types/node/inspector/promises.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/path/posix.d.ts","../../../node_modules/@types/node/path/win32.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/quic.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/sea.d.ts","../../../node_modules/@types/node/sqlite.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/test/reporters.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/util/types.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/mocha/index.d.ts"],"fileIdsList":[[432,495,503,507,510,512,513,514,527],[229,230,432,495,503,507,510,512,513,514,527],[61,432,495,503,507,510,512,513,514,527],[57,61,432,495,503,507,510,512,513,514,527],[57,61,69,432,495,503,507,510,512,513,514,527],[63,432,495,503,507,510,512,513,514,527],[55,56,432,495,503,507,510,512,513,514,527],[60,146,432,495,503,507,510,512,513,514,527],[54,60,139,141,142,143,144,432,495,503,507,510,512,513,514,527],[54,136,145,432,495,503,507,510,512,513,514,527],[54,145,432,495,503,507,510,512,513,514,527],[60,148,432,495,503,507,510,512,513,514,527],[60,253,432,495,503,507,510,512,513,514,527],[60,251,432,495,503,507,510,512,513,514,527],[54,60,249,432,495,503,507,510,512,513,514,527],[60,139,141,142,248,432,495,503,507,510,512,513,514,527],[54,60,136,250,432,495,503,507,510,512,513,514,527],[54,249,432,495,503,507,510,512,513,514,527],[60,135,432,495,503,507,510,512,513,514,527],[54,60,432,495,503,507,510,512,513,514,527],[60,240,241,432,495,503,507,510,512,513,514,527],[240,432,495,503,507,510,512,513,514,527],[54,60,136,139,141,142,432,495,503,507,510,512,513,514,527],[60,137,432,495,503,507,510,512,513,514,527],[60,138,432,495,503,507,510,512,513,514,527],[60,75,432,495,503,507,510,512,513,514,527],[60,432,495,503,507,510,512,513,514,527],[60,143,432,495,503,507,510,512,513,514,527],[60,142,432,495,503,507,510,512,513,514,527],[54,60,137,432,495,503,507,510,512,513,514,527],[60,140,432,495,503,507,510,512,513,514,527],[175,432,495,503,507,510,512,513,514,527],[163,165,166,167,168,169,170,171,172,173,174,175,432,495,503,507,510,512,513,514,527],[163,164,166,167,168,169,170,171,172,173,174,175,432,495,503,507,510,512,513,514,527],[164,165,166,167,168,169,170,171,172,173,174,175,432,495,503,507,510,512,513,514,527],[163,164,165,167,168,169,170,171,172,173,174,175,432,495,503,507,510,512,513,514,527],[163,164,165,166,168,169,170,171,172,173,174,175,432,495,503,507,510,512,513,514,527],[163,164,165,166,167,169,170,171,172,173,174,175,432,495,503,507,510,512,513,514,527],[163,164,165,166,167,168,170,171,172,173,174,175,432,495,503,507,510,512,513,514,527],[163,164,165,166,167,168,169,171,172,173,174,175,432,495,503,507,510,512,513,514,527],[163,164,165,166,167,168,169,170,172,173,174,175,432,495,503,507,510,512,513,514,527],[163,164,165,166,167,168,169,170,171,173,174,175,432,495,503,507,510,512,513,514,527],[163,164,165,166,167,168,169,170,171,172,174,175,432,495,503,507,510,512,513,514,527],[163,164,165,166,167,168,169,170,171,172,173,175,432,495,503,507,510,512,513,514,527],[163,164,165,166,167,168,169,170,171,172,173,174,432,495,503,507,510,512,513,514,527],[432,492,493,495,503,507,510,512,513,514,527],[432,494,495,503,507,510,512,513,514,527],[495,503,507,510,512,513,514,527],[432,495,503,507,510,512,513,514,527,535],[432,495,496,501,503,506,507,510,512,513,514,516,527,532,544],[432,495,496,497,503,506,507,510,512,513,514,527],[432,495,498,503,507,510,512,513,514,527,545],[432,495,499,500,503,507,510,512,513,514,518,527],[432,495,500,503,507,510,512,513,514,527,532,541],[432,495,501,503,506,507,510,512,513,514,516,527],[432,494,495,502,503,507,510,512,513,514,527],[432,495,503,504,507,510,512,513,514,527],[432,495,503,505,506,507,510,512,513,514,527],[432,494,495,503,506,507,510,512,513,514,527],[432,495,503,506,507,508,510,512,513,514,527,532,544],[432,495,503,506,507,508,510,512,513,514,527,532,535],[432,482,495,503,506,507,509,510,512,513,514,516,527,532,544],[432,495,503,506,507,509,510,512,513,514,516,527,532,541,544],[432,495,503,507,509,510,511,512,513,514,527,532,541,544],[430,431,432,433,434,435,436,437,438,439,440,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,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],[432,495,503,506,507,510,512,513,514,527],[432,495,503,507,510,512,514,527],[432,495,503,507,510,512,513,514,515,527,544],[432,495,503,506,507,510,512,513,514,516,527,532],[432,495,503,507,510,512,513,514,518,527],[432,495,503,507,510,512,513,514,519,527],[432,495,503,506,507,510,512,513,514,522,527],[432,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,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],[432,495,503,507,510,512,513,514,524,527],[432,495,503,507,510,512,513,514,525,527],[432,495,500,503,507,510,512,513,514,516,527,535],[432,495,503,506,507,510,512,513,514,527,528],[432,495,503,507,510,512,513,514,527,529,545,548],[432,495,503,506,507,510,512,513,514,527,532,534,535],[432,495,503,507,510,512,513,514,527,533,535],[432,495,503,507,510,512,513,514,527,535,545],[432,495,503,507,510,512,513,514,527,536],[432,492,495,503,507,510,512,513,514,527,532,538,544],[432,495,503,507,510,512,513,514,527,532,537],[432,495,503,506,507,510,512,513,514,527,539,540],[432,495,503,507,510,512,513,514,527,539,540],[432,495,500,503,507,510,512,513,514,516,527,532,541],[432,495,503,507,510,512,513,514,527,542],[432,495,503,507,510,512,513,514,516,527,543],[432,495,503,507,509,510,512,513,514,525,527,544],[432,495,503,507,510,512,513,514,527,545,546],[432,495,500,503,507,510,512,513,514,527,546],[432,495,503,507,510,512,513,514,527,532,547],[432,495,503,507,510,512,513,514,515,527,548],[432,495,503,507,510,512,513,514,527,549],[432,495,498,503,507,510,512,513,514,527],[432,495,500,503,507,510,512,513,514,527],[432,495,503,507,510,512,513,514,527,545],[432,482,495,503,507,510,512,513,514,527],[432,495,503,507,510,512,513,514,527,544],[432,495,503,507,510,512,513,514,527,550],[432,495,503,507,510,512,513,514,522,527],[432,495,503,507,510,512,513,514,527,540],[432,482,495,503,506,507,508,510,512,513,514,522,527,532,535,544,547,548,550],[432,495,503,507,510,512,513,514,527,532,551],[110,111,112,113,432,495,503,507,510,512,513,514,527],[110,111,112,432,495,503,507,510,512,513,514,527],[110,432,495,503,507,510,512,513,514,527],[110,111,432,495,503,507,510,512,513,514,527],[267,268,432,495,503,507,510,512,513,514,527],[54,57,432,495,503,507,510,512,513,514,527],[52,54,432,495,503,507,510,512,513,514,527],[54,432,495,503,507,510,512,513,514,527],[54,213,432,495,503,507,510,512,513,514,527],[52,53,432,495,503,507,510,512,513,514,527],[62,63,64,65,66,67,68,69,70,432,495,503,507,510,512,513,514,527],[247,432,495,503,507,510,512,513,514,527],[161,432,495,503,507,510,512,513,514,527],[214,432,495,503,507,510,512,513,514,527],[54,57,58,59,432,495,503,507,510,512,513,514,527],[276,432,495,503,507,510,512,513,514,527],[49,432,495,503,507,510,512,513,514,527],[432,447,450,453,454,495,503,507,510,512,513,514,527,544],[432,450,495,503,507,510,512,513,514,527,532,544],[432,450,454,495,503,507,510,512,513,514,527,544],[432,495,503,507,510,512,513,514,527,532],[432,444,495,503,507,510,512,513,514,527],[432,448,495,503,507,510,512,513,514,527],[432,446,447,450,495,503,507,510,512,513,514,527,544],[432,495,503,507,510,512,513,514,516,527,541],[432,495,503,507,510,512,513,514,527,552],[432,444,495,503,507,510,512,513,514,527,552],[432,446,450,495,503,507,510,512,513,514,516,527,544],[432,441,442,443,445,449,495,503,506,507,510,512,513,514,527,532,544],[432,450,459,467,495,503,507,510,512,513,514,527],[432,442,448,495,503,507,510,512,513,514,527],[432,450,476,477,495,503,507,510,512,513,514,527],[432,442,445,450,495,503,507,510,512,513,514,527,535,544,552],[432,450,495,503,507,510,512,513,514,527],[432,446,450,495,503,507,510,512,513,514,527,544],[432,441,495,503,507,510,512,513,514,527],[432,444,445,446,448,449,450,451,452,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,477,478,479,480,481,495,503,507,510,512,513,514,527],[432,450,469,472,495,503,507,510,512,513,514,527],[432,450,459,460,461,495,503,507,510,512,513,514,527],[432,448,450,460,462,495,503,507,510,512,513,514,527],[432,449,495,503,507,510,512,513,514,527],[432,442,444,450,495,503,507,510,512,513,514,527],[432,450,454,460,462,495,503,507,510,512,513,514,527],[432,454,495,503,507,510,512,513,514,527],[432,448,450,453,495,503,507,510,512,513,514,527,544],[432,442,446,450,459,495,503,507,510,512,513,514,527],[432,450,469,495,503,507,510,512,513,514,527],[432,462,495,503,507,510,512,513,514,527],[432,444,450,476,495,503,507,510,512,513,514,527,535,550,552],[50,432,495,503,507,510,512,513,514,527],[196,432,495,503,507,510,512,513,514,527],[50,404,432,495,503,507,510,512,513,514,527],[50,51,306,360,370,381,389,404,432,495,503,507,510,512,513,514,527],[50,390,391,392,393,394,395,404,432,495,503,507,510,512,513,514,527],[50,51,370,404,432,495,503,507,510,512,513,514,527],[50,60,71,72,404,432,495,503,507,510,512,513,514,527],[50,60,71,74,76,153,404,432,495,503,507,510,512,513,514,527],[50,60,71,76,194,320,325,404,432,495,503,507,510,512,513,514,527],[50,73,74,194,432,495,503,507,510,512,513,514,527],[50,60,71,72,73,74,76,130,154,191,192,193,404,432,495,503,507,510,512,513,514,527],[50,60,71,72,159,404,432,495,503,507,510,512,513,514,527],[50,60,432,495,503,507,510,512,513,514,527],[50,60,71,72,107,108,160,162,176,177,178,179,180,181,182,183,184,191,404,432,495,503,507,510,512,513,514,527],[50,60,71,72,107,404,432,495,503,507,510,512,513,514,527],[50,60,71,72,76,107,404,432,495,503,507,510,512,513,514,527],[50,60,71,72,76,107,131,153,162,321,322,402,404,432,495,503,507,510,512,513,514,527],[50,60,71,129,185,313,320,323,324,325,404,432,495,503,507,510,512,513,514,527],[50,108,185,432,495,503,507,510,512,513,514,527],[50,185,432,495,503,507,510,512,513,514,527],[50,60,71,72,107,129,177,319,326,327,328,329,331,334,342,396,398,404,405,432,495,503,507,510,512,513,514,527],[50,60,71,76,190,325,404,432,495,503,507,510,512,513,514,527],[50,186,187,190,432,495,503,507,510,512,513,514,527],[50,60,71,72,76,130,186,187,188,189,191,404,432,495,503,507,510,512,513,514,527],[50,72,404,405,432,495,503,507,510,512,513,514,527],[50,60,71,72,114,129,334,341,342,390,396,404,405,432,495,503,507,510,512,513,514,527],[50,60,71,72,195,336,337,338,339,404,432,495,503,507,510,512,513,514,527],[50,60,71,72,129,335,340,404,432,495,503,507,510,512,513,514,527],[50,60,71,72,321,404,432,495,503,507,510,512,513,514,527],[50,195,340,432,495,503,507,510,512,513,514,527],[50,340,432,495,503,507,510,512,513,514,527],[50,198,206,305,432,495,503,507,510,512,513,514,527],[50,60,71,198,432,495,503,507,510,512,513,514,527],[50,60,71,198,205,432,495,503,507,510,512,513,514,527],[50,60,71,159,198,266,269,300,432,495,503,507,510,512,513,514,527],[50,60,71,132,198,208,209,432,495,503,507,510,512,513,514,527],[50,60,71,107,198,432,495,503,507,510,512,513,514,527],[50,60,71,198,259,432,495,503,507,510,512,513,514,527],[50,60,71,198,215,404,432,495,503,507,510,512,513,514,527],[50,60,71,198,219,432,495,503,507,510,512,513,514,527],[50,60,71,198,302,432,495,503,507,510,512,513,514,527],[50,60,71,198,262,432,495,503,507,510,512,513,514,527],[50,60,71,72,108,197,404,432,495,503,507,510,512,513,514,527],[50,60,71,162,261,404,432,495,503,507,510,512,513,514,527],[50,60,71,76,129,153,159,232,432,495,503,507,510,512,513,514,527],[50,108,198,199,200,201,202,203,204,206,207,210,211,212,216,217,218,220,221,263,264,265,301,303,304,404,432,495,503,507,510,512,513,514,527],[50,60,71,76,432,495,503,507,510,512,513,514,527],[50,54,208,404,432,495,503,507,510,512,513,514,527],[50,54,228,404,432,495,503,507,510,512,513,514,527],[50,54,404,432,495,503,507,510,512,513,514,527],[50,54,255,404,432,495,503,507,510,512,513,514,527],[50,60,208,215,323,400,404,432,495,503,507,510,512,513,514,527],[50,60,71,132,197,208,209,258,313,319,322,399,402,404,432,495,503,507,510,512,513,514,527],[50,307,309,310,311,312,400,401,402,432,495,503,507,510,512,513,514,527],[50,307,308,309,310,311,312,401,404,432,495,503,507,510,512,513,514,527],[50,374,432,495,503,507,510,512,513,514,527],[50,51,371,372,373,432,495,503,507,510,512,513,514,527],[50,60,76,162,404,432,495,503,507,510,512,513,514,527],[50,60,71,76,404,432,495,503,507,510,512,513,514,527],[50,60,326,327,328,404,432,495,503,507,510,512,513,514,527],[50,326,327,328,404,432,495,503,507,510,512,513,514,527],[50,380,432,495,503,507,510,512,513,514,527],[50,376,377,378,379,404,432,495,503,507,510,512,513,514,527],[50,60,108,153,404,432,495,503,507,510,512,513,514,527],[50,369,432,495,503,507,510,512,513,514,527],[50,108,404,432,495,503,507,510,512,513,514,527],[50,361,362,363,364,365,366,367,368,404,432,495,503,507,510,512,513,514,527],[50,72,306,343,360,370,375,381,382,384,386,388,399,403,404,432,495,503,507,510,512,513,514,527],[50,385,432,495,503,507,510,512,513,514,527],[50,60,71,149,153,159,400,404,432,495,503,507,510,512,513,514,527],[50,60,71,149,153,159,261,399,404,432,495,503,507,510,512,513,514,527],[50,108,115,432,495,503,507,510,512,513,514,527],[50,115,432,495,503,507,510,512,513,514,527],[50,130,383,432,495,503,507,510,512,513,514,527],[50,60,71,76,130,153,399,404,432,495,503,507,510,512,513,514,527],[50,60,71,72,76,108,109,114,404,432,495,503,507,510,512,513,514,527],[50,108,130,185,190,194,404,432,495,503,507,510,512,513,514,527],[50,60,71,72,76,78,108,115,129,404,432,495,503,507,510,512,513,514,527],[50,344,345,346,347,348,349,350,351,352,353,354,355,356,359,432,495,503,507,510,512,513,514,527],[50,60,404,432,495,503,507,510,512,513,514,527],[50,60,269,404,432,495,503,507,510,512,513,514,527],[50,60,71,352,432,495,503,507,510,512,513,514,527],[50,60,159,404,432,495,503,507,510,512,513,514,527],[50,60,215,404,432,495,503,507,510,512,513,514,527],[50,60,107,404,432,495,503,507,510,512,513,514,527],[50,60,71,162,352,432,495,503,507,510,512,513,514,527],[50,60,71,72,108,404,432,495,503,507,510,512,513,514,527],[50,73,74,108,186,187,190,194,195,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,404,432,495,503,507,510,512,513,514,527],[50,60,71,399,404,432,495,503,507,510,512,513,514,527],[50,54,73,74,108,186,187,190,194,195,306,352,403,432,495,503,507,510,512,513,514,527],[50,388,397,432,495,503,507,510,512,513,514,527],[50,269,387,404,432,495,503,507,510,512,513,514,527],[50,60,76,129,132,313,382,383,389,400,404,432,495,503,507,510,512,513,514,527],[50,60,129,313,399,404,432,495,503,507,510,512,513,514,527],[50,60,76,129,132,313,382,389,400,404,432,495,503,507,510,512,513,514,527],[50,60,76,107,108,129,132,313,382,389,400,404,432,495,503,507,510,512,513,514,527],[50,60,76,129,132,153,313,382,383,389,400,404,432,495,503,507,510,512,513,514,527],[50,60,76,107,129,132,153,313,382,383,385,389,400,404,407,432,495,503,507,510,512,513,514,527],[50,60,76,115,129,313,389,390,404,432,495,503,507,510,512,513,514,527],[330,432,495,503,507,510,512,513,514,527],[114,432,495,503,507,510,512,513,514,527],[155,156,157,158,432,495,503,507,510,512,513,514,527],[60,114,432,495,503,507,510,512,513,514,527],[77,78,205,208,209,219,222,223,224,225,226,227,228,232,233,234,235,236,237,238,239,243,244,245,246,255,256,257,258,259,260,432,495,503,507,510,512,513,514,527],[54,60,77,432,495,503,507,510,512,513,514,527],[54,60,77,224,432,495,503,507,510,512,513,514,527],[54,60,76,77,432,495,503,507,510,512,513,514,527],[54,60,77,131,432,495,503,507,510,512,513,514,527],[60,77,231,432,495,503,507,510,512,513,514,527],[54,60,76,77,242,432,495,503,507,510,512,513,514,527],[54,60,76,77,233,432,495,503,507,510,512,513,514,527],[54,60,77,252,254,432,495,503,507,510,512,513,514,527],[54,60,77,233,432,495,503,507,510,512,513,514,527],[54,60,76,77,132,208,432,495,503,507,510,512,513,514,527],[60,153,432,495,503,507,510,512,513,514,527],[153,288,289,291,292,293,294,295,296,297,298,299,432,495,503,507,510,512,513,514,527],[287,432,495,503,507,510,512,513,514,527],[151,290,432,495,503,507,510,512,513,514,527],[76,147,432,495,503,507,510,512,513,514,527],[314,315,316,317,318,432,495,503,507,510,512,513,514,527],[314,432,495,503,507,510,512,513,514,527],[131,132,133,134,150,152,432,495,503,507,510,512,513,514,527],[60,151,432,495,503,507,510,512,513,514,527],[54,60,76,432,495,503,507,510,512,513,514,527],[54,60,76,131,432,495,503,507,510,512,513,514,527],[54,60,131,432,495,503,507,510,512,513,514,527],[54,60,133,432,495,503,507,510,512,513,514,527],[54,60,76,147,149,432,495,503,507,510,512,513,514,527],[333,432,495,503,507,510,512,513,514,527],[332,432,495,503,507,510,512,513,514,527],[279,280,281,282,432,495,503,507,510,512,513,514,527],[275,278,283,284,285,286,432,495,503,507,510,512,513,514,527],[276,277,432,495,503,507,510,512,513,514,527],[270,271,272,273,274,432,495,503,507,510,512,513,514,527],[271,272,432,495,503,507,510,512,513,514,527],[270,271,273,432,495,503,507,510,512,513,514,527],[116,117,118,119,120,121,122,123,124,125,126,127,128,432,495,503,507,510,512,513,514,527],[79,80,81,82,83,84,85,86,87,88,89,90,93,94,95,96,97,98,99,100,101,102,103,104,106,432,495,503,507,510,512,513,514,527],[105,432,495,503,507,510,512,513,514,527],[91,92,432,495,503,507,510,512,513,514,527],[92,432,495,503,507,510,512,513,514,527],[91,432,495,503,507,510,512,513,514,527]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"a6a5253138c5432c68a1510c70fe78a644fe2e632111ba778e1978010d6edfec","impliedFormat":1},{"version":"b8f34dd1757f68e03262b1ca3ddfa668a855b872f8bdd5224d6f993a7b37dc2c","impliedFormat":99},{"version":"2ddb9572f13b565c3fe90c9c797950c8c7b49e84989e850ce8619564b711d6f6","signature":"26e4e730c693d40c7b96173958fda238b0bdc5060efef9d8dde36e61a0c53418"},{"version":"00cb63103f9670f8094c238a4a7e252c8b4c06ba371fea5c44add7e41b7247e4","impliedFormat":99},{"version":"15fe687c59d62741b4494d5e623d497d55eb38966ecf5bea7f36e48fc3fbe15e","impliedFormat":1},{"version":"e09db3291e6b440f7debed2227d8357e80c95987a0d0d67ac17521d8f7b11bdb","impliedFormat":99},{"version":"74012d464fbc5354ca3a7d5e71bee43b17da01a853c8ff10971bbe3680c76f40","impliedFormat":99},{"version":"5e30131b6a5587fe666926ad1d9807e733c0a597ed12d682669fcaa331aea576","impliedFormat":99},{"version":"a0f82d2f9450bd147a8c137798d9501bd49b7c9e118f75b07b76709ff39b6b55","affectsGlobalScope":true,"impliedFormat":99},{"version":"9a318e3a8900672b85cd3c8c3a5acf51b88049557a3ae897ccdcf2b85a8f61f9","impliedFormat":99},{"version":"1bcd560deed90a43c51b08aa18f7f55229f2e30974ab5ed1b7bb5721be379013","impliedFormat":99},{"version":"dc08fe04e50bc24d1baded4f33e942222bbdd5d77d6341a93cfe6e4e4586a3be","impliedFormat":99},{"version":"cdeae34aca6700620ebf3f27cf7d439c3af97595dd6e2729fa4780483add5680","impliedFormat":99},{"version":"3ff87ea3471b51beaf4aa8fd8f4422862b11d343fdbb55bf383e0f8cc195a445","impliedFormat":99},{"version":"99bdf729529cdbf12e2bf76ea751b662011133dcf9e35abcb3def47bb02f7b0a","impliedFormat":99},{"version":"732fb71ecb695d6f36ddcbb72ebfe4ff6b6491d45101a00fa2b75a26b80d640f","impliedFormat":99},{"version":"039cb05125d7621f8143616c495b8e6b54249c4e64d2754b80ff93867f7f4b01","impliedFormat":99},{"version":"1b81f1fa82ad30af01ab1cae91ccaddc10c48f5916bbd6d282155e44a65d858d","impliedFormat":99},{"version":"a0fc7a02a75802678a67000607f20266cf1a49dc0e787967efe514e31b9ed0c3","impliedFormat":99},{"version":"5ebf098a1d81d400b8af82807cf19893700335cf91a7b9dbd83a5d737af34b11","impliedFormat":99},{"version":"101cf83ac3f9c5e1a7355a02e4fbe988877ef83c4ebec0ff0f02b2af022254a3","impliedFormat":99},{"version":"d017e2fcd44b46ca80cd2b592a6314e75f5caab5bda230f0f4a45e964049a43a","impliedFormat":99},{"version":"a8992b852521a66f63e0cedc6e1f054b28f972232b6fa5ca59771db6a1c8bbea","impliedFormat":99},{"version":"52e9e23e66f4bea029399f8cc8856802dc62acff80d265fe37bb521db56a69b7","signature":"11e3901adc967efa6d847dda8cd9227026ef306b91d569d366d6f08e2decde26"},{"version":"9b78ff004fbc89d7a62e1bd74e96110abd566106ef15b8b7e7a70d95508a6d15","signature":"c5983f3043b088d467b970a80be1160308a73db09a014219342d0d71651de001"},{"version":"0590da5b7f7d8e5d22b408b4e45ec75efa998c81d8d1167c75fdc8689e509a46","signature":"4958be23f4af4775159ac70ebaad509dc5a32e92ebe5a8ef71b8c830313f68ca"},{"version":"5565deadc1d553f9f1ef370351432c258d2a6f1a5ca47e574e5430db824468c7","impliedFormat":99},{"version":"4ae1ed87c59518f4e0918a21409ec3020e97037a386b57953c6b9fed9cad6949","affectsGlobalScope":true,"impliedFormat":99},"cb85235628f67d0904e45733fd9071f6ec8332e9a6ae66d32730ba6c445a51ef","ebe6f76595fbda9ca25d8018bd932cab144c2b1ec62ab8ec064da0ad729eac96","05cfea0488751015b0b85911b6cdcde7c6cebdd9b8cada1ec0b5c1736357a552","f5800813e5c0d6c27d73b76f2c99f39bdfd6229d03553a8a9ae485f6aeb94425","4d5e201faa4bceca840b652dfc10795170c061f498e19429a06e056490aa69aa","b085d2f3c839ad9634c9b1ea8bb2d4e3a321af1392d8ac44a79b99c0d8d194aa","ee11b7061adce4a1c0370620949a57851215b152a5632d2faf1aedbc90ad0520","f8c86fcbfb0a1e69a0ed28d3249cc33c312fa23a39c17e15cbbcc539bdcdc303","85e0f00b17c3ae8cd88438c754a2c43f4a9361e685b97a70e52e33afbf62488f","39d2d450df6efbf38585fd316f18922c8ac3fdfd4c3fc412d0bee34e2bc86378","4dcdfe4c18557fc02d8cb22cb422cb98bfeba8158aaf18cc66f9d99293ebe2c8","7efea6f2270a14f1b0d5f472f2a6fcb0a97beb677299e10b073cc2abdabeef51","642bd83dc8b11abc31785975f869fea5ab2dd84246acd13c6ad7e769fea95150","712dbb6cc6020b1dae2a2031b8a117717318652f73fd5042d508f7de416c47b7","637a5a32ea266fdaa0efa1c4d25ce2eed3b420dcd7836a6952374ddd95aaccaf","145e598b9f835b46757263cf952af5b8735d0bfb08a6dff2187f7b5611e17578","f499d7fb533781939c7a5ab778ac6e6c8ffe65601b1a61a843c36ee0013f05b6","7fcb76be88d4a64f6318b5a24b57021d7463f24485a3d1a931bf664c7e437534","d75490903da576f8fd0ee1c990858cb31e605d3db925593c12728bd0949eedfe","098ec42cd54c2b3354584c4fe8ad143040114891dde762741522b62788772f0d","1e73d612f806d183d6c16c4135c16c1a14dd827c1a67097e72ab1841852bfcb9","30046b0787c577061d43e498b507da8a249fbc58bbe33a09a7bef777e1d5fb67","cb2de9f1d7d286191834eeb331d23dc69eeb322745114ddad1695e4c575b5feb","dc2461db89dde29306a73a2926e2cf874e981ef034412f4d1e3d06d45bb3127e","13a5d8ec52111b64ed8fdcb47ab664b60085733c46c44aede33fd2926840ac31","1cf02270a889fcc3fa5863734fcdbea410d3b4dd71e4678a894a48028f836f6e","4f69dd36aa514494e2665a9dd1ecbb94f705c37f13554aa6f0c4b55d47dcfec1","3cb5734586224b2daa65a52cbe2428195e1542681ac85e4d7e9ca691e841db5e","c88faa2f2d9778aa0b4dedc2bfde0990b0beea6c45b0fc7d4a79e1294ebe8cb0","51f3be4aa09529ea1ad83a3d66830075a49e3e630df25d9892ef5708bb00de55","e0289b150095e1e86a7a201aa8ca9df044922019fcb4d125fb69535ae375d6a7",{"version":"cd82f088b9a22f12ef41306919af6231241ff9a09e779c6f1f16cde4b2b1c8b0","signature":"b9545dbda87ee111d4cc60b546d51b54a0d2ea077e9f6ce708fca09d51bd057b"},{"version":"6650db0255dd5a273da605a1b2eedc8d8636b38089d2929747b4b05192bedc75","signature":"2a89e53f61a55d8d39394d6862f79857744701d85f80b875886250c06c43b9bf"},{"version":"e30accdbef6f904f20354b6f598d7f2f7ff29094fc5410c33f63b29b4832172a","impliedFormat":1},{"version":"3786a961459023ec78bb575e5ea74f504d3ffc61ae82a305c959a4d94d7d70eb","impliedFormat":1},{"version":"de83915a380bdd6d7ddf075e3f60fe347db64ad4d06822835724ac601cb61daf","impliedFormat":1},{"version":"4d39c150715cb238da715e5c3fbeac2e2b2d0ef3f23c632996dd59ae35ba1f45","impliedFormat":1},{"version":"e9f80c5934982b97886eadab6684c073344a588d1758b12fba2d0184e6f450a2","impliedFormat":99},{"version":"27437df64b07bb19ad6b45ecd1f006e674aa2cac8f74931d7316dca4d7f22f59","signature":"ce9587610e65de259eb2421457b8793e2291a84b6d0e3c50170691d8f2657c09"},"cf93fb9208a01c80f0fad245c4360356e5de6c2384b7641acf0b9cc2f5c42448","336398b0efaf964124e636a9b29c4edd5870aee79ac64bf87be58a9d66b7c048","571bc65ec37ba124e762bb822e14a2b8502dc684e356be8feaccbd6b9cadd023","7cd455fc4c4818f19263d73b29c59f3fb5fd54b45a6ab83ca3eb3661281db56b","1c6b9b5501774a2ece6574be8e26092800e3f1f836f8c179b4f9fdd271a620f8","bcd2426fd141157e04e3a8eff914b575403587f398cf0878f07c2f283e0d1afd","bac8ff394e831e4dd3f0961d6abb414b0e2b4ba16fdeb502d087ebf0340ed5f6","4c559568877f16745410a69bbbf0e2b131a228c819d581048f4d1ba7115b1b36","c89d663edb7c20cfab677286571dc8f4f09878119d7ecd010895133995f12532","9d04b912e18e966fca08158f28e5c41bfb2fa864187d926e04d737aa83a96e17","2ad4fcfa075cde73e5ae78491531cef44cec9fb9a880be8335afd98c444528cf","bf3dca387e78050848ddcb2ed4e5362f55948aaea8074205d2b1571e69780429","e2d895b9561b0b9a350c970475ff268e4e0fc44436e107a916889a0a93d3389b","c182c5370e3838b58902fb21d6800447a2e4d29329a4253f85f2b89bc3d4ce6a",{"version":"46af8a6c2c3591ca9214fbdac6dd9bab981a3bd4652662d3859c98031896872a","signature":"efea818d1d1ee1b45c9d508281693bd6890ef147762ae32b38dc4badb31cf8d8"},{"version":"75069a2a1e380502ff9a1074b8ee61f5e84f31973e5f81b444e6993e5633c72b","affectsGlobalScope":true},"8aff91f00938aa90ce829f4d577903d6826fa19e8edc583f7bb64ef1a6b4ae3b","986165ecc3a59d4b6a272a92f7ca4fd7a0762c63a674abd2c1efa0bea64da604","3e7b241ec38126d95f9e37c49a631c00cff006a888276e2d02920c6443c8b593",{"version":"6184309fe39e2fe444f4ba94e7cd1abef48fcb48e258457c3b77c65828184241","impliedFormat":99},{"version":"98c511f60c3079d731a35353a47bfa89dd79eeacad48a45d07170d22ef4bfd02","affectsGlobalScope":true,"impliedFormat":99},{"version":"905800cc110167503d0cf58bb0dd6fa4aaac1e9cedc9bd9c48e5d1f8b5b8d4c8","impliedFormat":99},{"version":"d17be577b99e59611df19ca2cf0356df554f55bb06617c21321fc4ec06b820d0","impliedFormat":99},{"version":"5f30145fbc8ca508ae4e0d90a4fe9eaff490783f380a92f6aa262accdf7887b7","affectsGlobalScope":true,"impliedFormat":99},{"version":"cefe49d29d43726072e88671a2c40cdeeb8d49ca8fa6c2d4b06013dc7b9d6206","impliedFormat":99},{"version":"f882b77c5939860d599b4b7bc39f741ebcd56123e18b284500f4b8923acd2e72","affectsGlobalScope":true,"impliedFormat":99},{"version":"0230bc76ed3a464531a43d2434d315b9cc2096aaca28bdaa65b8f9dce9f3bc81","impliedFormat":99},{"version":"559d2d1cd7f37dc2ac59e7adce198ad16a5eb0c7273d67b8e4ff72821b7c853f","impliedFormat":99},{"version":"afa8760622183e35e86f516574217eb1853b08cf2168be0bfe991643ece1a8fe","impliedFormat":99},{"version":"40e539ae4fb534c8032594c8e2e7c420be13942b43b20a9afca53d1fd42eb8b3","impliedFormat":99},{"version":"d08d474654640266d6ac03f51ee04d72438b78ea377b9dc4678c480ce0477e1a","impliedFormat":99},{"version":"929f21090183949e93fd99327d292bff76f781895d5252eb43319b2c3e014528","affectsGlobalScope":true,"impliedFormat":99},{"version":"f9f3097a031827350b6befd870e9da3ec0953b7269497c1a7c5dc840223d2fb3","impliedFormat":99},{"version":"d56278ed347a6685abc6da6b49277da36db3ddce86bd298c03b48a5f9c6d145c","affectsGlobalScope":true,"impliedFormat":99},"b73f10c107ec43e50acf38b06626eaa6ebeaa2093432f814338f9ddf1b4112fa","b6b0e59158a1c8ad34747722a19398d7bf26701e9ee2a130d80a52a815a8bb92","c97f742ef6e8c0bc4e5e4ad8d90b4489cdd3bd1c007510ee4a2e4c09266a11d2","6a17f676d06d3e695520b275dd483b4fe62d34b84926c0bf6425c08490ee2c41",{"version":"9d23d162b6ddbc219ce2124e805b08aee6589f631e1ec4024bd0067f554bcd0c","signature":"7df0848e1a42b4e997f23f3d432ef1920a6c3b0587d32aedb6ae851f3b1aee2b"},"0f81a53d54fd2b4ae2bf60067d616de99884bda21cb5784d942089d52319fb97","86d356e64ab8d56852623677eb1bed0c106703aed9b7788ad8a5a56e647822cb","29dca1b5f0cac95b675f86c7846f9d587ed47cc46609dd00d152bcb37683b069","231d829c892caeb88dd469e0847bf9d14e29c82b8b158b381ec866c868adf9af","886bcc73e8cf74ebec1bd14a5cc5b8dfa28276210df634e6f81c844b1eef767b",{"version":"33632e1a33eb088a1e248b84e78fa46fae4f3b6575c1365e11c141006483a51a","signature":"f7b1eea3f4773ad7c5ddf23f3baf80f9bb4b3a8d188e839bc901833c5849f15d"},{"version":"74fe889b1d2bba4b2893d518ba94e2b20dabe6d19d0c2f9554d9a5d3755710f4","impliedFormat":99},{"version":"2ae64cd7b6e760496069ee3b496c64700c956a0620740e1ef52b163824859db7","impliedFormat":99},{"version":"380b919bfa0516118edaf25b99e45f855e7bc3fd75ce4163a1cfe4a666388804","impliedFormat":1},{"version":"40de86ced5175a6ffe84a52abe6ac59ac0efbc604a5975a8c6476c3ddc682ff1","impliedFormat":1},{"version":"fcf79300e5257a23ed3bacaa6861d7c645139c6f7ece134d15e6669447e5e6db","impliedFormat":1},{"version":"187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","impliedFormat":1},{"version":"aa2c18a1b5a086bbcaae10a4efba409cc95ba7287d8cf8f2591b53704fea3dea","impliedFormat":1},{"version":"5a0b15210129310cee9fa6af9200714bb4b12af4a04d890e15f34dbea1cf1852","impliedFormat":1},{"version":"0244119dbcbcf34faf3ffdae72dab1e9bc2bc9efc3c477b2240ffa94af3bca56","impliedFormat":1},{"version":"00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","impliedFormat":1},{"version":"a873c50d3e47c21aa09fbe1e2023d9a44efb07cc0cb8c72f418bf301b0771fd3","impliedFormat":1},{"version":"7c14ccd2eaa82619fffc1bfa877eb68a012e9fb723d07ee98db451fadb618906","impliedFormat":1},{"version":"49c36529ee09ea9ce19525af5bb84985ea8e782cb7ee8c493d9e36d027a3d019","impliedFormat":1},{"version":"df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","impliedFormat":1},{"version":"4f6a12044ee6f458db11964153830abbc499e73d065c51c329ec97407f4b13dd","impliedFormat":1},{"version":"a862dcb740371257e3dae1ab379b0859edcb5119484f8359a5e6fb405db9e12e","impliedFormat":99},{"version":"3be6b3304a81d0301838860fd3b4536c2b93390e785808a1f1a30e4135501514","impliedFormat":99},{"version":"23784bcab96ac127a2f11bb51d638f756d998dfa899e5cdc9062a7ccf5af0103","signature":"7e6f3b3128a22e847dcf416c6b33ffe6204ca823e1db144a8b8aacf0b6ec33cf"},{"version":"a39a722eb2a5753895be6b0acbca1993e155c69c625aa660a6fe9f86436a0842","signature":"e51745730d265c18484e271698662678e3008688fd3b9c810001f376f890c0ec"},{"version":"1dda322d3ea65a73b44db563766ee642874b8209077e4ad6f9c8f9cd4af3c1c6","signature":"a578b0b6ddb89b21342fdd5cd9bda070327f6474bb122a5c32bcbf003ad70aa4"},{"version":"0387e76fd05d3b7c2c858d99c13856856a692ef66e9d467b3270f4a6a4fc23b4","signature":"71ee69e3f316d5a0a1ef7944978ea7277624a91240496956161cbf6dd323c60a"},{"version":"30a45b4f02a31fd3ee963296303e31bf7ec59d1ae9bb0596404dfa0f1681d648","signature":"78cd37ed8de28ebd0855c85cfe3de35c522b299bec6e2d1347dcd3bed4493fc1"},{"version":"cd304540fd76f0f45ca8ce1caa0d8e79d8ade6e241dfd2845005af4b1ee635e9","signature":"fd8a9355fa38228abae79cb3b5e83dc3143454ff86404f2be732be3c759b2bb8"},{"version":"b62fd9e39144c74c670d68af0adfd2ed04ae240a3c32fc888799e04917f26b07","signature":"10af275fa81b6bcfc2675ffc735524ac0679af9382de849e5bdbf1a34fa5a267"},{"version":"d698055bccf1fba6127e703ddd5fb4c43887ef9cd725d616a96e623ffe5d4365","signature":"4d348e8128fa38c82e714c3237f652cb7d4ae4f1a488848a3279ec8757c1a388"},{"version":"c6de40e045417a3cfb15dd2e4a6c57fca6e319289554dd66bd7fd8515750ffd5","signature":"eea379cd939c41bba4166171d98539dded117f3d7dba82d58ed5225955ad24ce"},{"version":"b4a06a3cf5b9203ac5be556b0bb0338096fb9d72f062090a9531a107cf62429e","signature":"db5c72a5d860e35fd0c98feb8d25ef9023ef20d873bb640279a52232be78d43e"},{"version":"4c1393c1180e85a94e48c6fa75fd9f3c0636b0e619b70eb55f89f868d259172b","signature":"7798e625cab62c5328428361026e1e8cad985db56c8e4ede8362a74454a615ba"},{"version":"7b47d55cd4e08dca36274caa4e2731f45ce501c6a9b30c8c85b1f759482e361a","signature":"49773aeac3fe5729896505b313cc510741fbe5354e23ef4d16ce27955707bab9"},{"version":"d81d47ef1c059033ee5a5aaebc22df64c34b89fc350fbd4d1956b02691953e8e","signature":"c286184427311be2421096b4a3dc0bb32e693ae25d9f015da3ab60cfed6fff55"},{"version":"8585e007ffb5f835663ae08b8c69c145bc9c8893060e91fc1e6bc854d3e9b5bc","signature":"8f78d0f72403b049b1f3598a1fb0510e1b4ca5b34e3e2b9d80643424e75366ac"},{"version":"771be7888836efe4c0ac019077d137b2dc690fbc2be055ee3b5dc04bdc749e3a","signature":"7dcefe1297a16e9463873613da97ecc97fe8fed53371eeb9dafe2d2fbddbbcb8"},{"version":"029dd6b1640c9a59e6b92da9f62b028f6b4962f4d3e120da0dc1459369a4cfff","signature":"ab9e0cb3a1de5ecdfe05fbc8947ba5f1bd36fa799f6033b8d5becf88afed7f92"},{"version":"f113bdf4e73ca3cd36864cf3a89e11312e155b192e3447fb6c56c4c9fbe6dfde","signature":"69546ff9ed013b886118b086056e683656b95aac15c77e541785fe2679a8b54f"},{"version":"9150512338b6eacdd52cdbf1b37a6a7a19ed1b34a6522212348294e6d298c9a7","signature":"4e4d2597118abf33550e8a22569ab602d2f7867b6d6834c720a78cb46d5bd726"},"444d7b365bc0b5d85e198e5a70dcc4bb99b7d19a6525071d2b34cfbac3b75e66","34a7396c117c7751d6eb8d0469639f3381f36bf5bc7b77237ddff68954190ff9",{"version":"fdb48eb09b0dd727aa910172855826567da519b3bee2eadee209a3fd71178043","signature":"e5c8ca76468fecea8f2890ffb47c40e4667a76daadcd907d4626ad571bc577fa"},{"version":"b5cc98c007d3c63a2f85d8c14e120932b20f0092ef46c19bab741c25664b770f","signature":"c66d1dfe44eeaee2f129547a9f822cd271a510a8a62941bfbef00395ed6b60e6"},{"version":"ff45af1139b61759bd26f08fcd36b3d4311a77e3f1be94b8b1ff582950e79221","signature":"1fa27a2737b97856d4c626aeb160d4eb2be9bdb430116f682e6aea2c302acc69"},{"version":"7060bd351f43e0165d52958f99adeb6839be26046213c6b661628cede55c82e6","signature":"44e1a9f36b41a93165ca1a8ae69c38528eae065856dd7e854a3ffae97801ce00"},{"version":"2e24ae173f40792e3941a2699c7b5caa27a0751ad03ccd429d635813702ebcf3","signature":"4407669bd505d8a03ca675be46129d7d1e3110ac8a541ce1c0a48fe450b83a85"},{"version":"0eb009ca9bab7ed05e23270d194a8958a004439ccdfc998207ddffe26a919c51","signature":"f0d539a02cba1e4bab64d2bc6447effe2b197a1d30fec8cb636b25478f7de4f0"},{"version":"296c4ddf01e94ed5fafa7a1d1ada9b77d28199c5ec9f36c9b5f0f21c99648340","signature":"fd5466afeeb6b4351f0ba943b582bedb3720b94cb5d28d945f34871951d949db"},"6bb8d9049c8717a1aa508b02a46bbad3a5a682442f7aa2bbec8ae65409c9cab9",{"version":"cbd762ac17acf3080e0acefc49b9b84a36756d3c835204fc152c1ce9a2cf028f","signature":"5b2dafe66896138a12fc33743126ed316f93971f5233fccaf602784a3c8ac22d"},{"version":"da84102257a1041607674f42ea9cc84237825fb363d54d1cdd42baf1489aa0ea","signature":"437020e4126eb3f158b1cd46ce7c469465e7f60029fa78335e44f85dae0bf97c"},"2e8d620000b61541f0a8ac23d90fcc9ffacf72045920273f95aa9d17ba54b6fa","a8ef8a6b8827c526b0bcbdd50b066e884ae5ae2d4c07711c83b8afe23c37a100",{"version":"3e21e5658458213bbf254b87e8ac88aca6e922fd10d8b7a0e07625b6fa3909f6","signature":"f075fcae71eb7641f6a73d5efd39072a9f8d02b4185bfc0ea0977026b4895dd7"},{"version":"a43a79716ea9f2761256f7e8fa06344dd579d9b184064b125284738a09d02859","signature":"3e4cd4ced7e1059b14a400e6e035ae8a2872484d5d8ee9ac9c07a0a21cc230c9"},{"version":"cc5271ae03529c1bbd0641d3fce46f72a4ad28b39dba4ac588bf96433816a023","signature":"8c952d03f02465cf6a46fdeb9209f586c45f76cb29170cc94d2ea4898733d8cd"},{"version":"c42f9b18f5f559b133cf9b409f678afb30df9c6498865aae9a1abad0f1e727a8","impliedFormat":99},{"version":"f4b26b8107218c67993b23418c9f07888651ef7106a611fa2ec30a2f8b61efd9","impliedFormat":99},{"version":"deb6a1fe91454c998461ab46ccfe923c761e859989e5267b84c911945fde22be","impliedFormat":99},{"version":"a647b4a652d4d596ffa78ca67ddc6c90c909175319e256c770dcad53c22f045f","signature":"eb3467ea87de54d0159d56cb11b2c011b948183d1f5b8bbca396543c92e68fea"},{"version":"be3570eb0fba40c48257efa6fbf672a81166e73546804d14e0de730ec15658d3","signature":"533fad16dc5ea358001aaa1593ad8b6ec9f01593530aa3593a2c267991f4a569"},{"version":"023df7640738f59e9e81128ff194f354b9a948d43d2f00e6bd7d29e8f2e8c7f7","signature":"6334bc1747824bcc915df251966fa4a6a23882884f63e78a6afa167672a7ce32"},"3b0d25bc34c74e14b479fb9b4e38d3668899b15afb99a75831c446c28b3de10a",{"version":"b8cca2153afcd0cf116b3bc9dcac04636aa518dbbc19daa82d8912289cd64b5a","signature":"3382af95e795d8905a8396033f1e7b9043fc83782c14d7ccf8ce49769ee03bd4"},{"version":"dea786ba9d99cea91928d37c4d63ec985ee4add485c351a62f18139c45fd5c1b","signature":"6281abf5998eeb7645c2fd778f165fb09aa8040925545ef803c5102bd0afeba7"},"1ccafbe3e56f7563bca7e6ada29fd3b736d44c7f9008b2f1067b9d52fda58d64","a8f8aa9f6c2bf7ef88e0fcf342fd9d1e6dffe7053f49320f6bf39ed0a9c37001","53b2a55014f054f5b36eb94b4ebd5790e3e455f668403718032efec1b589d103","aceae7fb3a67386f3feedcc318ff33a7199c4280f18a642be53cd53f615e1f82","e46c6b9e011509b9d5cb86a0daf0ddec8abed2b575a575325f8e886784a8163b","a95e1764db3cd0d538286b20694a57c95a27812522740bee895be8f612057d89","82bbc4f18267bf75c517fa7aa5835adef8a0a452050d1f8c4ab737917bf549b4",{"version":"152accb0c34090709491877e607a5ec957a70040e5320a1516348311c112933a","impliedFormat":99},{"version":"fe9dd679e568dc2a0e5e6959f77b53f8bc1f126d46b0d17631347ba57470b808","impliedFormat":99},{"version":"b3805662389944b27203c90f238a4fa7b77a2dccad09860af701bb72ce502b0d","impliedFormat":99},"a8a3a2175e08d443028d02b9825934205084137e7530ab3b49e1dbefcca6e345","e7db50dc539498b089c30cac94b538962d340c63c277a13c7233ddf3d4641fab","4d0acbfbdcfac4d84cd03d34354746381bb97b0a4e070005b2d63b35a50dfbf4","02536878763a90ed82ba3468f3ae1c615cbb59de62618b27bac6dfc17aedfd8d","a6a8866783c99c76df9c914175f8f07b903e6679aea6c40a6c2cac16bc1176e1","0d2b9fab22e46386e3f0b78034f49462c9c5d8c314164226f6b51ce2d35568a6","dde253c181a3100c7794c40c30aa6144bf797abcc2348bb214586e3123fa0b86","2c6a82385d5e3e5d7fb82b6f14c50c8964b6a78c0ea3c11d272157b7be580c60",{"version":"50d6de22a2638ee065f170cf1c4e7db26b2cd9eeb1a1ce023f4cd93d43fc453e","impliedFormat":99},{"version":"41e4b825afe9f38c821a8d7bd9667e2c923c847e31036cfd6c98006b0ca1653e","impliedFormat":99},{"version":"fb3796f25b77cf1496279d8250b8ca76741ce750a75bd8cca753eccf02358e07","affectsGlobalScope":true,"impliedFormat":99},"fa7607f48ba2c02eb8af042878d7e376157900562340f72874650d2102b5b72d","aa433a025387d244052e46f11daeaacb21b53f645b336d64d6d920b0f330c5b5","14344cf9bac2f1a62ec32f52858a3f11f63c70832207e824ce1f7083492affb8","fb5c068182ae45b9970d0ba96eef722610272bb072a41b7111a00b431c2d8ffc",{"version":"9e77270468dc77ee3f0182f377a6022b37cce590cab79205c497cfb964ee2d20","impliedFormat":99},{"version":"8bb8931e629d9adfac6fe0c067de1a3c2f82b47262f83fa76eb0772ef13808e8","impliedFormat":99},{"version":"75c9b7226184ba8d96f2f8818e8a1c1c8f1f8325b17645029ddda07bec3ade83","impliedFormat":99},{"version":"1e8f86f007abd453e72e49dbc52aae6946167a1bdc2a989c1f12d3cf0244d2f8","impliedFormat":99},{"version":"1b45982abdcb2d07d5d1fc84dc6966227b7c82d4a12bd8ec50a28a01c8842d9f","impliedFormat":99},{"version":"220a08c0460aff4f65b8129a53c63c97599d96430150e7fb2ca8da5ccbc16bfc","affectsGlobalScope":true,"impliedFormat":99},{"version":"f296e6ff892a925da76ed1e7b2114803db2877f1fdd665f33e0b26de7e1a6523","impliedFormat":99},{"version":"2b7426977de7220c78217f27552dca65b529654f85f7c26b6689684c9f002cef","affectsGlobalScope":true,"impliedFormat":99},"4171fcef202a19a14cfbf1d9269a7007c5ab79c58a07c88f77419dcb576e3362","fc69e4655f851f0fbf23122caffe18d2ece057464030aa20dc485003492adbe1","1cf690d9be450e173185a111175a4f6d4e0bacefeee568dcccfde8b8aa212891","7eba8a6646923a39bb4ababe5faad2f5a9dba44b1d9324dc07200350341d89ee","e4a8c00018b11ec228d4920c5a0145ad82c16b5819a3698e81e9d72e061fa50b","dafb14b69c8f0b0509c6b26813b1dd823466bf11f9a00488d7d6be080b2738c6","f18d557ae862aae659c92fa35b64b0fe52f4d0b3bbc85280ad5b7ec4c5f14e99",{"version":"193f7c363dc7695b2c3f2883b617dadd685c04766aa11b7fded108b541566bb8","signature":"f49e8770fe9aa864f583a58b868fcb15291422d9affb7c3106e62a8fc7646837"},{"version":"79790d6ea88741ec865f174eb6cacec03b31d227cd63edaf9c82232a5030edcb","signature":"b3ff7287cd50af7e58662ce93eebd7058f32f4429a30260d19d7c1d232cc9c13"},{"version":"4fd357efbcc34d7fdfd0b4fd62ecaa536f10648769841b7863231f4e2d08e926","signature":"c447020e4465f53f011373d258d785edba93ee7195bfdd10f053ddccf5a47148"},{"version":"56f122e43663273fc452e5e1dc7b196da288b9cb409ab17d9e0dc5df5efebd2b","signature":"e2f28ddf93fa9d0abb4aaad451b6b7c203c6c52bd790759ee5006fcbb2f51c25"},{"version":"717dfaffea96e5864b23e53a0c560924dbcc99fdaa35ec244b5b32ed4dec6643","signature":"b6055bd20d535316a609541fb72c570fd94d6d21434be4bbae7a0d62fb192c96"},{"version":"88a3a6f8c2a1640d8d5fd30d8d86462f8babd86a1e52fab0e8b7f7c141fb348e","impliedFormat":1},{"version":"345f76c854da724803c96f727a3f9c75e26cf95c6e7b8c1064dbc4e7727b74e6","impliedFormat":1},{"version":"ab7b7a15a5d73eb0cfc2b973e580f357f07492bff6608669d7e899e2d49ac9a3","impliedFormat":1},"4d4cf93a6b4c81851ad759e4569b6feb7a701e80b13a6f9d8d9c6012bbb86bd6","2e6035af8f3e43bf95e4983329c8277d66f9b271106af27b99a85d1c1b9daf4a","df32d43311e85715e2a573239a4bbc5b78ebaf29af2af5fa8c85370197997515","3a792bbf677343364a1d9b7197c6e4e512764f17364efd656b1a3598f2a9e820","3d7c0b593a29d717b2b2ba3f03f819c3c48bf9e250d79c4a31860af80f177e8c","e576aa80090f8b6020355ca8d7f4184067c84389f4b92125be29e03b1f6c5194",{"version":"fd624f7d7b264922476685870f08c5e1c6d6a0f05dee2429a9747b41f6b699d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"701978f3975f96e76e3ffc2e1762e3a97e3d323812049fb6fdfd559579b89708","impliedFormat":1},{"version":"4ab17f80ced148d509345cee706b2b85941515dd76e32cf47118bcdf6a4bd56a","affectsGlobalScope":true},"641089f0b8094ef74b9d4b3364d5dec1592d5e3b8a51c1ba491bc8872049e79a","950fc6ac97ce76785f03282f907aac4b2cbd8ac74b17c963f1389847962cbc20","b42033bf1067564808e4d360d79281667c2b3b0792c2d615ab641eb85974d4ba","7af29b0589483f7bb8a99405ddb849f34bc053146184561ed4179e02f5fe4d0f","ad3ee9f7d14ad8b7ae8094d0f1a2276656f7a970827d4030d1dead7c2d765f75","9c7568f9c75cf6a7d35dc9f18c5971cd5b21344c686c7cce56b3558d3305d40f","fc48282c397084016a939e1b3f91dcaf4199b6cba339d91d8b2dc2acade79762","3e62a55b950132d6eeacc607b7a1bff990d5484347b2be5a1f54db51af30ff25","cfe1163736972c7c0d23497a09d6349a435ec7a0e0622509693c4fc142e7a403","60997095f458b8c2c94af5759c796d9d17678e740a41a04c3e518c14c47f2ee7","904d1d0706427169b37660f296fff6457b55c7f5589656b98e10d34b8fea3806","5582fb24ca35ef8a72d61a095d62ae2ada8143c33bc56febf626e333d3a5b013","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","81ca54beeb924c5601f429901f0ef2ee616e4291a203ebb42f235d84c6ff0e40","c36d51dd36b3887d7c2b81ebbffa009fa0ef62f4421f6b6b2ac8f06fcc6328e6","86d239790a025b4f1213571ed5d578b9080415e1218b253b499ed73ac436ae63","d2a35e0fac40e510839fdc737b1c16cd476150f7edef48a79553a8585b23f30b",{"version":"1b4b46886a4d72b889e054b9d9628a3ec9450aa986994ece9e83b05ea496c6d6","signature":"f26ba7b83293a295b31ca4d3aab0357577166f3e54310fde5df565b63aa17be1"},"1fc5d4c45c203fcd4db24fc1286f6a42e7df5064c32462aba7883353d6231394",{"version":"62001319115158192e88449ded6f0ec3b9954cb2482688b69ce0d71c14a11f98","signature":"02e03d8af5328c2d44edd9a1aa568ff23014a678c83b37700a79b90d8bfb3052"},{"version":"984a0cd7679641ce1627513cebd23378eb58e3a4cf89363303fa25f5c27343a5","signature":"4bf870ddf3bb3b346099a15a1486c86b991c09a263ffddb229d01586d52f4656"},{"version":"6bd7c748ab196a69f84b1d84b2b4e2f6e50b7e1647d7746b2cbe8bb3f9170a08","signature":"cf5e4a2d5423f58aa3a08b378bb0fc3f5ef5beadcccd99ec11d5dcf8d8010ad4"},{"version":"62262c39efa889af275815505cae82fe511749fa3b80a4b1b2445c08f0711b1e","signature":"a1ac23ef001a63c92f12f4205f0ae2d977149c76fb63f375e91baf9556cf0d7f"},{"version":"a7db10c9e8fe7bf5b08b25288802a95ecde8bbb397237edbaf388dd3f4974902","signature":"ea65e3ce32dcbb61edb379f86b303732103a887fcfe61fb0434cd5398fc8c272"},{"version":"38d283fcc907d965fc0d5cf56db46a44e6a26944f7c47125611c4090227414be","signature":"2a489164e760c8f1c603a0272822b1eaf4886e578e8128ba6bfb82993b419c53"},{"version":"00378ad85e8f41cde25be7d36915c271836e716963a82915c76253f16b339ac9","signature":"49e700af7573f0145ae3e5d80c85d244d7f72c532c15d51428f722a21ff46bd2"},{"version":"58dc31707812eb9e7ee25c9f011eb4a6efc6550cd81d3e13cac4313bae25efc8","signature":"e62ce39bfd35c9b635c17cd38ec65e4560d28c5f6a9419400a542c436a3257d1"},{"version":"0b6063fc23afcaf0b1b4de2c6e6f1ff5b6a3fc586259664d968f4c936f7b9dbc","signature":"1f8156cfa59fe2f9029598911458a03d2e8cd67954c17b5be72470b902ddede6"},{"version":"50e6401cef702c4c8406927c06050ce1b91d08e274d028c5b80b7531fd33a39b","signature":"75a28692c8dbce56c0b07de8604d9761a5aa1e555cea4dcff3cef077b5f8efbd"},{"version":"d6c0b824e25ca3bdd752c8baa81a8c5c2da034ffaa54ad60fb5cb2bea6e2bcec","impliedFormat":99},"f267810dcd09cb85ea08c95901e568becf0b9d22a6d213701ef804d40b386f60","4b624b0123ffb53ac7617babb35706283dc8e9c08029591b6e20199a8292f756","680b90445420b57653cd9afa1a143605cebe72cfdd0404fd5865cf7468d9fbaf","08c284a870f969e3755ec10154f7116391ef7370d157b612598f9a990adf6b37","90e0f68bc1ea26121712b8697446d05374c920d57178f64cf1864171de75129c","38310ee8ef968c009441d8589375a1a9c302594afb260aa663f70906f581175e",{"version":"5d12cb6727905e2c47f26154cc2b0625adef069d5666e534dcb158f4eeee2317","signature":"b4e0c5592f4108bc1c855177aaa1b61d09d02f8e0f59089388aba7206c47d4d7"},{"version":"1be8da453470021f6fe936ba19ee0bfebc7cfa2406953fa56e78940467c90769","impliedFormat":99},{"version":"3b4541e209c5748bd4193c455e8eff5e289ea8745e0bdfa640dd17ac4efe483c","signature":"a1338c1eb0e7551a083f0f812e6ceefac1814572837a6c3d3bb4c9b7c3b0156a"},{"version":"91d62367aa7efdba9b4d6c5b56fc8187a82e546a77167acd804f388d652d564b","signature":"b716363b91ef2010c599a34d8d9757eab83ed5ab3d798616ba61884a0816f732"},{"version":"058b0c290cc2891370f46357b63a9f5c44cc471c8158564ddcc17186114bf31c","signature":"c2a17ebbed3ed2b156debeb41b51f45cd76a8ea930dee56ec984a2467c0ede54"},{"version":"3caa5f8b5875f7165eb1cf9271c166df2690aa4b300c542fee7ba3b6e0848127","signature":"f714e700470b18b5cf8ee5e69b90994abb6613f956d95bc35ce1ed07e57ff8f7"},{"version":"8673704cb11f8e92a15639656456ec331e42cacfcf9241d8f6fb8fdb171dc6e4","signature":"33ef38b44de1f8012d7ca8331733e9347287579b1922d64af126546d85af23ab"},{"version":"52896ff4ba2e60f508e7faf896328ec563b5f4994bc2b70ad9930e6bffb082e9","signature":"0b7070aa7e1af7efc6c302cc833b7f8c96e40afaa0d1722d2356d5051a2cb86c"},{"version":"006fff646357c487146c77e88a2d1d493e06640a46a8af2895052abc7c45f563","signature":"b241f57d288bb85f48768b19ca0a4c00f8a4bfd745c53317078c5701fbeb0cb8"},{"version":"da66c1b3e50ef9908e31ce7a281b137b2db41423c2b143c62524f97a536a53d9","impliedFormat":99},"769c966ef166205a08c0382a298a6c5877951599d805931a963ae5650ee46391","4a9a87f04a4857cd229d0b7c5b18f62fdcba0bc74ba8809310114e84dd6864ff","690a59ec8ef431839c447cd88fbb0bd0ce59c037736d8748737d4e0f2ed57077","d16cba0bf795ae7ed4c2029ca8264c4a41a713060eb66699e1ec16563318a5f9","20009872fece11af61f0935c11746c371a2eb11041af2a3da1bbc53bf2ac8826",{"version":"107ed798b88a71b3e448e365a7e5af3f25375b4c6a7cf248907ae6c8559dbd07","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"84f090849fcf05385e3028adb7e0dd317ef90d2d6e2ce5b3014cc227ad959012","signature":"15a84436cf944e1fd426624372ee52fb1f5e46c515bcb778619e821275942b9e"},{"version":"74c47de25084e27eedd84956e93572439209018381f645b6b3c4afbe168e566a","signature":"a3471ef2afd658a0cefe89df72ba00f8adea67c2294853b1184e52872af2f822"},{"version":"0296d26e81d2c741e9283346ab26b2cc328f14e68df9a32fe8fbd10d15450281","signature":"79632a1c955375607d5ae3d631d9376175f1518023cfcdbd096db7a8a6bdac4f"},{"version":"333e0aaa5b9a5129ad1be9f0e563f80a72510ae6dc6f8c7905f24d987c7a0532","signature":"5085652d0d83133ff53f106ec75c998dda8d6f7aec01d65a51e1df3a4738696b"},{"version":"67109c88ef3fdad4126aae2d8da272662dbfb6742f812be8b29a5e0589d009fa","signature":"a5ba81b3ee037c88484f0475ef97da766e52abafbc0a87c267fcf3c42f6fb883"},{"version":"a5765d2ade3f82bf272c1bf5cbf0b41c7cd7ffce0aad1407d72a282a2cf904cd","signature":"ee72a6fcb7937cfb067c412ee0ce469d1d327d2c6db7c7e9542687d9ca78684d"},{"version":"fd215c07f5de917879cfef7b20517092933ab9b1c3516164cff05610d5278058","signature":"8fa46771471e73275f627ca29cc6ad4227cbfad15a7a0abcc7027d13867e55ea"},{"version":"39e2b849c71ff373fb6e04ee89bf6182c1ecf9a6773dd3b61465036f6904d347","signature":"12051cef0483c091431470de729c82211cdc9093d0ff92e8cb3a502b0b1f7767"},{"version":"6bf5134b1a34fcf69540045faa7ce9e3fd797d8bf3276251e79bddfcbdcb6227","signature":"e3cb6d4cfee2e0504f1bf8e897181462f026e9a29ac6fcd784bf2cd0b6ba9439"},{"version":"d9958a5dd0e25b9fb747d91b0befa9e3889516131910ab1bc7c5579595487ee3","signature":"bbb05ef0cca9dde33f69e1a9e5dbbbb1d0e676d3a2d0545188b074477343b120"},{"version":"29796bbb6ba60acab0236e474216ff9630a34393f57f3d2e1194c2ed21292472","signature":"ea1ba57d293afc21604250f1ee9d035c50f9548439e4a940a96029994a690855"},{"version":"eae246cee7f7ab29879abd532b4df584a43af5329e5ba3163bdf8cadfb26347b","signature":"bc0d436a8a92e365b6c0fba8712d925d47f30b150ab018f25cc7ed722304e87a"},{"version":"942d425219de7c2d82fb396b5ecf678c98f21d7783c04a8ab644b8f0dcaa82b8","signature":"58c17083dc5670cdd4fa086639b06e9c4c0bd7966e47db2af2c33a6b709d3cec"},{"version":"df324e4e2489e99e3db42b88ca394f84fc5d8f5f52a2a42d18356d481dca62fa","signature":"f910e5fde3c2ee17d0c75fee30baf91be97a1f8961a97cc4fab78113f5235755"},{"version":"cc3e477fae0223bb35579dd7b12939952cd6a23da177647e1c024c78787dc2d8","signature":"be092d0d60f9d2bac1bc9d854e3ed099d46b6c6c1a35c2f11627036ed9988d86"},{"version":"e295f1e9f2092dc2c8cf31235494ef96f0af401bf1396661b8ec3f9ec091b512","signature":"c7cc8ceb5b443e3c6f120cad5677e884be1520c24dd397a29e267e2e871c7733"},{"version":"56c47742fd9be79c2c0afea97a1bc6a8b420928668d001a303b40d6bae07e095","signature":"e5d3dadc5be9652b10ac1e2784e3f4fcdc32bc61fa0f5707ec863a28012ee728"},{"version":"bcc70dc7af280642a4c2c909560c21439ec3946c38bac1c473000d0cf3e07f0b","signature":"f5345362e8db7ca509febbc627cc971adaf41d2055dce2160003114016039893"},{"version":"4ec1308a2df36eefc5d33f20a5705a54c44ceb34e17e52b35a288b91adde8404","signature":"ad93d98c875005b00fcc8f37a9fc64c8b1a61eb631cec1a27b0007ba8f7ff3cb"},{"version":"dcbcbf37ffc16b3a88400aeb9667b25f06addd0d40b8eac00dde35033b78bd2a","signature":"46c2e9644f95c53cd3bb1e46a44b5c0a004db9003e72577d6f100d165d346bee"},{"version":"529bf49c29ab180890796e00ec1a4deb907bdd65a63e5352506e8ec494720255","signature":"36d9dd224edc317ad504e67dcb8036ab7d9c8ebaa7f08a3e0893da86893ad4db"},{"version":"e727d824e472831b424b58522b37b187f8e509e40de45067da00c44d719eb2b2","signature":"ef709e9410b7958393b5c9cd6c5d886b19ea3bf6d6fa7234185a332a99b864b0"},{"version":"7296a463bdb19a88db4dfc04f3166f7f8f7b133988073b2b17d0aac06f7cd81d","signature":"1a47ede4bd339acd9b911c263d83fb40d86c2d62ed60b0d8e43469de3b1d3097"},{"version":"4013f22bb73504595278388ba58c34d10dd326bc37fd99bd9920cb5f54a6472d","signature":"b248a2c86a9608ef3f4c5480fda53e28daaa858fdfbfbe9ed31e0e0a0aa83b69"},{"version":"1a269b8837fa04e633ea693e0184276f7f6d6e1b0f6c743366dde255e6ac4e39","signature":"db9c5405bf5625a5add898aca1f3da363ba3e4e34861a35c076fbb7eda56181e"},{"version":"9004aa7025bd6a77d700ab90bde2077fc50c369ffe5e25f792880238411654c8","signature":"858602103825e2c1b7a108a78cf858242720a46bc18216a4b7d27d01b37eee6f"},{"version":"e049cc26badca0641c47b0eb3b40fdab33f4707283872241d94dbd4866b24f0d","signature":"677af76589c637ef77f58380600fd33adbd2d31aeb92e308869dcb91a6039fe2"},{"version":"1e17680600975f0fd95747a07a3929e3123a62d741d3e9446a595e43d8cb87e3","signature":"52ec1df32932b15a0412a6a5f633128244fce12fe7db8d792953938afae8a82d"},{"version":"51aecc19f24d2948f82b6e64c6faa81d87cb5450beb197c41022bc14617583a1","signature":"528ec8bc7f45c4f0a3c003110c5e0e3b27a2103816fa7ef055f6b76969a9c72b"},{"version":"9aefe5d6d31690f4c7acc244f4d4e1350512968c84708273730136a6c4a3bf60","signature":"87826b45abe64b6ff3a88de373ab5f8bd7b3ecfc225c437db4b3b57694898c19"},{"version":"c42885cc08eef697588e95c5148b16a1ec10ddff5b8bc74167656c5afbe21eb1","signature":"de122de2a5f01fca22abf424dde229a4e8c4e53733dbbb3677a3f1bf1133de5a"},{"version":"3fceb14ee934c0e6dbcf7781c6c949fa6dba07229c6075691ac8769d409d1b22","signature":"979e5c5783dec326c00c1c65e1d3c6382bb9e94340c811d1218c5a43e325f2f5"},{"version":"7a6bb7c236fda22ad67d3d5bc52a43ec69a2ce016c0f4b655011ce59c3534f8c","signature":"e817da152d71839e10055330041fa545a80bebf8321ddbf9bccdc4560fb6a145"},{"version":"2c951297ce4964f5c3d2f9772cbf9c7ec1f014f478585791bb412888869cd1ca","signature":"b4583ac6c50ac509c24ecb26f0c49175ea99aa561799c6059684d868a1fa56d1"},{"version":"49e477f761032c18480a0ced281de50aedda7ec1fac5f2a9e9244cbaddc43cde","signature":"34a7396c117c7751d6eb8d0469639f3381f36bf5bc7b77237ddff68954190ff9"},{"version":"1e8c51eaab31c7c7ce8590e80b8663f360aed54caf8cdf2643349ef59ae27876","signature":"1a85409fafbd8616120a0a0e65fde663d6ce75fc66a83cdfa2b6553baea53cdc"},{"version":"85d33ba4097c3f24ceeca365379301c327d5291da44e57bbcf301b68621f3708","signature":"33612a1d9e60be6cb57a6cc5e1b364840ab6930b72464f19bb4361bfd68c37a3"},{"version":"39426a077f479e1b77cd46b3b2341d76963fc3f4832143effe966b22cd77b72f","signature":"976a07c70d961e35f4ff28926415b8d479400e46fb667f664ce10339226b2fe8"},{"version":"b7621e8157feb55d8bfd930bff0feb7f6314c1977c509c86e8f1957fb58b590c","signature":"e10371bd77f5af2847adeb8cb585bcd0208bb156fdb7ea42d474190a7e9f4399"},{"version":"49e477f761032c18480a0ced281de50aedda7ec1fac5f2a9e9244cbaddc43cde","signature":"34a7396c117c7751d6eb8d0469639f3381f36bf5bc7b77237ddff68954190ff9"},{"version":"68428c40c89590026ae93a83ffe8cf1daf58e3f43ba9d9444c60506bd26cd557","signature":"7eaa267651c453bd142030361de235c42135e9e51d6d4215d557eb3cbe5eceab"},{"version":"dde36f97c0db07487bdd0ba4d3a443e2b4597f4b64fd97d79f84dc7a55c66cd4","signature":"59e59d8579b6f2bf2bc8a3c51d355a3cd0b1b96670d04596d9babb2c55f6cb93"},{"version":"990ebf5a9f92452038d0790d7546d6e5cc72e64308b1f3ef079de401bd0f9514","signature":"5c1b8c98a6104f4ef9c37d5a4857c7ab99c5a345188aa912a6e896e4d4841e64"},{"version":"fb1a7ac4fc8d527c8db7ca6983d920094623209d178ec63a60377d7700c21982","signature":"9b4e99e46701ec1772a7d457041c710abd838f88dca8eba25d8df4ebd1438c41"},{"version":"498a2a4b2b1c935ff1995977d0438e9b21d2950a1382310ee65218d7c2f3ee05","signature":"0daca193f44847ca6a1f4f4ccc695200e5739bfe8026244aba21c136917780f9"},{"version":"49e477f761032c18480a0ced281de50aedda7ec1fac5f2a9e9244cbaddc43cde","signature":"34a7396c117c7751d6eb8d0469639f3381f36bf5bc7b77237ddff68954190ff9"},{"version":"2558fdfbcd3b68164593330fbb9edf8c7e77bcad57fedb70122848e2d947dfd5","signature":"af2c6f6177181cd7fd5ed77162ddfb127ccad05dee4979dcaa314b620bf00db7"},{"version":"45f6ab8336804dab84c76e5c07483f220d358d23e86774a772461fabbe6e89dd","signature":"9db311570e95f7f07391ede131d8c591a6646478a93a867066439ff4a04b8497"},{"version":"69366f416f215b5de1ebee3d2701f35cfd66de1df416190cb275f82f0187185e","signature":"b2afd16c37f8021115977d7e1676891e742d3773c28389206bf3b92fcd792b09"},{"version":"27876043c2193acaf352330a6ff74be78a078f3f29fc66616d5e360735971d0c","signature":"b546c64e0e45bd8ce4806cc8e541c99c161ea07eedd9259dd3bd33bda8713a36"},{"version":"f11ada9cb64108fc51cc6fd2f856be01dd4be71a2492d843acf89057057f3525","signature":"32c367dd0a1a9ce901b5e5b27a3e0fa05551ed1c9da473be1979edf95411e15e"},{"version":"553312560ad0ef97b344b653931935d6e80840c2de6ab90b8be43cbacf0d04cf","impliedFormat":99},{"version":"94c69b998bf1e5d142f7f448d6de90a6f9fcdd37d18337b898f0c5682737a81b","signature":"807c2f3ec9aad7754411e505ffe872f5cbf1d3502917f0d2ff2a2f35aff51d8d"},{"version":"fc5b44e49e76f05fd917a02550d8985806697005d964d6e6f974caa1239b2066","signature":"0a719863d4ad5ec6d4f2321f95ad7f2df209ca1253925227f2a744d9e484cdc2"},{"version":"94edf744878999ad29d54a2d6f41e2bb84e6c1beaad3993c2afe96dda7ff1b71","signature":"fb540a256bd349d050618d9e4bba74ce19299f34f028c485ff9cbf872df5b8eb"},{"version":"aae1075c1c78b95bf2b7b03dbceb98580e8369260bffb0bfa16e307c9a6b1dad","signature":"b7627f3b542782d8590500b33b5d895077df589da27e9575f11802dfee094134"},{"version":"d7439f5cc0a08c4aa4a6704111d52b297a0c551df340f00145269340f55a25a4","signature":"d8c9696b5474faed802561397e2adb5044e4765428edd144c5238ac2cd7cb91e"},{"version":"e278a488b22c02a983f72a6dff0cc2cbd07c910d77e4e1d3959dd5222765b406","signature":"0e8a79f4958560ddfd818144decc371b6028d7b09380ae845d7401e17d5252d4"},{"version":"57b07b652e87546cb90e601371d6e82c60fe3429d437795c8151165a2dd10d81","signature":"370d2647b65eab82ed70f71c2f964cc105fbaa6ef7574c5d64f85ef571d5b95f"},{"version":"26d0d232e557b20d5e91eb1a02c99127890d2e1086300af7ca00fed6ffc0710d","signature":"68e208a41cc79e2a62df011bc0bd7f98036c8972b069074ffbb5de97eeeadc1f"},{"version":"f4f50cf8f6b45a02dd3cb5b4c1fdf26d0ba3d8e0f93e8417dbe1c9c8078cd38d","signature":"18f0756a3823751fb2e073ccda418e9073d508c41a37866984b6d2973ffced09"},{"version":"2fd48df87a103cee6f65309642f4502853d1608eeb00189249b2286093413e09","signature":"311011b8c26c201fcbf5d2640cb0fc0a68bb6e86982da073bd966438a560c5bf"},{"version":"cefc716db2896ff7219bcd6d673bf73ddb5d7c7d2bf1b7e312527f496f03b672","signature":"913015efb54d0ddd7eb696fa0d229c37655ed4c3c07c09774c1f407e1132f2b4"},{"version":"bc4778fa9aec48f887e71866bebbad7db859322c8228d97cb9b9f1979601bf5f","signature":"3e0930dc59deed77198b8f3ee52b46534cc30fc17c34d085089c9c818c12716e"},{"version":"d6a6b47935175e00c041b330bd648be29c9ca1b26a57607a1f60f0507ea7a08a","signature":"26bad57957e9f9eb1cba37346baf8917437799f8867e7b3e1c74afec81d97e46"},{"version":"f6a6a00d7bf36768b2c8ea62f1bbca4afee36386c65087faec35fde4b5894293","signature":"3a013f7fbf37d729acc77549e65bddfee493c8eb0a1bda4938cdd4a930284ac9"},{"version":"38ef896f3757957ce79dfd87e5a25d439f95a76870ca5e88b19ddbe83a85c8a3","signature":"4285b3976062212af73781ab61cd2d35014d6c8922ccbc082272ea14b56c4119"},{"version":"3e6565a2ad92128e71ac9c7a3270c7fdfa7bddc416b2f726a8f72b0b71bfa497","signature":"5eebd8d6472ff8d9311d6601eb974474e9a5c70abb29d7f92023a21e4c151fbf"},{"version":"3b77a24b559a97a13702c2cc95fafe3050b358c8ef64bcef391f447aad4c8e05","signature":"8f8600a6c8adc260e45ba1e461cf4a4902c54555e66f8d99fad1121c791dae63"},{"version":"9192eee004e249dbc3e29592b46eaceabb83a156e1f29abd8aea5d8806a589c3","signature":"13d4e6fe29b7b1091de2284a93229d609b6054c52cdf043aed190acb19033721"},{"version":"7d603e5b47f305c1f7e64441ff096fd0d46704fed8550e822f3c53c4a5c828ee","signature":"d615f8c2c0efde69f76f044635fa37b2aa911bdddfa879534729df4f517ecce6"},{"version":"3a58aa64ddada83559c0d54205536799d3b4a5521a118f2be1438d34a4f7950a","signature":"ba9da035a3894eadb8a2c45f8ed91994ff56124e47b3e830bc27102edf619eb0"},{"version":"ea3ead3a94603033f6de190d458017fcaefb4fa61bc43fc0c6106d32c1a6ba8c","signature":"9f581e1df8ef43a0317266e91dba0df6d18d0435e52e2ad8931a3cc709559141"},{"version":"76542c9db69275566c78bd7b260180cf6e198601b333f6895b0931a92e65f8d0","signature":"f171f8d6a6814dfcb7edfd42728744ca3b4482f38aef02d4f8e220068e7d12f4"},{"version":"5f76615e6d335c3bf93ca3fb72110b1db32a55cca465e62771f63daaa3004e1e","signature":"0fb77370f61f82b36b5aaa238eaaec7bbd0f19c74a962c957d61638620579434"},{"version":"ffe38e5b3a24d14b540ab3908d8e0112ea6e92ef5aecb045a111b34eb2bd3f38","signature":"5ef4059db4d4ac518e838c27b560782f3dc39458004a782ac0a9df9f7ed9fde1"},{"version":"9e6fd1b7fcc82900c7e20ec71e76e65381ae7a68f50b799140f1ba5b1a68d0f7","signature":"d248a78d5e4bea035815dd54f943fedfc69fd7e6c55d6fe5af957c20f147fb0a"},{"version":"497cf3a7f87d4bb34f14c3b52ac05104bee99304495bfca41de7ae71435a4f90","signature":"d248a78d5e4bea035815dd54f943fedfc69fd7e6c55d6fe5af957c20f147fb0a"},{"version":"9dd690931a2a69defd57349dadfa52ea1fab2f0414b9649ba794b4f34dc90351","signature":"fa0de7906ceb6931a7544600f902c3b69258b6fd3a5c079bea2dfd65eabe0e59"},{"version":"53111c04866fa2ec9b0be2080a0168b939709a662c37f6c223bfd7df9a997155","signature":"fa0de7906ceb6931a7544600f902c3b69258b6fd3a5c079bea2dfd65eabe0e59"},{"version":"9ed0acb954a1c450f94ccbb9d063a34c6b6e5475d6922f8478e3917472a4c372","signature":"99f8cd656806c513d5308d8cf6abfd50d0ace6e9985b6f5babc36f5cb44211c6"},{"version":"07fbb6baba4fc11facf81cb89ac06bb3a4a5786b4b625d81460481c8e8863659","signature":"9ac56e2af0dc7c8a14b4a3accd9e41553c15931bfbda0bb14e9e3f7404e33934"},{"version":"df948894552207efac5421e5d704f375e07e477de1fb53dc4d6a9f8be2494504","signature":"d248a78d5e4bea035815dd54f943fedfc69fd7e6c55d6fe5af957c20f147fb0a"},{"version":"29a684d2159aeb35b22ce9fefcf741516e32ccf8ef22e357a2082ae40b7b9727","signature":"b4d58ec0ee5953e935eb7446d08db5c22021be7621c4c3945c132c300a07116a"},{"version":"525ba1e7109d233c189216551aa0aaaf92c304da7172808d23577f2cd03f535f","signature":"8b93142525a231ca64d023448ce684dde544b96bc61f095adf81151c70c9ea2a"},{"version":"9f7b310cb0f5863366a7696cd26a099ba01e28a90661620629a6beb4d43063ee","signature":"462a34c5ce99bc7ad18d4e8aaccba3230918e0e1d7885c822e3f69466c08006e"},{"version":"48dd1ffe15d9d0fb41d32e3ddecf06f42e3a0612466b89960c589e300076434a","signature":"5e3aa3762886f0d7add3347e4bd2f77f00c0e5f347f1147dd4133e3651188d00"},{"version":"eda79d8f8fff58ed68390e9c7d71395f1fd771c67d2d071832dedf82e8123e85","signature":"90b8333c67f8de7c0fc0677b00a6979bf3ccb8d4659f0482262a77bb7bf517d9"},{"version":"8593f4ba03378c796e5472dd4219117ccd0b5b506050c959cdef7a6c2f293e38","signature":"462a34c5ce99bc7ad18d4e8aaccba3230918e0e1d7885c822e3f69466c08006e"},{"version":"22e6c0b1f6b2eaca7b13b0c8b268d008e3e9fc0bf3dd750759e857896fe85589","signature":"46644db1af6f096ee5e7adbd4a591b2f30c28fb1386e8b516af215788051549a"},{"version":"93403c510a4c45278dc281789d98a4dc200c9fe683f3a2dc8be720dd8aaff5d9","signature":"1e537dac3b660070c0b5338c196ff883270a7231955b6a19d9ff6a20e3c44885"},{"version":"c00cfe0249000a29d1c8c91bebc11a69db8d7b4b5f9fc8047867361d1e5c75cc","signature":"90b8333c67f8de7c0fc0677b00a6979bf3ccb8d4659f0482262a77bb7bf517d9"},{"version":"e42eab119ff00b924d61c72e064e06c75698a5962be8b370e3934b8eb8befee5","signature":"462a34c5ce99bc7ad18d4e8aaccba3230918e0e1d7885c822e3f69466c08006e"},{"version":"7a2630d193c8df2c9077e98a6bfac049968b1e1a08dc2f1574e8b34999387f1f","signature":"462a34c5ce99bc7ad18d4e8aaccba3230918e0e1d7885c822e3f69466c08006e"},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ccdaa19852d25ecd84eec365c3bfa16e7859cadecf6e9ca6d0dbbbee439743f","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc2110f7decca6bfb9392e30421cfa1436479e4a6756e8fec6cbc22625d4f881","affectsGlobalScope":true,"impliedFormat":1},{"version":"096116f8fedc1765d5bd6ef360c257b4a9048e5415054b3bf3c41b07f8951b0b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5e01375c9e124a83b52ee4b3244ed1a4d214a6cfb54ac73e164a823a4a7860a","affectsGlobalScope":true,"impliedFormat":1},{"version":"f90ae2bbce1505e67f2f6502392e318f5714bae82d2d969185c4a6cecc8af2fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b58e207b93a8f1c88bbf2a95ddc686ac83962b13830fe8ad3f404ffc7051fb4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1fefabcb2b06736a66d2904074d56268753654805e829989a46a0161cd8412c5","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"c18a99f01eb788d849ad032b31cafd49de0b19e083fe775370834c5675d7df8e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5247874c2a23b9a62d178ae84f2db6a1d54e6c9a2e7e057e178cc5eea13757fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"156a859e21ef3244d13afeeba4e49760a6afa035c149dda52f0c45ea8903b338","impliedFormat":1},{"version":"10ec5e82144dfac6f04fa5d1d6c11763b3e4dbbac6d99101427219ab3e2ae887","impliedFormat":1},{"version":"615754924717c0b1e293e083b83503c0a872717ad5aa60ed7f1a699eb1b4ea5c","impliedFormat":1},{"version":"074de5b2fdead0165a2757e3aaef20f27a6347b1c36adea27d51456795b37682","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"4137ebf04166f3a325f056aa56101adc75e9dceb30404a1844eb8604d89770e2","impliedFormat":1},{"version":"ccab02f3920fc75c01174c47fcf67882a11daf16baf9e81701d0a94636e94556","impliedFormat":1},{"version":"3e11fce78ad8c0e1d1db4ba5f0652285509be3acdd519529bc8fcef85f7dafd9","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"9c32412007b5662fd34a8eb04292fb5314ec370d7016d1c2fb8aa193c807fe22","impliedFormat":1},{"version":"7fd1b31fd35876b0aa650811c25ec2c97a3c6387e5473eb18004bed86cdd76b6","impliedFormat":1},{"version":"4d327f7d72ad0918275cea3eee49a6a8dc8114ae1d5b7f3f5d0774de75f7439a","impliedFormat":1},{"version":"6ebe8ebb8659aaa9d1acbf3710d7dae3e923e97610238b9511c25dc39023a166","impliedFormat":1},{"version":"e85d7f8068f6a26710bff0cc8c0fc5e47f71089c3780fbede05857331d2ddec9","impliedFormat":1},{"version":"7befaf0e76b5671be1d47b77fcc65f2b0aad91cc26529df1904f4a7c46d216e9","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"5b03a034c72146b61573aab280f295b015b9168470f2df05f6080a2122f9b4df","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"8aee8b6d4f9f62cf3776cda1305fb18763e2aade7e13cea5bbe699112df85214","impliedFormat":1},{"version":"98498b101803bb3dde9f76a56e65c14b75db1cc8bec5f4db72be541570f74fc5","impliedFormat":1},{"version":"1cc2a09e1a61a5222d4174ab358a9f9de5e906afe79dbf7363d871a7edda3955","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"b64d4d1c5f877f9c666e98e833f0205edb9384acc46e98a1fef344f64d6aba44","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"12950411eeab8563b349cb7959543d92d8d02c289ed893d78499a19becb5a8cc","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"c9381908473a1c92cb8c516b184e75f4d226dad95c3a85a5af35f670064d9a2f","impliedFormat":1},{"version":"c3f5289820990ab66b70c7fb5b63cb674001009ff84b13de40619619a9c8175f","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3275d55fac10b799c9546804126239baf020d220136163f763b55a74e50e750","affectsGlobalScope":true,"impliedFormat":1},{"version":"fa68a0a3b7cb32c00e39ee3cd31f8f15b80cac97dce51b6ee7fc14a1e8deb30b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c36e755bced82df7fb6ce8169265d0a7bb046ab4e2cb6d0da0cb72b22033e89","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"7a93de4ff8a63bafe62ba86b89af1df0ccb5e40bb85b0c67d6bbcfdcf96bf3d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"90e85f9bc549dfe2b5749b45fe734144e96cd5d04b38eae244028794e142a77e","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0a5deeb610b2a50a6350bd23df6490036a1773a8a71d70f2f9549ab009e67ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"d2ae155afe8a01cc0ae612d99117cf8ef16692ba7c4366590156fdec1bcf2d8c","impliedFormat":1},{"version":"3f5e5d9be35913db9fea42a63f3df0b7e3c8703b97670a2125587b4dbbd56d7c","impliedFormat":1},{"version":"8caeb65fdc3bfe0d13f86f67324fcb2d858ed1c55f1f0cce892eb1acfb9f3239","impliedFormat":1},{"version":"57c23df0b5f7a8e26363a3849b0bc7763f6b241207157c8e40089d1df4116f35","affectsGlobalScope":true,"impliedFormat":1},{"version":"3b8bc0c17b54081b0878673989216229e575d67a10874e84566a21025a2461ee","impliedFormat":1},{"version":"5b0db5a58b73498792a29bfebc333438e61906fef75da898b410e24e52229e6f","impliedFormat":1},{"version":"dbe055b2b29a7bab2c1ca8f259436306adb43f469dca7e639a02cd3695d3f621","impliedFormat":1},{"version":"1678b04557dca52feab73cc67610918a7f5e25bfdba3e7fa081acd625d93106d","impliedFormat":1},{"version":"e3905f6902f0b69e5eefc230daa69fdd4ab707a973ec2d086d65af1b3ea47ef0","impliedFormat":1},{"version":"2ea729503db9793f2691162fec3dd1118cab62e96d025f8eeb376d43ec293395","impliedFormat":1},{"version":"9ec87fea42b92894b0f209931a880789d43c3397d09dd99c631ae40a2f7071d1","impliedFormat":1},{"version":"c68e88cdfadfb6c8ba5fc38e58a3a166b0beae77b1f05b7d921150a32a5ffb8d","impliedFormat":1},{"version":"2bc7aa4fba46df0bd495425a7c8201437a7d465f83854fac859df2d67f664df3","impliedFormat":1},{"version":"41d17e1ad9a002feb11c8cdd2777e5bbc0cdb1e3f595d237e4dded0b6949983b","impliedFormat":1},{"version":"07e4e61e946a9c15045539ecd5f5d2d02e7aab6fa82567826857e09cf0f37c2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c4714ccc29149efb8777a1da0b04b8d2258f5d13ddbf4cd3c3d361fb531ac86","impliedFormat":1},{"version":"3ff275f84f89f8a7c0543da838f9da9614201abc4ce74c533029825adfb4433d","impliedFormat":1},{"version":"0eb5d0cbf09de5d34542b977fd6a933bb2e0817bffe8e1a541b2f1ad1b9af1ff","impliedFormat":1},{"version":"f9713757bcdfa4d58b48c0fb249e752c94a3eee8bf4532b906094246ac49ef88","impliedFormat":1},{"version":"2c2bdaa1d8ead9f68628d6d9d250e46ee8e81aa4898b4769a36956ae15e060fe","impliedFormat":1},{"version":"c32c840c62d8bd7aeb3147aa6754cd2d922b990a6b6634530cb2ebdce5adc8e9","impliedFormat":1},{"version":"e1c1a0b4d1ead0de9eca52203aeb1f771f21e6238d6fcd15aa56ac2a02f1b7bf","impliedFormat":1},{"version":"82b91e4e42e6c41bc7fc1b6c2dc5eba6a2ba98375eb1f210e6ff6bba2d54177e","impliedFormat":1},{"version":"6fe28249ac0c7bc19a79aa9264baf00efbd080e868dbe1d3052033ad1c64f206","affectsGlobalScope":true,"impliedFormat":1},{"version":"cbed824fec91efefc7bbdcb8b43d1a531fdbebd0e2ef19481501ff365a93cb70","impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"d0716593b3f2b0451bcf0c24cfa86dec2235c325c89f201934248b7c742715fc","impliedFormat":1},{"version":"ec501101c2a96133a6c695f934c8f6642149cc728571b29cbb7b770984c1088e","impliedFormat":1},{"version":"b214ebcf76c51b115453f69729ee8aa7b7f8eccdae2a922b568a45c2d7ff52f7","impliedFormat":1},{"version":"429c9cdfa7d126255779efd7e6d9057ced2d69c81859bbab32073bad52e9ba76","impliedFormat":1},{"version":"2991bca2cc0f0628a278df2a2ccdb8d6cbcb700f3761abbed62bba137d5b1790","impliedFormat":1},{"version":"ce8653341224f8b45ff46d2a06f2cacb96f841f768a886c9d8dd8ec0878b11bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"230763250f20449fa7b3c9273e1967adb0023dc890d4be1553faca658ee65971","impliedFormat":1},{"version":"c3e9078b60cb329d1221f5878e88cecfa3e74460550e605a58fcfb41a66029ff","impliedFormat":1},{"version":"a74edb3bab7394a9dbde529d60632be590def2f5f01024dbd85441587fbfbbe0","impliedFormat":1},{"version":"0ea59f7d3e51440baa64f429253759b106cfcbaf51e474cae606e02265b37cf8","impliedFormat":1},{"version":"bc18a1991ba681f03e13285fa1d7b99b03b67ee671b7bc936254467177543890","impliedFormat":1},{"version":"00049ccc87f3f37726db03c01ca68fe74fd9c0109b68c29eb9923ebec2c76b13","impliedFormat":1},{"version":"fa94bbf532b7af8f394b95fa310980d6e20bd2d4c871c6a6cb9f70f03750a44b","impliedFormat":1},{"version":"68d3f35108e2608b1f2f28b36d19d7055f31c4465cc5692cbd06c716a9fe7973","impliedFormat":1},{"version":"a6d543044570fbeed13a7f9925a868081cd2b14ef59cdd9da6ae76d41cab03d3","affectsGlobalScope":true,"impliedFormat":1},{"version":"7fa2214bb0d64701bc6f9ce8cde2fd2ff8c571e0b23065fa04a8a5a6beb91511","impliedFormat":1},{"version":"f1c93e046fb3d9b7f8249629f4b63dc068dd839b824dd0aa39a5e68476dc9420","impliedFormat":1},{"version":"eab2f3179607acb3d44b2db2a76dd7d621c5039b145dc160a1ee733963f9d2f5","impliedFormat":1},{"version":"841983e39bd4cbb463be385e92fda11057cab368bf27100a801c492f1d86cbaa","impliedFormat":1},{"version":"6f5383b3df1cdf4ff1aa7fb0850f77042b5786b5e65ec9a9b6be56ebfe4d9036","impliedFormat":1},{"version":"62fc21ed9ccbd83bd1166de277a4b5daaa8d15b5fa614c75610d20f3b73fba87","impliedFormat":1},{"version":"e4156ddb25aa0e3b5303d372f26957b36778f0f6bbd4326359269873295e3058","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc1b433a84cae05ddc5672d4823170af78606ad21ecef60dbc4570190cbf1357","impliedFormat":1},{"version":"9d3821bc75c59577e52643324cec92fc2145642e8d17cf7ee07a3181f21d985d","impliedFormat":1},{"version":"7f78cfb2b343838612c192cb251746e3a7c62ac7675726a47e130d9b213f6580","impliedFormat":1},{"version":"201db9cf1687fab1adf5282fcba861f382b32303dc4f67c89d59655e78a25461","impliedFormat":1},{"version":"c77fb31bc17fd241d3922a9f88c59e3361cdf76d1328ba9412fc6bf7310b638d","impliedFormat":1},{"version":"0a20eaf2e4b1e3c1e1f87f7bccb0c936375b23b022baeea750519b7c9bc6ce83","impliedFormat":1},{"version":"b484ec11ba00e3a2235562a41898d55372ccabe607986c6fa4f4aba72093749f","impliedFormat":1},{"version":"a16b91b27bd6b706c687c88cbc8a7d4ee98e5ed6043026d6b84bda923c0aed67","impliedFormat":1},{"version":"694b812e0ed11285e8822cf8131e3ce7083a500b3b1d185fff9ed1089677bd0a","impliedFormat":1},{"version":"99ab6d0d660ce4d21efb52288a39fd35bb3f556980ec5463b1ae8f304a3bbc85","impliedFormat":1},{"version":"6eeded8c7e352be6e0efb83f4935ec752513c4d22043b52522b90849a49a3a11","impliedFormat":1},{"version":"6c1ad90050ffbb151cacc68e2d06ea1a26a945659391e32651f5d42b86fd7f2c","impliedFormat":1},{"version":"55cdbeebe76a1fa18bbd7e7bf73350a2173926bd3085bb050cf5a5397025ee4e","impliedFormat":1},{"version":"29f72ec1289ae3aeda78bf14b38086d3d803262ac13904b400422941a26a3636","affectsGlobalScope":true,"impliedFormat":1}],"root":[51,[72,74],108,109,115,130,154,160,[178,195],[198,204],206,207,[210,212],[216,218],220,221,[262,266],301,[303,312],320,[322,328],[335,386],[388,429]],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitOnError":true,"outDir":"./","rootDir":"..","skipLibCheck":true,"sourceMap":true,"strict":true,"target":5,"useDefineForClassFields":false},"referencedMap":[[229,1],[231,2],[55,1],[61,1],[62,3],[65,4],[63,4],[67,4],[70,5],[69,4],[68,4],[66,4],[64,6],[56,1],[57,7],[147,8],[145,9],[146,10],[148,11],[149,12],[254,13],[252,14],[253,15],[249,16],[251,17],[250,18],[136,19],[135,20],[242,21],[241,22],[240,23],[138,24],[139,25],[76,26],[75,20],[137,27],[144,28],[143,29],[142,1],[140,30],[141,31],[313,27],[176,32],[177,32],[329,32],[387,32],[321,32],[164,33],[165,34],[163,35],[166,36],[167,37],[168,38],[169,39],[170,40],[171,41],[172,42],[173,43],[174,44],[175,45],[553,1],[492,46],[493,46],[494,47],[432,48],[495,49],[496,50],[497,51],[430,1],[498,52],[499,53],[500,54],[501,55],[502,56],[503,57],[504,57],[505,58],[506,59],[507,60],[508,61],[433,1],[431,1],[509,62],[510,63],[511,64],[552,65],[512,66],[513,67],[514,66],[515,68],[516,69],[518,70],[519,71],[520,71],[521,71],[522,72],[523,73],[524,74],[525,75],[526,76],[527,77],[528,77],[529,78],[530,1],[531,1],[532,79],[533,80],[534,79],[535,81],[536,82],[537,83],[538,84],[539,85],[540,86],[541,87],[542,88],[543,89],[544,90],[545,91],[546,92],[547,93],[548,94],[549,95],[434,66],[435,1],[436,96],[437,97],[438,1],[439,98],[440,1],[483,99],[484,100],[485,101],[486,101],[487,102],[488,1],[489,49],[490,103],[491,100],[550,104],[551,105],[53,1],[517,1],[114,106],[113,107],[110,1],[111,108],[112,109],[269,110],[267,1],[268,1],[58,111],[213,112],[52,113],[247,112],[161,113],[214,114],[59,1],[54,115],[71,116],[248,117],[162,118],[215,119],[60,120],[277,121],[276,1],[230,1],[50,122],[49,1],[47,1],[48,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[19,1],[20,1],[4,1],[21,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[36,1],[33,1],[34,1],[35,1],[37,1],[7,1],[38,1],[43,1],[44,1],[39,1],[40,1],[41,1],[42,1],[1,1],[45,1],[46,1],[459,123],[471,124],[456,125],[472,126],[481,127],[447,128],[448,129],[446,130],[480,131],[475,132],[479,133],[450,134],[468,135],[449,136],[478,137],[444,138],[445,132],[451,139],[452,1],[458,140],[455,139],[442,141],[482,142],[473,143],[462,144],[461,139],[463,145],[466,146],[460,147],[464,148],[476,131],[453,149],[454,150],[467,151],[443,126],[470,152],[469,139],[457,150],[465,153],[474,1],[441,1],[477,154],[302,155],[197,156],[196,1],[184,157],[390,158],[396,159],[395,157],[391,157],[392,157],[394,160],[393,157],[72,157],[51,155],[73,161],[154,162],[74,161],[328,163],[192,164],[193,164],[194,165],[405,157],[160,166],[178,167],[185,168],[108,169],[324,170],[323,171],[326,172],[179,173],[182,173],[180,173],[181,174],[183,174],[399,175],[187,161],[186,161],[327,176],[188,177],[189,177],[406,177],[190,178],[325,161],[342,179],[343,180],[336,167],[340,181],[341,182],[195,161],[335,183],[337,184],[338,184],[339,185],[306,186],[199,187],[200,187],[201,187],[202,187],[203,187],[204,187],[206,188],[301,189],[207,187],[210,190],[211,191],[212,187],[304,192],[216,193],[217,187],[218,187],[220,194],[221,187],[303,195],[263,196],[265,187],[264,187],[198,197],[262,198],[266,199],[305,200],[320,201],[307,202],[308,203],[309,204],[310,204],[311,204],[312,205],[401,206],[322,167],[400,207],[403,208],[402,209],[371,155],[375,210],[372,155],[374,211],[373,155],[376,212],[377,213],[378,214],[379,215],[381,216],[380,217],[361,218],[370,219],[362,220],[363,220],[364,220],[365,220],[366,220],[369,221],[368,220],[367,220],[389,222],[386,223],[407,224],[385,225],[109,226],[408,227],[384,228],[383,229],[115,230],[191,231],[130,232],[360,233],[344,234],[345,234],[346,234],[347,234],[348,234],[349,235],[350,234],[351,234],[353,236],[354,237],[355,238],[356,239],[357,234],[358,240],[352,241],[359,242],[382,243],[404,244],[398,245],[388,246],[397,155],[409,247],[410,248],[411,249],[412,250],[413,250],[414,247],[415,247],[416,249],[417,249],[418,249],[419,249],[420,249],[421,251],[422,252],[423,251],[424,251],[425,253],[426,247],[427,247],[428,247],[429,247],[330,1],[331,254],[155,255],[159,256],[156,257],[158,20],[157,20],[261,258],[222,259],[208,259],[77,27],[226,259],[225,260],[224,259],[236,261],[228,262],[232,263],[233,259],[243,264],[256,261],[245,259],[78,261],[205,261],[234,265],[244,261],[246,259],[239,259],[258,261],[259,261],[255,266],[260,261],[227,259],[223,259],[257,261],[219,259],[238,267],[237,267],[235,261],[209,268],[297,269],[298,121],[290,20],[299,20],[300,270],[288,271],[293,272],[294,272],[291,272],[292,272],[296,272],[295,272],[289,273],[319,274],[318,20],[316,1],[317,20],[315,275],[314,1],[153,276],[152,277],[151,278],[132,279],[133,280],[134,281],[131,20],[150,282],[334,283],[332,20],[333,284],[279,1],[281,1],[282,1],[283,285],[280,1],[284,27],[286,1],[287,286],[285,1],[278,287],[270,1],[275,288],[273,289],[272,290],[274,1],[271,1],[123,27],[121,27],[119,1],[120,27],[122,27],[124,27],[116,27],[129,291],[127,27],[128,27],[125,27],[117,27],[118,27],[126,27],[96,1],[80,1],[94,1],[88,1],[82,1],[100,1],[103,1],[89,1],[99,1],[81,1],[95,1],[85,1],[90,1],[107,292],[97,1],[102,1],[101,1],[83,1],[86,1],[87,1],[106,293],[105,27],[104,1],[79,1],[98,1],[84,1],[93,294],[91,295],[92,296]],"version":"5.9.3"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@operato/data-grist",
|
|
3
|
-
"version": "9.2.
|
|
3
|
+
"version": "9.2.18",
|
|
4
4
|
"description": "User interface for grid (desktop) and list (mobile)",
|
|
5
5
|
"author": "heartyoh",
|
|
6
6
|
"type": "module",
|
|
@@ -113,5 +113,5 @@
|
|
|
113
113
|
"prettier --write"
|
|
114
114
|
]
|
|
115
115
|
},
|
|
116
|
-
"gitHead": "
|
|
116
|
+
"gitHead": "cce62000c61d2014553761dab602585957ea9bc3"
|
|
117
117
|
}
|