@operato/shell 2.0.0-alpha.0 → 2.0.0-alpha.21

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,34 @@
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
+ ## [2.0.0-alpha.21](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.20...v2.0.0-alpha.21) (2024-02-09)
7
+
8
+
9
+ ### :bug: Bug Fix
10
+
11
+ * delete unused ([e623ae4](https://github.com/hatiolab/operato/commit/e623ae42aef83ee130c9c681b5f95bc324ba16e7))
12
+ * print-friendly ([e9a3eba](https://github.com/hatiolab/operato/commit/e9a3eba4550772e5d0bd0cbce31c5740568a2459))
13
+
14
+
15
+
16
+ ## [2.0.0-alpha.17](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.16...v2.0.0-alpha.17) (2024-02-04)
17
+
18
+
19
+ ### :bug: Bug Fix
20
+
21
+ * styling for printing ([c8557a6](https://github.com/hatiolab/operato/commit/c8557a69880bafe5a6a152b07b367946e584c6fb))
22
+
23
+
24
+
25
+ ## [2.0.0-alpha.8](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.7...v2.0.0-alpha.8) (2024-01-20)
26
+
27
+
28
+ ### :bug: Bug Fix
29
+
30
+ * comment for libraries ([bdf20d0](https://github.com/hatiolab/operato/commit/bdf20d057819187106b4a9e37d25c2c1f7febb39))
31
+
32
+
33
+
6
34
  ## [2.0.0-alpha.0](https://github.com/hatiolab/operato/compare/v1.13.1...v2.0.0-alpha.0) (2024-01-05)
7
35
 
8
36
  **Note:** Version bump only for package @operato/shell
@@ -1,12 +1,23 @@
1
1
  /**
2
+ * Navigate to a page using one of two methods:
3
+ * 1. Using a page link: <a href='page'>goto page</a> (equivalent to route(page))
4
+ * 2. Using the navigate('page') function.
5
+ *
2
6
  * 페이지를 이동하는 방법으로는 다음 두가지가 있다.
3
7
  * 1. page link를 사용하는 방법 <a href='page'>goto page</a>
4
8
  * 이 방법은 route(page)와 동일하다.
5
9
  * 2. navigate('page')를 사용하는 방법
6
10
  *
7
- * @param string page
11
+ * @param location - The path of the page to navigate to.
12
+ * @param replace - Optional. If true, replaces the current page in the browser's history.
8
13
  */
9
14
  export declare const navigate: (location: string, replace?: boolean) => void;
15
+ /**
16
+ * Navigate to a page with optional query parameters, and dispatch a Redux action to load the page.
17
+ *
18
+ * @param pathInfo - Object containing pathname, search, and optional params.
19
+ * @param dispatch - Redux dispatch function.
20
+ */
10
21
  export declare const navigateWithSilence: ({ pathname: path, search, params }: {
11
22
  pathname: string;
12
23
  search?: string | undefined;
@@ -14,7 +25,19 @@ export declare const navigateWithSilence: ({ pathname: path, search, params }: {
14
25
  [key: string]: any;
15
26
  } | undefined;
16
27
  }) => (dispatch: any) => void;
28
+ /**
29
+ * Load a page by dispatching a Redux action, and handle page navigation if necessary.
30
+ *
31
+ * @param page - The page to load.
32
+ * @param id - The associated resource ID.
33
+ * @param params - Additional parameters to pass to the page.
34
+ */
17
35
  export declare const loadPage: (page: string, id: string, params: {
18
36
  [key: string]: any;
19
37
  }) => (dispatch: any) => void;
38
+ /**
39
+ * Route to a given URL by creating a link element and triggering a click event.
40
+ *
41
+ * @param url - The URL to route to.
42
+ */
20
43
  export declare const route: (url: string) => void;
@@ -2,12 +2,17 @@ import { getPathInfo } from '@operato/utils';
2
2
  import { HOMEPAGE, UPDATE_PAGE } from '../actions/const';
3
3
  import { store } from '../store';
4
4
  /**
5
+ * Navigate to a page using one of two methods:
6
+ * 1. Using a page link: <a href='page'>goto page</a> (equivalent to route(page))
7
+ * 2. Using the navigate('page') function.
8
+ *
5
9
  * 페이지를 이동하는 방법으로는 다음 두가지가 있다.
6
10
  * 1. page link를 사용하는 방법 <a href='page'>goto page</a>
7
11
  * 이 방법은 route(page)와 동일하다.
8
12
  * 2. navigate('page')를 사용하는 방법
9
13
  *
10
- * @param string page
14
+ * @param location - The path of the page to navigate to.
15
+ * @param replace - Optional. If true, replaces the current page in the browser's history.
11
16
  */
12
17
  export const navigate = (location, replace) => {
13
18
  if (replace)
@@ -16,6 +21,12 @@ export const navigate = (location, replace) => {
16
21
  history.pushState({}, '', location);
17
22
  window.dispatchEvent(new Event('popstate'));
18
23
  };
24
+ /**
25
+ * Navigate to a page with optional query parameters, and dispatch a Redux action to load the page.
26
+ *
27
+ * @param pathInfo - Object containing pathname, search, and optional params.
28
+ * @param dispatch - Redux dispatch function.
29
+ */
19
30
  export const navigateWithSilence = ({ pathname: path, search, params }) => (dispatch) => {
20
31
  const { path: pathname } = getPathInfo(path);
21
32
  const reg = /\/([^\/]+)\/*([^\/]*)/;
@@ -33,6 +44,12 @@ export const navigateWithSilence = ({ pathname: path, search, params }) => (disp
33
44
  // you can do here
34
45
  dispatch(loadPage(page, id, params));
35
46
  };
47
+ /**
48
+ * Preload a page by performing any necessary preprocessing before loading.
49
+ *
50
+ * @param page - The page to preload.
51
+ * @returns - The new page path or routing result after preprocessing.
52
+ */
36
53
  const _preLoadPage = (page) => {
37
54
  /*
38
55
  * _preLoadPage 에서는 page를 load하기 전처리를 수행한다.
@@ -51,6 +68,13 @@ const _preLoadPage = (page) => {
51
68
  }
52
69
  }
53
70
  };
71
+ /**
72
+ * Load a page by dispatching a Redux action, and handle page navigation if necessary.
73
+ *
74
+ * @param page - The page to load.
75
+ * @param id - The associated resource ID.
76
+ * @param params - Additional parameters to pass to the page.
77
+ */
54
78
  export const loadPage = (page, id, params) => (dispatch) => {
55
79
  var newPage = _preLoadPage(page);
56
80
  if (page !== newPage && newPage.indexOf('/') == 0) {
@@ -67,6 +91,11 @@ export const loadPage = (page, id, params) => (dispatch) => {
67
91
  params
68
92
  });
69
93
  };
94
+ /**
95
+ * Route to a given URL by creating a link element and triggering a click event.
96
+ *
97
+ * @param url - The URL to route to.
98
+ */
70
99
  export const route = (url) => {
71
100
  const link = document.createElement('a');
72
101
  link.setAttribute('href', url);
@@ -1 +1 @@
1
- {"version":3,"file":"route.js","sourceRoot":"","sources":["../../../src/actions/route.ts"],"names":[],"mappings":"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","sourcesContent":["import { getPathInfo } from '@operato/utils'\n\nimport { HOMEPAGE, UPDATE_PAGE } from '../actions/const'\nimport { store } from '../store'\n\n/**\n * 페이지를 이동하는 방법으로는 다음 두가지가 있다.\n * 1. page link를 사용하는 방법 <a href='page'>goto page</a>\n * 이 방법은 route(page)와 동일하다.\n * 2. navigate('page')를 사용하는 방법\n *\n * @param string page\n */\nexport const navigate = (location: string, replace?: boolean) => {\n if (replace) history.replaceState(history.state, '', location)\n else history.pushState({}, '', location)\n\n window.dispatchEvent(new Event('popstate'))\n}\n\nexport const navigateWithSilence =\n ({ pathname: path, search, params }: { pathname: string; search?: string; params?: { [key: string]: any } }) =>\n (dispatch: any) => {\n const { path: pathname } = getPathInfo(path)\n\n const reg = /\\/([^\\/]+)\\/*([^\\/]*)/\n const decodePath = decodeURIComponent(pathname!)\n const matchReturn = decodePath.match(reg) || []\n const page = matchReturn[1] || HOMEPAGE\n const id = matchReturn[2]\n\n if (!params) {\n params = {}\n\n new URLSearchParams(search).forEach((value, key) => {\n params![key] = value\n })\n }\n\n // Any other info you might want to extract from the path (like page type),\n // you can do here\n dispatch(loadPage(page, id, params))\n }\n\nconst _preLoadPage = (page: any) => {\n /*\n * _preLoadPage 에서는 page를 load하기 전처리를 수행한다.\n * 예를 들면, page dynamic import 또는 page re-routing\n */\n var state: any = store.getState()\n\n /* override 기능을 위해서 dependency 관계의 역순으로 route를 실행한다. */\n var modules = state.app.modules\n if (modules) {\n for (let i = modules.length - 1; i >= 0; i--) {\n let factoryModule = modules[i]\n let _page = factoryModule.route && factoryModule.route(page)\n if (_page) {\n return _page\n }\n }\n }\n}\n\nexport const loadPage = (page: string, id: string, params: { [key: string]: any }) => (dispatch: any) => {\n var newPage = _preLoadPage(page)\n\n if (page !== newPage && newPage.indexOf('/') == 0) {\n dispatch(\n navigateWithSilence({\n pathname: id ? `${newPage}/${id}` : newPage,\n params\n })\n )\n return\n }\n\n dispatch({\n type: UPDATE_PAGE,\n page: newPage,\n resourceId: id,\n params\n })\n}\n\nexport const route = (url: string) => {\n const link = document.createElement('a')\n\n link.setAttribute('href', url)\n\n document.body.appendChild(link)\n link.click()\n document.body.removeChild(link)\n}\n"]}
1
+ {"version":3,"file":"route.js","sourceRoot":"","sources":["../../../src/actions/route.ts"],"names":[],"mappings":"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","sourcesContent":["import { getPathInfo } from '@operato/utils'\n\nimport { HOMEPAGE, UPDATE_PAGE } from '../actions/const'\nimport { store } from '../store'\n\n/**\n * Navigate to a page using one of two methods:\n * 1. Using a page link: <a href='page'>goto page</a> (equivalent to route(page))\n * 2. Using the navigate('page') function.\n *\n * 페이지를 이동하는 방법으로는 다음 두가지가 있다.\n * 1. page link를 사용하는 방법 <a href='page'>goto page</a>\n * 이 방법은 route(page)와 동일하다.\n * 2. navigate('page')를 사용하는 방법\n *\n * @param location - The path of the page to navigate to.\n * @param replace - Optional. If true, replaces the current page in the browser's history.\n */\nexport const navigate = (location: string, replace?: boolean) => {\n if (replace) history.replaceState(history.state, '', location)\n else history.pushState({}, '', location)\n\n window.dispatchEvent(new Event('popstate'))\n}\n\n/**\n * Navigate to a page with optional query parameters, and dispatch a Redux action to load the page.\n *\n * @param pathInfo - Object containing pathname, search, and optional params.\n * @param dispatch - Redux dispatch function.\n */\nexport const navigateWithSilence =\n ({ pathname: path, search, params }: { pathname: string; search?: string; params?: { [key: string]: any } }) =>\n (dispatch: any) => {\n const { path: pathname } = getPathInfo(path)\n\n const reg = /\\/([^\\/]+)\\/*([^\\/]*)/\n const decodePath = decodeURIComponent(pathname!)\n const matchReturn = decodePath.match(reg) || []\n const page = matchReturn[1] || HOMEPAGE\n const id = matchReturn[2]\n\n if (!params) {\n params = {}\n\n new URLSearchParams(search).forEach((value, key) => {\n params![key] = value\n })\n }\n\n // Any other info you might want to extract from the path (like page type),\n // you can do here\n dispatch(loadPage(page, id, params))\n }\n\n/**\n * Preload a page by performing any necessary preprocessing before loading.\n *\n * @param page - The page to preload.\n * @returns - The new page path or routing result after preprocessing.\n */\nconst _preLoadPage = (page: any) => {\n /*\n * _preLoadPage 에서는 page를 load하기 전처리를 수행한다.\n * 예를 들면, page dynamic import 또는 page re-routing\n */\n var state: any = store.getState()\n\n /* override 기능을 위해서 dependency 관계의 역순으로 route를 실행한다. */\n var modules = state.app.modules\n if (modules) {\n for (let i = modules.length - 1; i >= 0; i--) {\n let factoryModule = modules[i]\n let _page = factoryModule.route && factoryModule.route(page)\n if (_page) {\n return _page\n }\n }\n }\n}\n\n/**\n * Load a page by dispatching a Redux action, and handle page navigation if necessary.\n *\n * @param page - The page to load.\n * @param id - The associated resource ID.\n * @param params - Additional parameters to pass to the page.\n */\nexport const loadPage = (page: string, id: string, params: { [key: string]: any }) => (dispatch: any) => {\n var newPage = _preLoadPage(page)\n\n if (page !== newPage && newPage.indexOf('/') == 0) {\n dispatch(\n navigateWithSilence({\n pathname: id ? `${newPage}/${id}` : newPage,\n params\n })\n )\n return\n }\n\n dispatch({\n type: UPDATE_PAGE,\n page: newPage,\n resourceId: id,\n params\n })\n}\n\n/**\n * Route to a given URL by creating a link element and triggering a click event.\n *\n * @param url - The URL to route to.\n */\nexport const route = (url: string) => {\n const link = document.createElement('a')\n\n link.setAttribute('href', url)\n\n document.body.appendChild(link)\n link.click()\n document.body.removeChild(link)\n}\n"]}
@@ -62,16 +62,24 @@ export const AppStyle = css `
62
62
  z-index: 1000;
63
63
  }
64
64
 
65
- /* Wide layout */
66
- @media (min-width: 460px) {
67
- }
68
-
69
65
  @media print {
70
66
  :host {
71
67
  width: 100%;
72
68
  height: 100%;
73
69
  min-height: 100vh;
74
70
  min-height: 100dvh;
71
+
72
+ max-width: unset;
73
+ width: unset;
74
+ height: unset;
75
+ height: unset;
76
+ }
77
+
78
+ main {
79
+ /* important for printing!!! */
80
+ display: block;
81
+ flex: unset;
82
+ overflow: visible;
75
83
  }
76
84
 
77
85
  ox-page-header-bar {
@@ -1 +1 @@
1
- {"version":3,"file":"app-style.js","sourceRoot":"","sources":["../../../src/app/app-style.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,KAAK,CAAA;AAEzB,MAAM,CAAC,MAAM,QAAQ,GAAG,GAAG,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAuG1B,CAAA","sourcesContent":["import { css } from 'lit'\n\nexport const AppStyle = css`\n :host {\n display: grid;\n\n grid-template-rows: var(--app-grid-template-rows, auto 1fr auto);\n grid-template-columns: var(--app-grid-template-columns, auto 1fr auto);\n grid-template-areas: var(--app-grid-template-area, 'header header header' 'nav main aside' 'nav footer aside');\n grid-gap: var(--app-grid-gap, 0em);\n\n max-width: 100vw;\n width: 100vw;\n height: 100vh;\n height: 100dvh;\n }\n\n ox-header-bar {\n grid-area: header;\n }\n\n ox-nav-bar {\n grid-area: nav;\n }\n\n div {\n grid-area: main;\n\n display: flex;\n flex-direction: column;\n overflow: hidden;\n }\n\n main {\n flex: 1;\n\n display: flex;\n flex-direction: row;\n overflow: hidden;\n }\n\n ox-aside-bar {\n grid-area: aside;\n }\n\n ox-footer-bar {\n grid-area: footer;\n }\n\n main > * {\n flex: 1;\n }\n\n main > *:not([active]) {\n display: none;\n }\n\n [hidden] {\n display: none;\n }\n\n ox-snack-bar {\n z-index: 1000;\n }\n\n /* Wide layout */\n @media (min-width: 460px) {\n }\n\n @media print {\n :host {\n width: 100%;\n height: 100%;\n min-height: 100vh;\n min-height: 100dvh;\n }\n\n ox-page-header-bar {\n display: none;\n }\n\n ox-page-footer-bar {\n display: none;\n }\n\n ox-header-bar {\n display: none;\n }\n\n ox-nav-bar {\n display: none;\n }\n\n ox-aside-bar {\n display: none;\n }\n\n ox-footer-bar {\n display: none;\n }\n\n ox-snack-bar {\n display: none;\n }\n }\n`\n"]}
1
+ {"version":3,"file":"app-style.js","sourceRoot":"","sources":["../../../src/app/app-style.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,KAAK,CAAA;AAEzB,MAAM,CAAC,MAAM,QAAQ,GAAG,GAAG,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+G1B,CAAA","sourcesContent":["import { css } from 'lit'\n\nexport const AppStyle = css`\n :host {\n display: grid;\n\n grid-template-rows: var(--app-grid-template-rows, auto 1fr auto);\n grid-template-columns: var(--app-grid-template-columns, auto 1fr auto);\n grid-template-areas: var(--app-grid-template-area, 'header header header' 'nav main aside' 'nav footer aside');\n grid-gap: var(--app-grid-gap, 0em);\n\n max-width: 100vw;\n width: 100vw;\n height: 100vh;\n height: 100dvh;\n }\n\n ox-header-bar {\n grid-area: header;\n }\n\n ox-nav-bar {\n grid-area: nav;\n }\n\n div {\n grid-area: main;\n\n display: flex;\n flex-direction: column;\n overflow: hidden;\n }\n\n main {\n flex: 1;\n\n display: flex;\n flex-direction: row;\n overflow: hidden;\n }\n\n ox-aside-bar {\n grid-area: aside;\n }\n\n ox-footer-bar {\n grid-area: footer;\n }\n\n main > * {\n flex: 1;\n }\n\n main > *:not([active]) {\n display: none;\n }\n\n [hidden] {\n display: none;\n }\n\n ox-snack-bar {\n z-index: 1000;\n }\n\n @media print {\n :host {\n width: 100%;\n height: 100%;\n min-height: 100vh;\n min-height: 100dvh;\n\n max-width: unset;\n width: unset;\n height: unset;\n height: unset;\n }\n\n main {\n /* important for printing!!! */\n display: block;\n flex: unset;\n overflow: visible;\n }\n\n ox-page-header-bar {\n display: none;\n }\n\n ox-page-footer-bar {\n display: none;\n }\n\n ox-header-bar {\n display: none;\n }\n\n ox-nav-bar {\n display: none;\n }\n\n ox-aside-bar {\n display: none;\n }\n\n ox-footer-bar {\n display: none;\n }\n\n ox-snack-bar {\n display: none;\n }\n }\n`\n"]}
@@ -1,17 +1,75 @@
1
1
  import { LitElement, PropertyValues } from 'lit';
2
+ /**
3
+ * PageView is a base class for creating page elements with lifecycle management.
4
+ * Subclasses can extend PageView to define custom behavior and handle page lifecycle events.
5
+ */
2
6
  export declare class PageView extends LitElement {
7
+ /**
8
+ * Determines whether the page can be deactivated. Subclasses can override this method
9
+ * to implement custom deactivation logic.
10
+ * @returns A Promise that resolves to true if the page can be deactivated, or false otherwise.
11
+ */
3
12
  canDeactivate(): Promise<boolean>;
13
+ /**
14
+ * Determines whether the page should update. This method is called whenever there are
15
+ * changes to the page's properties.
16
+ * @param changes - A map of changed property values.
17
+ * @returns True if the page should update, or false otherwise.
18
+ */
4
19
  shouldUpdate(changes: PropertyValues<this>): boolean;
20
+ /**
21
+ * Indicates whether the page is currently active.
22
+ */
5
23
  active: boolean;
24
+ /**
25
+ * Stores information about the page's lifecycle.
26
+ */
6
27
  lifecycle: any;
28
+ /**
29
+ * The context path for the page.
30
+ */
7
31
  contextPath?: string;
8
32
  _oldLifecycleInfo$: any;
33
+ /**
34
+ * Handles page updates and lifecycle events. Subclasses can override this method
35
+ * to implement custom logic for initializing, updating, and disposing of the page.
36
+ * @param changes - A map of changed properties.
37
+ * @param force - If true, forces an update of the page.
38
+ */
9
39
  pageUpdate(changes?: any, force?: boolean): Promise<void>;
40
+ /**
41
+ * Resets the page. Subclasses can override this method to perform custom reset logic.
42
+ */
10
43
  pageReset(): Promise<void>;
44
+ /**
45
+ * Disposes of the page. Subclasses can override this method to perform custom disposal logic.
46
+ */
11
47
  pageDispose(): Promise<void>;
48
+ /**
49
+ * Initializes the page. Subclasses can override this method to perform custom initialization logic.
50
+ * @param pageInfo - Information about the page's state.
51
+ */
12
52
  pageInitialized(pageInfo: any): void;
53
+ /**
54
+ * Handles page updates and changes in properties.
55
+ * Subclasses can override this method to implement custom update logic.
56
+ * @param changes - A map of changed properties.
57
+ * @param after - The current state of the page.
58
+ * @param before - The previous state of the page.
59
+ */
13
60
  pageUpdated(changes: any, after: any, before: any): void;
61
+ /**
62
+ * Handles the disposal of the page. Subclasses can override this method
63
+ * to implement custom disposal logic.
64
+ * @param pageInfo - Information about the page's state.
65
+ */
14
66
  pageDisposed(pageInfo: any): void;
15
67
  updateContext(override?: any): void;
68
+ /**
69
+ * Updates the context of the page. Subclasses can override the `context` getter
70
+ * to provide specific context information for the page. The context will be updated
71
+ * using the `updateContext` method inherited from PageView.
72
+ * @param override - An optional object with context properties to override.
73
+ */
16
74
  get context(): {};
17
75
  }
@@ -17,15 +17,32 @@ function diff(after, before) {
17
17
  });
18
18
  return changed && changes;
19
19
  }
20
+ /**
21
+ * PageView is a base class for creating page elements with lifecycle management.
22
+ * Subclasses can extend PageView to define custom behavior and handle page lifecycle events.
23
+ */
20
24
  export class PageView extends LitElement {
21
25
  constructor() {
22
26
  super(...arguments);
27
+ /**
28
+ * Indicates whether the page is currently active.
29
+ */
23
30
  this.active = false;
24
31
  }
32
+ /**
33
+ * Determines whether the page can be deactivated. Subclasses can override this method
34
+ * to implement custom deactivation logic.
35
+ * @returns A Promise that resolves to true if the page can be deactivated, or false otherwise.
36
+ */
25
37
  async canDeactivate() {
26
38
  return Promise.resolve(true);
27
39
  }
28
- // Only render this page if it's actually visible.
40
+ /**
41
+ * Determines whether the page should update. This method is called whenever there are
42
+ * changes to the page's properties.
43
+ * @param changes - A map of changed property values.
44
+ * @returns True if the page should update, or false otherwise.
45
+ */
29
46
  shouldUpdate(changes) {
30
47
  var active = String(this.active) == 'true';
31
48
  var { active: oldActive = false } = this._oldLifecycleInfo$ || {};
@@ -47,6 +64,12 @@ export class PageView extends LitElement {
47
64
  return active;
48
65
  }
49
66
  /* lifecycle */
67
+ /**
68
+ * Handles page updates and lifecycle events. Subclasses can override this method
69
+ * to implement custom logic for initializing, updating, and disposing of the page.
70
+ * @param changes - A map of changed properties.
71
+ * @param force - If true, forces an update of the page.
72
+ */
50
73
  async pageUpdate(changes = {}, force = false) {
51
74
  var before = this._oldLifecycleInfo$ || {};
52
75
  var after = {
@@ -96,6 +119,9 @@ export class PageView extends LitElement {
96
119
  after.active && this.updateContext();
97
120
  }
98
121
  }
122
+ /**
123
+ * Resets the page. Subclasses can override this method to perform custom reset logic.
124
+ */
99
125
  async pageReset() {
100
126
  var { initialized } = this._oldLifecycleInfo$ || {};
101
127
  if (initialized) {
@@ -103,13 +129,32 @@ export class PageView extends LitElement {
103
129
  await this.pageUpdate({}, true);
104
130
  }
105
131
  }
132
+ /**
133
+ * Disposes of the page. Subclasses can override this method to perform custom disposal logic.
134
+ */
106
135
  async pageDispose() {
107
136
  await this.pageUpdate({
108
137
  initialized: false
109
138
  });
110
139
  }
140
+ /**
141
+ * Initializes the page. Subclasses can override this method to perform custom initialization logic.
142
+ * @param pageInfo - Information about the page's state.
143
+ */
111
144
  pageInitialized(pageInfo) { }
145
+ /**
146
+ * Handles page updates and changes in properties.
147
+ * Subclasses can override this method to implement custom update logic.
148
+ * @param changes - A map of changed properties.
149
+ * @param after - The current state of the page.
150
+ * @param before - The previous state of the page.
151
+ */
112
152
  pageUpdated(changes, after, before) { }
153
+ /**
154
+ * Handles the disposal of the page. Subclasses can override this method
155
+ * to implement custom disposal logic.
156
+ * @param pageInfo - Information about the page's state.
157
+ */
113
158
  pageDisposed(pageInfo) { }
114
159
  /* context */
115
160
  updateContext(override) {
@@ -118,6 +163,12 @@ export class PageView extends LitElement {
118
163
  context: override ? { ...this.context, ...override } : this.context
119
164
  });
120
165
  }
166
+ /**
167
+ * Updates the context of the page. Subclasses can override the `context` getter
168
+ * to provide specific context information for the page. The context will be updated
169
+ * using the `updateContext` method inherited from PageView.
170
+ * @param override - An optional object with context properties to override.
171
+ */
121
172
  get context() {
122
173
  return {};
123
174
  }
@@ -1 +1 @@
1
- {"version":3,"file":"page-view.js","sourceRoot":"","sources":["../../../../src/app/pages/page-view.ts"],"names":[],"mappings":"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","sourcesContent":["import { LitElement, PropertyValues } from 'lit'\nimport { property } from 'lit/decorators.js'\nimport isEqual from 'lodash-es/isEqual'\n\nimport { UPDATE_CONTEXT } from '../../actions/const'\nimport { store } from '../../store'\n\nfunction diff(after: any, before: any): any {\n var changed = false\n var changes: { [key: string]: any } = {}\n\n Object.getOwnPropertyNames(after).forEach(function (key) {\n let before_val = before[key]\n let after_val = after[key]\n\n if (!isEqual(before_val, after_val)) {\n changes[key] = after_val\n changed = true\n }\n })\n\n return changed && changes\n}\n\nexport class PageView extends LitElement {\n async canDeactivate(): Promise<boolean> {\n return Promise.resolve(true)\n }\n\n // Only render this page if it's actually visible.\n shouldUpdate(changes: PropertyValues<this>) {\n var active = String(this.active) == 'true'\n var { active: oldActive = false } = this._oldLifecycleInfo$ || {}\n\n /*\n * page lifecycle\n * case 1. page가 새로 activate 되었다.\n * case 2. page가 active 상태에서 lifecycle 정보가 바뀌었다.\n **/\n if (active) {\n this.pageUpdate({\n active\n })\n } else if (oldActive) {\n this.pageUpdate({\n active\n })\n }\n\n return active\n }\n\n @property({ type: Boolean }) active: boolean = false\n @property({ type: Object }) lifecycle: any\n @property({ type: String, attribute: 'context-path' }) contextPath?: string\n\n _oldLifecycleInfo$: any\n\n /* lifecycle */\n async pageUpdate(changes: any = {}, force: boolean = false) {\n var before = this._oldLifecycleInfo$ || {}\n\n var after = {\n ...before,\n ...this.lifecycle,\n contextPath: this.contextPath,\n ...changes\n }\n\n if (!('initialized' in changes) && after.active && !before.initialized) {\n after.initialized = true\n }\n\n if (force) {\n after.updated = Date.now()\n }\n\n var changed = diff(after, before)\n if (!changed) {\n return\n }\n\n this._oldLifecycleInfo$ = after\n\n /* page의 이미 초기화된 상태에서 contextPath가 바뀐다면, 무조건 page가 리셋되어야 한다. */\n if (before.initialized && changed.contextPath) {\n await this.pageReset()\n return\n }\n\n if (changed.initialized) {\n await this.pageInitialized(after)\n }\n\n if ('initialized' in changed) {\n if (changed.initialized) {\n /*\n * 방금 초기화된 경우라면, 엘리먼트들이 만들어지지 않았을 가능성이 있으므로,\n * 다음 animationFrame에서 pageUpdated 콜백을 호출한다.\n */\n requestAnimationFrame(async () => {\n await this.pageUpdated(changed, after, before)\n /* active page인 경우에는, page Context 갱신도 필요할 것이다. */\n after.active && this.updateContext()\n })\n } else {\n await this.pageDisposed(after)\n }\n } else {\n await this.pageUpdated(changed, after, before)\n /* active page인 경우에는, page Context 갱신도 필요할 것이다. */\n after.active && this.updateContext()\n }\n }\n\n async pageReset() {\n var { initialized } = this._oldLifecycleInfo$ || {}\n\n if (initialized) {\n await this.pageDispose()\n await this.pageUpdate({}, true)\n }\n }\n\n async pageDispose() {\n await this.pageUpdate({\n initialized: false\n })\n }\n\n pageInitialized(pageInfo: any) {}\n pageUpdated(changes: any, after: any, before: any) {}\n pageDisposed(pageInfo: any) {}\n\n /* context */\n updateContext(override?: any) {\n store.dispatch({\n type: UPDATE_CONTEXT,\n context: override ? { ...this.context, ...override } : this.context\n })\n }\n\n get context() {\n return {}\n }\n}\n"]}
1
+ {"version":3,"file":"page-view.js","sourceRoot":"","sources":["../../../../src/app/pages/page-view.ts"],"names":[],"mappings":"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","sourcesContent":["import { LitElement, PropertyValues } from 'lit'\nimport { property } from 'lit/decorators.js'\nimport isEqual from 'lodash-es/isEqual'\n\nimport { UPDATE_CONTEXT } from '../../actions/const'\nimport { store } from '../../store'\n\nfunction diff(after: any, before: any): any {\n var changed = false\n var changes: { [key: string]: any } = {}\n\n Object.getOwnPropertyNames(after).forEach(function (key) {\n let before_val = before[key]\n let after_val = after[key]\n\n if (!isEqual(before_val, after_val)) {\n changes[key] = after_val\n changed = true\n }\n })\n\n return changed && changes\n}\n\n/**\n * PageView is a base class for creating page elements with lifecycle management.\n * Subclasses can extend PageView to define custom behavior and handle page lifecycle events.\n */\nexport class PageView extends LitElement {\n /**\n * Determines whether the page can be deactivated. Subclasses can override this method\n * to implement custom deactivation logic.\n * @returns A Promise that resolves to true if the page can be deactivated, or false otherwise.\n */\n async canDeactivate(): Promise<boolean> {\n return Promise.resolve(true)\n }\n\n /**\n * Determines whether the page should update. This method is called whenever there are\n * changes to the page's properties.\n * @param changes - A map of changed property values.\n * @returns True if the page should update, or false otherwise.\n */\n shouldUpdate(changes: PropertyValues<this>) {\n var active = String(this.active) == 'true'\n var { active: oldActive = false } = this._oldLifecycleInfo$ || {}\n\n /*\n * page lifecycle\n * case 1. page가 새로 activate 되었다.\n * case 2. page가 active 상태에서 lifecycle 정보가 바뀌었다.\n **/\n if (active) {\n this.pageUpdate({\n active\n })\n } else if (oldActive) {\n this.pageUpdate({\n active\n })\n }\n\n return active\n }\n\n /**\n * Indicates whether the page is currently active.\n */\n @property({ type: Boolean }) active: boolean = false\n\n /**\n * Stores information about the page's lifecycle.\n */\n @property({ type: Object }) lifecycle: any\n\n /**\n * The context path for the page.\n */\n @property({ type: String, attribute: 'context-path' }) contextPath?: string\n\n _oldLifecycleInfo$: any\n\n /* lifecycle */\n\n /**\n * Handles page updates and lifecycle events. Subclasses can override this method\n * to implement custom logic for initializing, updating, and disposing of the page.\n * @param changes - A map of changed properties.\n * @param force - If true, forces an update of the page.\n */\n async pageUpdate(changes: any = {}, force: boolean = false) {\n var before = this._oldLifecycleInfo$ || {}\n\n var after = {\n ...before,\n ...this.lifecycle,\n contextPath: this.contextPath,\n ...changes\n }\n\n if (!('initialized' in changes) && after.active && !before.initialized) {\n after.initialized = true\n }\n\n if (force) {\n after.updated = Date.now()\n }\n\n var changed = diff(after, before)\n if (!changed) {\n return\n }\n\n this._oldLifecycleInfo$ = after\n\n /* page의 이미 초기화된 상태에서 contextPath가 바뀐다면, 무조건 page가 리셋되어야 한다. */\n if (before.initialized && changed.contextPath) {\n await this.pageReset()\n return\n }\n\n if (changed.initialized) {\n await this.pageInitialized(after)\n }\n\n if ('initialized' in changed) {\n if (changed.initialized) {\n /*\n * 방금 초기화된 경우라면, 엘리먼트들이 만들어지지 않았을 가능성이 있으므로,\n * 다음 animationFrame에서 pageUpdated 콜백을 호출한다.\n */\n requestAnimationFrame(async () => {\n await this.pageUpdated(changed, after, before)\n /* active page인 경우에는, page Context 갱신도 필요할 것이다. */\n after.active && this.updateContext()\n })\n } else {\n await this.pageDisposed(after)\n }\n } else {\n await this.pageUpdated(changed, after, before)\n /* active page인 경우에는, page Context 갱신도 필요할 것이다. */\n after.active && this.updateContext()\n }\n }\n\n /**\n * Resets the page. Subclasses can override this method to perform custom reset logic.\n */\n async pageReset() {\n var { initialized } = this._oldLifecycleInfo$ || {}\n\n if (initialized) {\n await this.pageDispose()\n await this.pageUpdate({}, true)\n }\n }\n\n /**\n * Disposes of the page. Subclasses can override this method to perform custom disposal logic.\n */\n async pageDispose() {\n await this.pageUpdate({\n initialized: false\n })\n }\n\n /**\n * Initializes the page. Subclasses can override this method to perform custom initialization logic.\n * @param pageInfo - Information about the page's state.\n */\n pageInitialized(pageInfo: any) {}\n\n /**\n * Handles page updates and changes in properties.\n * Subclasses can override this method to implement custom update logic.\n * @param changes - A map of changed properties.\n * @param after - The current state of the page.\n * @param before - The previous state of the page.\n */\n pageUpdated(changes: any, after: any, before: any) {}\n\n /**\n * Handles the disposal of the page. Subclasses can override this method\n * to implement custom disposal logic.\n * @param pageInfo - Information about the page's state.\n */\n pageDisposed(pageInfo: any) {}\n\n /* context */\n updateContext(override?: any) {\n store.dispatch({\n type: UPDATE_CONTEXT,\n context: override ? { ...this.context, ...override } : this.context\n })\n }\n\n /**\n * Updates the context of the page. Subclasses can override the `context` getter\n * to provide specific context information for the page. The context will be updated\n * using the `updateContext` method inherited from PageView.\n * @param override - An optional object with context properties to override.\n */\n get context() {\n return {}\n }\n}\n"]}
@@ -1 +1 @@
1
- {"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.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.intl.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../@types/global/index.d.ts","../../../node_modules/tslib/tslib.d.ts","../src/types/domain.ts","../src/types/user.ts","../src/types/role.ts","../src/types/privilege.ts","../src/types/types.ts","../src/types/index.ts","../../../node_modules/redux/index.d.ts","../../../node_modules/pwa-helpers/lazy-reducer-enhancer.d.ts","../../../node_modules/redux-thunk/es/types.d.ts","../../../node_modules/redux-thunk/es/index.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/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/checker.d.ts","../../utils/dist/src/index.d.ts","../src/actions/app.ts","../src/reducers/app.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/startcase.d.ts","../../../node_modules/pwa-helpers/metadata.d.ts","../src/actions/const.ts","../src/reducers/route.ts","../../graphql/dist/src/gql-context.d.ts","../../../node_modules/graphql/version.d.ts","../../../node_modules/graphql/jsutils/maybe.d.ts","../../../node_modules/graphql/language/source.d.ts","../../../node_modules/graphql/jsutils/objmap.d.ts","../../../node_modules/graphql/jsutils/path.d.ts","../../../node_modules/graphql/jsutils/promiseorvalue.d.ts","../../../node_modules/graphql/language/kinds.d.ts","../../../node_modules/graphql/language/tokenkind.d.ts","../../../node_modules/graphql/language/ast.d.ts","../../../node_modules/graphql/language/location.d.ts","../../../node_modules/graphql/error/graphqlerror.d.ts","../../../node_modules/graphql/language/directivelocation.d.ts","../../../node_modules/graphql/type/directives.d.ts","../../../node_modules/graphql/type/schema.d.ts","../../../node_modules/graphql/type/definition.d.ts","../../../node_modules/graphql/execution/execute.d.ts","../../../node_modules/graphql/graphql.d.ts","../../../node_modules/graphql/type/scalars.d.ts","../../../node_modules/graphql/type/introspection.d.ts","../../../node_modules/graphql/type/validate.d.ts","../../../node_modules/graphql/type/assertname.d.ts","../../../node_modules/graphql/type/index.d.ts","../../../node_modules/graphql/language/printlocation.d.ts","../../../node_modules/graphql/language/lexer.d.ts","../../../node_modules/graphql/language/parser.d.ts","../../../node_modules/graphql/language/printer.d.ts","../../../node_modules/graphql/language/visitor.d.ts","../../../node_modules/graphql/language/predicates.d.ts","../../../node_modules/graphql/language/index.d.ts","../../../node_modules/graphql/execution/subscribe.d.ts","../../../node_modules/graphql/execution/values.d.ts","../../../node_modules/graphql/execution/index.d.ts","../../../node_modules/graphql/subscription/index.d.ts","../../../node_modules/graphql/utilities/typeinfo.d.ts","../../../node_modules/graphql/validation/validationcontext.d.ts","../../../node_modules/graphql/validation/validate.d.ts","../../../node_modules/graphql/validation/specifiedrules.d.ts","../../../node_modules/graphql/validation/rules/executabledefinitionsrule.d.ts","../../../node_modules/graphql/validation/rules/fieldsoncorrecttyperule.d.ts","../../../node_modules/graphql/validation/rules/fragmentsoncompositetypesrule.d.ts","../../../node_modules/graphql/validation/rules/knownargumentnamesrule.d.ts","../../../node_modules/graphql/validation/rules/knowndirectivesrule.d.ts","../../../node_modules/graphql/validation/rules/knownfragmentnamesrule.d.ts","../../../node_modules/graphql/validation/rules/knowntypenamesrule.d.ts","../../../node_modules/graphql/validation/rules/loneanonymousoperationrule.d.ts","../../../node_modules/graphql/validation/rules/nofragmentcyclesrule.d.ts","../../../node_modules/graphql/validation/rules/noundefinedvariablesrule.d.ts","../../../node_modules/graphql/validation/rules/nounusedfragmentsrule.d.ts","../../../node_modules/graphql/validation/rules/nounusedvariablesrule.d.ts","../../../node_modules/graphql/validation/rules/overlappingfieldscanbemergedrule.d.ts","../../../node_modules/graphql/validation/rules/possiblefragmentspreadsrule.d.ts","../../../node_modules/graphql/validation/rules/providedrequiredargumentsrule.d.ts","../../../node_modules/graphql/validation/rules/scalarleafsrule.d.ts","../../../node_modules/graphql/validation/rules/singlefieldsubscriptionsrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueargumentnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniquedirectivesperlocationrule.d.ts","../../../node_modules/graphql/validation/rules/uniquefragmentnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueinputfieldnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueoperationnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniquevariablenamesrule.d.ts","../../../node_modules/graphql/validation/rules/valuesofcorrecttyperule.d.ts","../../../node_modules/graphql/validation/rules/variablesareinputtypesrule.d.ts","../../../node_modules/graphql/validation/rules/variablesinallowedpositionrule.d.ts","../../../node_modules/graphql/validation/rules/loneschemadefinitionrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueoperationtypesrule.d.ts","../../../node_modules/graphql/validation/rules/uniquetypenamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueenumvaluenamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniquefielddefinitionnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueargumentdefinitionnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniquedirectivenamesrule.d.ts","../../../node_modules/graphql/validation/rules/possibletypeextensionsrule.d.ts","../../../node_modules/graphql/validation/rules/custom/nodeprecatedcustomrule.d.ts","../../../node_modules/graphql/validation/rules/custom/noschemaintrospectioncustomrule.d.ts","../../../node_modules/graphql/validation/index.d.ts","../../../node_modules/graphql/error/syntaxerror.d.ts","../../../node_modules/graphql/error/locatederror.d.ts","../../../node_modules/graphql/error/index.d.ts","../../../node_modules/graphql/utilities/getintrospectionquery.d.ts","../../../node_modules/graphql/utilities/getoperationast.d.ts","../../../node_modules/graphql/utilities/getoperationroottype.d.ts","../../../node_modules/graphql/utilities/introspectionfromschema.d.ts","../../../node_modules/graphql/utilities/buildclientschema.d.ts","../../../node_modules/graphql/utilities/buildastschema.d.ts","../../../node_modules/graphql/utilities/extendschema.d.ts","../../../node_modules/graphql/utilities/lexicographicsortschema.d.ts","../../../node_modules/graphql/utilities/printschema.d.ts","../../../node_modules/graphql/utilities/typefromast.d.ts","../../../node_modules/graphql/utilities/valuefromast.d.ts","../../../node_modules/graphql/utilities/valuefromastuntyped.d.ts","../../../node_modules/graphql/utilities/astfromvalue.d.ts","../../../node_modules/graphql/utilities/coerceinputvalue.d.ts","../../../node_modules/graphql/utilities/concatast.d.ts","../../../node_modules/graphql/utilities/separateoperations.d.ts","../../../node_modules/graphql/utilities/stripignoredcharacters.d.ts","../../../node_modules/graphql/utilities/typecomparators.d.ts","../../../node_modules/graphql/utilities/assertvalidname.d.ts","../../../node_modules/graphql/utilities/findbreakingchanges.d.ts","../../../node_modules/graphql/utilities/typedquerydocumentnode.d.ts","../../../node_modules/graphql/utilities/index.d.ts","../../../node_modules/graphql/index.d.ts","../../../node_modules/ts-invariant/lib/invariant.d.ts","../../../node_modules/@apollo/client/invarianterrorcodes.d.ts","../../../node_modules/@apollo/client/utilities/globals/invariantwrappers.d.ts","../../../node_modules/@apollo/client/utilities/globals/maybe.d.ts","../../../node_modules/@apollo/client/utilities/globals/global.d.ts","../../../node_modules/@apollo/client/utilities/globals/index.d.ts","../../../node_modules/@apollo/client/utilities/graphql/directives.d.ts","../../../node_modules/@apollo/client/utilities/graphql/documenttransform.d.ts","../../../node_modules/@apollo/client/utilities/graphql/fragments.d.ts","../../../node_modules/@apollo/client/utilities/graphql/getfromast.d.ts","../../../node_modules/@apollo/client/utilities/graphql/print.d.ts","../../../node_modules/@apollo/client/utilities/graphql/storeutils.d.ts","../../../node_modules/@apollo/client/utilities/graphql/transform.d.ts","../../../node_modules/@apollo/client/utilities/graphql/operations.d.ts","../../../node_modules/@graphql-typed-document-node/core/typings/index.d.ts","../../../node_modules/@apollo/client/node_modules/@wry/trie/lib/index.d.ts","../../../node_modules/@apollo/client/cache/core/types/cache.d.ts","../../../node_modules/@apollo/client/cache/inmemory/entitystore.d.ts","../../../node_modules/@apollo/client/cache/inmemory/fragmentregistry.d.ts","../../../node_modules/@apollo/client/cache/inmemory/types.d.ts","../../../node_modules/@apollo/client/cache/inmemory/fixpolyfills.d.ts","../../../node_modules/@apollo/client/cache/inmemory/reactivevars.d.ts","../../../node_modules/@apollo/client/cache/inmemory/inmemorycache.d.ts","../../../node_modules/@apollo/client/cache/inmemory/object-canon.d.ts","../../../node_modules/@apollo/client/cache/inmemory/readfromstore.d.ts","../../../node_modules/@apollo/client/cache/inmemory/writetostore.d.ts","../../../node_modules/@apollo/client/cache/inmemory/policies.d.ts","../../../node_modules/@apollo/client/cache/core/types/common.d.ts","../../../node_modules/@apollo/client/cache/core/types/dataproxy.d.ts","../../../node_modules/@apollo/client/cache/core/cache.d.ts","../../../node_modules/@apollo/client/cache/inmemory/helpers.d.ts","../../../node_modules/@apollo/client/cache/index.d.ts","../../../node_modules/@apollo/client/utilities/policies/pagination.d.ts","../../../node_modules/zen-observable-ts/module.d.ts","../../../node_modules/symbol-observable/index.d.ts","../../../node_modules/@apollo/client/utilities/observables/observable.d.ts","../../../node_modules/@apollo/client/utilities/promises/decoration.d.ts","../../../node_modules/@apollo/client/utilities/common/objects.d.ts","../../../node_modules/@apollo/client/utilities/common/mergedeep.d.ts","../../../node_modules/@apollo/client/utilities/common/clonedeep.d.ts","../../../node_modules/@apollo/client/utilities/common/maybedeepfreeze.d.ts","../../../node_modules/@apollo/client/utilities/observables/iteration.d.ts","../../../node_modules/@apollo/client/utilities/observables/asyncmap.d.ts","../../../node_modules/@apollo/client/utilities/observables/concast.d.ts","../../../node_modules/@apollo/client/utilities/observables/subclassing.d.ts","../../../node_modules/@apollo/client/utilities/common/arrays.d.ts","../../../node_modules/@apollo/client/utilities/common/errorhandling.d.ts","../../../node_modules/@apollo/client/utilities/common/canuse.d.ts","../../../node_modules/@apollo/client/utilities/common/compact.d.ts","../../../node_modules/@apollo/client/utilities/common/makeuniqueid.d.ts","../../../node_modules/@apollo/client/utilities/common/stringifyfordisplay.d.ts","../../../node_modules/@apollo/client/utilities/common/mergeoptions.d.ts","../../../node_modules/@apollo/client/utilities/common/incrementalresult.d.ts","../../../node_modules/@apollo/client/utilities/types/primitive.d.ts","../../../node_modules/@apollo/client/utilities/types/deepomit.d.ts","../../../node_modules/@apollo/client/utilities/common/omitdeep.d.ts","../../../node_modules/@apollo/client/utilities/common/striptypename.d.ts","../../../node_modules/@apollo/client/utilities/types/isstrictlyany.d.ts","../../../node_modules/@apollo/client/utilities/types/deeppartial.d.ts","../../../node_modules/@apollo/client/utilities/index.d.ts","../../../node_modules/@apollo/client/link/core/types.d.ts","../../../node_modules/@apollo/client/link/core/apollolink.d.ts","../../../node_modules/@apollo/client/link/core/empty.d.ts","../../../node_modules/@apollo/client/link/core/from.d.ts","../../../node_modules/@apollo/client/link/core/split.d.ts","../../../node_modules/@apollo/client/link/core/concat.d.ts","../../../node_modules/@apollo/client/link/core/execute.d.ts","../../../node_modules/@apollo/client/link/core/index.d.ts","../../../node_modules/@apollo/client/link/http/parseandcheckhttpresponse.d.ts","../../../node_modules/@apollo/client/link/http/serializefetchparameter.d.ts","../../../node_modules/@apollo/client/link/http/selecthttpoptionsandbody.d.ts","../../../node_modules/@apollo/client/link/http/checkfetcher.d.ts","../../../node_modules/@apollo/client/link/http/createsignalifsupported.d.ts","../../../node_modules/@apollo/client/link/http/selecturi.d.ts","../../../node_modules/@apollo/client/link/http/createhttplink.d.ts","../../../node_modules/@apollo/client/link/http/httplink.d.ts","../../../node_modules/@apollo/client/link/http/rewriteuriforget.d.ts","../../../node_modules/@apollo/client/link/http/index.d.ts","../../../node_modules/@apollo/client/core/networkstatus.d.ts","../../../node_modules/@apollo/client/link/utils/fromerror.d.ts","../../../node_modules/@apollo/client/link/utils/topromise.d.ts","../../../node_modules/@apollo/client/link/utils/frompromise.d.ts","../../../node_modules/@apollo/client/link/utils/throwservererror.d.ts","../../../node_modules/@apollo/client/link/utils/validateoperation.d.ts","../../../node_modules/@apollo/client/link/utils/createoperation.d.ts","../../../node_modules/@apollo/client/link/utils/transformoperation.d.ts","../../../node_modules/@apollo/client/link/utils/filteroperationvariables.d.ts","../../../node_modules/@apollo/client/link/utils/index.d.ts","../../../node_modules/@apollo/client/errors/index.d.ts","../../../node_modules/@apollo/client/core/queryinfo.d.ts","../../../node_modules/@apollo/client/core/localstate.d.ts","../../../node_modules/@apollo/client/core/types.d.ts","../../../node_modules/@apollo/client/core/watchqueryoptions.d.ts","../../../node_modules/@apollo/client/core/querymanager.d.ts","../../../node_modules/@apollo/client/core/observablequery.d.ts","../../../node_modules/@apollo/client/core/apolloclient.d.ts","../../../node_modules/graphql-tag/lib/index.d.ts","../../../node_modules/@apollo/client/core/index.d.ts","../../graphql/dist/src/graphql-client.d.ts","../../graphql/dist/src/json-to-grqphql-query.d.ts","../../graphql/dist/src/active-request-counter-link.d.ts","../../graphql/dist/src/index.d.ts","../src/actions/busy.ts","../src/reducers/busy.ts","../src/store.ts","../src/actions/route.ts","../src/actions/index.ts","../../../node_modules/@lit/reactive-element/css-tag.d.ts","../../../node_modules/@lit/reactive-element/reactive-controller.d.ts","../../../node_modules/@lit/reactive-element/reactive-element.d.ts","../../../node_modules/@types/trusted-types/lib/index.d.ts","../../../node_modules/@types/trusted-types/index.d.ts","../../../node_modules/lit/node_modules/lit-html/directive.d.ts","../../../node_modules/lit/node_modules/lit-html/lit-html.d.ts","../../../node_modules/lit-element/node_modules/lit-html/lit-html.d.ts","../../../node_modules/lit-element/lit-element.d.ts","../../../node_modules/lit/node_modules/lit-html/is-server.d.ts","../../../node_modules/lit/index.d.ts","../../../node_modules/@lit/reactive-element/decorators/base.d.ts","../../../node_modules/@lit/reactive-element/decorators/custom-element.d.ts","../../../node_modules/@lit/reactive-element/decorators/property.d.ts","../../../node_modules/@lit/reactive-element/decorators/state.d.ts","../../../node_modules/@lit/reactive-element/decorators/event-options.d.ts","../../../node_modules/@lit/reactive-element/decorators/query.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-all.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-async.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-assigned-nodes.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-assigned-elements.d.ts","../../../node_modules/lit/decorators.d.ts","../../../node_modules/@types/lodash-es/isequal.d.ts","../src/app/pages/page-view.ts","../src/object-store.ts","../src/index.ts","../src/app/app-style.ts","../../../node_modules/pwa-helpers/connect-mixin.d.ts","../../../node_modules/pwa-helpers/router.d.ts","../../styles/dist/src/headroom-styles.d.ts","../../styles/dist/src/scrollbar-styles.d.ts","../../styles/dist/src/spinner-styles.d.ts","../../styles/dist/src/tooltip-styles.d.ts","../../styles/dist/src/common-button-styles.d.ts","../../styles/dist/src/common-grist-styles.d.ts","../../styles/dist/src/button-container-styles.d.ts","../../styles/dist/src/common-header-styles.d.ts","../../styles/dist/src/index.d.ts","../src/app/app.ts","../src/app/pages/page-404.ts","../../../node_modules/@material/base/foundation.d.ts","../../../node_modules/@material/mwc-base/utils.d.ts","../../../node_modules/@material/base/types.d.ts","../../../node_modules/@material/mwc-base/base-element.d.ts","../../../node_modules/@material/ripple/types.d.ts","../../../node_modules/@material/ripple/adapter.d.ts","../../../node_modules/@material/ripple/foundation.d.ts","../../../node_modules/@material/mwc-ripple/mwc-ripple-base.d.ts","../../../node_modules/@material/mwc-ripple/mwc-ripple.d.ts","../../../node_modules/@material/mwc-base/aria-property.d.ts","../../../node_modules/@material/mwc-ripple/ripple-handlers.d.ts","../../../node_modules/@material/mwc-icon-button/mwc-icon-button-base.d.ts","../../../node_modules/@material/mwc-icon-button/mwc-icon-button.d.ts","../../../node_modules/@material/mwc-icon/mwc-icon.d.ts","../../../node_modules/lit/node_modules/lit-html/directives/class-map.d.ts","../../../node_modules/lit/directives/class-map.d.ts","../../../node_modules/@material/mwc-button/mwc-button-base.d.ts","../../../node_modules/@material/mwc-button/mwc-button.d.ts","../src/entries/public/home.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/file.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/filereader.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/index.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/dom-events.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/mocha/index.d.ts"],"fileInfos":[{"version":"f33e5332b24c3773e930e212cbb8b6867c8ba3ec4492064ea78e55a524d57450","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","26f2f787e82c4222710f3b676b4d83eb5ad0a72fa7b746f03449e7a026ce5073","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"21e41a76098aa7a191028256e52a726baafd45a925ea5cf0222eb430c96c1d83","affectsGlobalScope":true},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"e0275cd0e42990dc3a16f0b7c8bca3efe87f1c8ad404f80c6db1c7c0b828c59f","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"acae90d417bee324b1372813b5a00829d31c7eb670d299cd7f8f9a648ac05688","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"439ece86b8b4d4af78af97e74d373ae1cd657c7169f4dee55038648217ca9fcf","7a1971efcba559ea9002ada4c4e3c925004fb67a755300d53b5edf9399354900",{"version":"99b772888fd71e82f91719a3a92aaa4fc69b2116caf91bfb64dd5edd77e9f635","signature":"4d4cf93a6b4c81851ad759e4569b6feb7a701e80b13a6f9d8d9c6012bbb86bd6"},{"version":"3c95b84d9e94d627563fb5831f395e301262c97d9c1698eea3fee971df6cb5ef","signature":"2e6035af8f3e43bf95e4983329c8277d66f9b271106af27b99a85d1c1b9daf4a"},{"version":"ceb0826ca35e1d2593e91abca066a1fefbbc6c04cea71a7c85ee9c28c0949fad","signature":"774308610e8d4a9954cd93840f99decbf340accfe3ad7365547950ede8162c92"},{"version":"e4150841614359d71012379b3fff85faeb01ebb5d5e46f5dfb4752f7bcd3fbfa","signature":"36c15dd26c66c97b9df26ce34baacdb13fc760c5b9a2d789dcc317d27b189257"},{"version":"59fe9df072abeac18b929473e0b8e7f61639bdea15303e57575b0c4b4adcd104","signature":"3d7c0b593a29d717b2b2ba3f03f819c3c48bf9e250d79c4a31860af80f177e8c"},{"version":"d4f20ff8892b737b1c9634f1a3c4cb8f9e71818f006d8a82b9e46fab359b7158","signature":"f228d440342f5d0933f5db093aafab2f07de24a427b4488ccfae27b7457d7666"},{"version":"fd624f7d7b264922476685870f08c5e1c6d6a0f05dee2429a9747b41f6b699d4","affectsGlobalScope":true},"701978f3975f96e76e3ffc2e1762e3a97e3d323812049fb6fdfd559579b89708","d50a158fc581be7b1c51253ad33cb29c0a8ce3c42ca38775ffadf104c36376d0","1f2cdbf59d0b7933678a64ac26ae2818c48ff9ebf93249dde775dc3e173e16bf","05cfea0488751015b0b85911b6cdcde7c6cebdd9b8cada1ec0b5c1736357a552","7bc8c357aad90fb446b9baa522b1bed5901d1a1cbc59a7a658d64546c97999b4","4d5e201faa4bceca840b652dfc10795170c061f498e19429a06e056490aa69aa","97148bcf59cdf0e725f81c39df7acd2174a4edf5f739b275669f4d58c8bdce47","fc5a5d8060efb1270b9d98ce50e6eb8900cc5229603d7afb73c7f4b4272e0d9c","f8c86fcbfb0a1e69a0ed28d3249cc33c312fa23a39c17e15cbbcc539bdcdc303","85e0f00b17c3ae8cd88438c754a2c43f4a9361e685b97a70e52e33afbf62488f","39d2d450df6efbf38585fd316f18922c8ac3fdfd4c3fc412d0bee34e2bc86378","7470dedadf72566f57f46fa8a8950afe388a4e90935b4e4b3d33add9a611929d","90feb2c17c1fd53720e1dd8738c6660aa14402394bb30caed6f2a7cdd54fea40","75f8b003f4362cb9a9e1d9d8b00c6a1e866868f05b27ede146dd8830b675bdf7","7b61337d7e26f5f9329b74dffb93941388d97b78282f611363d8dafa37d0a2a0","70926949fb828e317443687c9f3b5288e1ef6ec1e5130c1001f406b4ba3665ff","f499d7fb533781939c7a5ab778ac6e6c8ffe65601b1a61a843c36ee0013f05b6","572e62cf5f264524b956685124bdbfd9651c8f628129b627080657281090ea43","c8f7da57a17479145ea922b90a1efb2ff8e8096992bb0a4658606c9fbd944efc","28b3ab6f54b290c19897dff3d4346b7f1caf6e7d2057119ec6332dc1ddf25e85","1e73d612f806d183d6c16c4135c16c1a14dd827c1a67097e72ab1841852bfcb9","f39f94e8457643c4a7361d5a7330c705ae5921067b639228af3e961b9b71ae6f","cb2de9f1d7d286191834eeb331d23dc69eeb322745114ddad1695e4c575b5feb","1af57b9c3dfcb7ced92c247d202b6633b57803511794de4f9d68e331fcb21963","13a5d8ec52111b64ed8fdcb47ab664b60085733c46c44aede33fd2926840ac31","3d756f378335d282346d9c6d93a05f6f6c884ac93aaa67525c7d127ce9454c9d",{"version":"7b48718e216c87c95034533cb162482b9e7d8135b830089e31796aa192b45e29","signature":"641089f0b8094ef74b9d4b3364d5dec1592d5e3b8a51c1ba491bc8872049e79a"},{"version":"7ed9e9171143f9e565a55d9b9e8b52a70946490021141395ed8a6083d2026bc1","signature":"c0dab6e6130fcc1162e18e1d7ee3038525ee9daebaa8f4f221fb67440ae38509"},"b8442e9db28157344d1bc5d8a5a256f1692de213f0c0ddeb84359834015a008c","458111fc89d11d2151277c822dfdc1a28fa5b6b2493cf942e37d4cd0a6ee5f22","da2b6356b84a40111aaecb18304ea4e4fcb43d70efb1c13ca7d7a906445ee0d3","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","6f294731b495c65ecf46a5694f0082954b961cf05463bea823f8014098eaffa0","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","68a0d0c508e1b6d8d23a519a8a0a3303dc5baa4849ca049f21e5bad41945e3fc","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","b03afe4bec768ae333582915146f48b161e567a81b5ebc31c4d78af089770ac9","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","4f6a12044ee6f458db11964153830abbc499e73d065c51c329ec97407f4b13dd","4d180dd4d0785f2cd140bc069d56285d0121d95b53e4348feb4f62db2d7035d3","66e64ed8de436d3ceabe6c3f59dd0a39a5237991bccfda5751c78d129e436f68",{"version":"93621eb03f607927957920ba4eef6f8b6fb0898ed79e848cc533344907b8f1eb","signature":"7af29b0589483f7bb8a99405ddb849f34bc053146184561ed4179e02f5fe4d0f"},{"version":"aeb7e98e44ccf93b887e377de3182b9382e8b0f8047eae1f40eca0985486280a","signature":"7611542379a72f7b8a92110271908b9d1913d72a581e14a779491c9083dc33db"},"7d54d48a4365f355a7759b1e29f43dea9163a9445d3f26e1234dea0af3e6a16d","78647004e18e4c16b8a2e8345fca9267573d1c5a29e11ddfee71858fd077ef6e","0804044cd0488cb7212ddbc1d0f8e1a5bd32970335dbfc613052304a1b0318f9","b725acb041d2a18fde8f46c48a1408418489c4aa222f559b1ef47bf267cb4be0","85084ae98c1d319e38ef99b1216d3372a9afd7a368022c01c3351b339d52cb58","898ec2410fae172e0a9416448b0838bed286322a5c0c8959e8e39400cd4c5697","692345a43bac37c507fa7065c554258435ab821bbe4fb44b513a70063e932b45","cddd50d7bd9d7fddda91a576db9f61655d1a55e2d870f154485812f6e39d4c15","0539583b089247b73a21eb4a5f7e43208a129df6300d6b829dc1039b79b6c8c4","7aba43bc7764fcd02232382c780c3e99ef8dbfdac3c58605a0b3781fab3d8044","522edc786ed48304671b935cf7d3ed63acc6636ab9888c6e130b97a6aea92b46","1e1ed5600d80406a10428e349af8b6f09949cd5054043ea8588903e8f9e8d705","de21641eb8edcbc08dd0db4ee70eea907cd07fe72267340b5571c92647f10a77","a53039ba614075aeb702271701981babbd0d4f4dcbf319ddee4c08fb8196cc7a","6758f7b72fa4d38f4f4b865516d3d031795c947a45cc24f2cfba43c91446d678","da679a5bb46df3c6d84f637f09e6689d6c2d07e907ea16adc161e4529a4954d6","dc1a664c33f6ddd2791569999db2b3a476e52c5eeb5474768ffa542b136d78c0","bdf7abbd7df4f29b3e0728684c790e80590b69d92ed8d3bf8e66d4bd713941fe","8decb32fc5d44b403b46c3bb4741188df4fbc3c66d6c65669000c5c9cd506523","4beaf337ee755b8c6115ff8a17e22ceab986b588722a52c776b8834af64e0f38","c26dd198f2793bbdcc55103823a2767d6223a7fdb92486c18b86deaf63208354","93551b302a808f226f0846ad8012354f2d53d6dedc33b540d6ca69836781a574","f0ff1c010d5046af3874d3b4df746c6f3921e4b3fbdec61dee0792fc0cb36ccd","778b684ebc6b006fcffeab77d25b34bf6e400100e0ec0c76056e165c6399ab05","463851fa993af55fb0296e0d6afa27407ef91bf6917098dd665aba1200d250c7","67c6de7a9c490bda48eb401bea93904b6bbfc60e47427e887e6a3da6195540be","be8f369f8d7e887eab87a3e4e41f1afcf61bf06056801383152aa83bda1f6a72","352bfb5f3a9d8a9c2464ad2dc0b2dc56a8212650a541fb550739c286dd341de1","a5aae636d9afdacb22d98e4242487436d8296e5a345348325ccc68481fe1b690","d007c769e33e72e51286b816d82cd7c3a280cba714e7f958691155068bd7150a","764150c107451d2fd5b6de305cff0a9dcecf799e08e6f14b5a6748724db46d8a","b04cf223c338c09285010f5308b980ee6d8bfa203824ed2537516f15e92e8c43","4b387f208d1e468193a45a51005b1ed5b666010fc22a15dc1baf4234078b636e","70441eda704feffd132be0c1541f2c7f6bbaafce25cb9b54b181e26af3068e79","d1addb12403afea87a1603121396261a45190886c486c88e1a5d456be17c2049","15d43873064dc8787ca1e4c39149be59183c404d48a8cd5a0ea019bb5fdf8d58","ea4b5d319625203a5a96897b057fddf6017d0f9a902c16060466fe69cc007243","3d06897c536b4aad2b2b015d529270439f2cadd89ca2ff7bd8898ee84898dd88","ab01d8fcb89fae8eda22075153053fefac69f7d9571a389632099e7a53f1922d","bac0ec1f4c61abc7c54ccebb0f739acb0cdbc22b1b19c91854dc142019492961","566b0806f9016fa067b7fecf3951fcc295c30127e5141223393bde16ad04aa4a","8e801abfeda45b1b93e599750a0a8d25074d30d4cc01e3563e56c0ff70edeb68","902997f91b09620835afd88e292eb217fbd55d01706b82b9a014ff408f357559","a3727a926e697919fb59407938bd8573964b3bf543413b685996a47df5645863","83f36c0792d352f641a213ee547d21ea02084a148355aa26b6ef82c4f61c1280","dce7d69c17a438554c11bbf930dec2bee5b62184c0494d74da336daee088ab69","1e8f2cda9735002728017933c54ccea7ebee94b9c68a59a4aac1c9a58aa7da7d","e327a2b222cf9e5c93d7c1ed6468ece2e7b9d738e5da04897f1a99f49d42cca1","65165246b59654ec4e1501dd87927a0ef95d57359709e00e95d1154ad8443bc7","f1bacba19e2fa2eb26c499e36b5ab93d6764f2dba44be3816f12d2bc9ac9a35b","bce38da5fd851520d0cb4d1e6c3c04968cec2faa674ed321c118e97e59872edc","3398f46037f21fb6c33560ceca257259bd6d2ea03737179b61ea9e17cbe07455","6e14fc6c27cb2cb203fe1727bb3a923588f0be8c2604673ad9f879182548daca","12b9bcf8395d33837f301a8e6d545a24dfff80db9e32f8e8e6cf4b11671bb442","04295cc38689e32a4ea194c954ea6604e6afb6f1c102104f74737cb8cf744422","7418f434c136734b23f634e711cf44613ca4c74e63a5ae7429acaee46c7024c8","27d40290b7caba1c04468f2b53cf7112f247f8acdd7c20589cd7decf9f762ad0","2608b8b83639baf3f07316df29202eead703102f1a7e32f74a1b18cf1eee54b5","c93657567a39bd589effe89e863aaadbc339675fca6805ae4d97eafbcce0a05d","909d5db5b3b19f03dfb4a8f1d00cf41d2f679857c28775faf1f10794cbbe9db9","e4504bffce13574bab83ab900b843590d85a0fd38faab7eff83d84ec55de4aff","8ab707f3c833fc1e8a51106b8746c8bc0ce125083ea6200ad881625ae35ce11e","730ddc2386276ac66312edbcc60853fedbb1608a99cb0b1ff82ebf26911dba1f","c1b3fa201aa037110c43c05ea97800eb66fea3f2ecc5f07c6fd47f2b6b5b21d2","636b44188dc6eb326fd566085e6c1c6035b71f839d62c343c299a35888c6f0a9","3b2105bf9823b53c269cabb38011c5a71360c8daabc618fec03102c9514d230c","f96e63eb56e736304c3aef6c745b9fe93db235ddd1fec10b45319c479de1a432","acb4f3cee79f38ceba975e7ee3114eb5cd96ccc02742b0a4c7478b4619f87cd6","cfc85d17c1493b6217bad9052a8edc332d1fde81a919228edab33c14aa762939","eebda441c4486c26de7a8a7343ebbc361d2b0109abff34c2471e45e34a93020a","727b4b8eb62dd98fa4e3a0937172c1a0041eb715b9071c3de96dad597deddcab","708e2a347a1b9868ccdb48f3e43647c6eccec47b8591b220afcafc9e7eeb3784","6bb598e2d45a170f302f113a5b68e518c8d7661ae3b59baf076be9120afa4813","c28e058db8fed2c81d324546f53d2a7aaefff380cbe70f924276dbad89acd7d1","ebe8f07bb402102c5a764b0f8e34bd92d6f50bd7ac61a2452e76b80e02f9bb4b","826a98cb79deab45ccc4e5a8b90fa64510b2169781a7cbb83c4a0a8867f4cc58","618189f94a473b7fdc5cb5ba8b94d146a0d58834cd77cd24d56995f41643ccd5","5baadaca408128671536b3cb77fea44330e169ada70ce50b902c8d992fe64cf1","a4cc469f3561ea3edc57e091f4c9dcaf7485a70d3836be23a6945db46f0acd0b","91b0965538a5eaafa8c09cf9f62b46d6125aa1b3c0e0629dce871f5f41413f90","2978e33a00b4b5fb98337c5e473ab7337030b2f69d1480eccef0290814af0d51","ba71e9777cb5460e3278f0934fd6354041cb25853feca542312807ce1f18e611","608dbaf8c8bb64f4024013e73d7107c16dba4664999a8c6e58f3e71545e48f66","61937cefd7f4d6fa76013d33d5a3c5f9b0fc382e90da34790764a0d17d6277fb","af7db74826f455bfef6a55a188eb6659fd85fdc16f720a89a515c48724ee4c42","d6ce98a960f1b99a72de771fb0ba773cb202c656b8483f22d47d01d68f59ea86","2a47dc4a362214f31689870f809c7d62024afb4297a37b22cb86f679c4d04088","42d907ac511459d7c4828ee4f3f81cc331a08dc98d7b3cb98e3ff5797c095d2e","63d010bff70619e0cdf7900e954a7e188d3175461182f887b869c312a77ecfbd","1452816d619e636de512ca98546aafb9a48382d570af1473f0432a9178c4b1ff","9e3e3932fe16b9288ec8c948048aef4edf1295b09a5412630d63f4a42265370e","8bdba132259883bac06056f7bacd29a4dcf07e3f14ce89edb022fe9b78dcf9b3","5a5406107d9949d83e1225273bcee1f559bb5588942907d923165d83251a0e37","ca0ca4ca5ad4772161ee2a99741d616fea780d777549ba9f05f4a24493ab44e1","e7ee7be996db0d7cce41a85e4cae3a5fc86cf26501ad94e0a20f8b6c1c55b2d4","72263ae386d6a49392a03bde2f88660625da1eca5df8d95120d8ccf507483d20","b498375d015f01585269588b6221008aae6f0c0dc53ead8796ace64bdfcf62ea","c37aa3657fa4d1e7d22565ae609b1370c6b92bafb8c92b914403d45f0e610ddc","34534c0ead52cc753bdfdd486430ef67f615ace54a4c0e5a3652b4116af84d6d","a1079b54643537f75fa4f4bb963d787a302bddbe3a6001c4b0a524b746e6a9de","7fc9b18b6aafa8a1fc1441670c6c9da63e3d7942c7f451300c48bafd988545e9","200a7b7eb3163da4327412c650e43fbe66c73604a23a694f95ede53c250bfc3b","b843e64cc56422a003f151f950c0b11dfc93e48d836c23d1de3ff9760ba66128",{"version":"05fe0a22611e537b8d36d14182dd587ac81692247592e495bed72201d739d537","affectsGlobalScope":true},"0d728b43672268b6358c183f58babb14b4d9133368d3a3d970a638e745a07946",{"version":"68b24afcc8f547f6f4e01a6438f693acf091679d1290f16ac3ff4281604d09c3","affectsGlobalScope":true},"be65d9c4b878135fd01ec9d627649b8f0ea042405d4238555bb1ed32ba4bc0d4","c24c21411a095cbe726d6ee0a45d219109d661371d60647abf0ec72ac356959d","318e94f954acb56c170dcce0954d83ec8e4f466a6272ab3cf2cfa1b669fbee98","f0b49e409996f4d3ddb54f71ec92f5413d004070f23ac1626d698502af028d80","178f27d07eb47715315586e6b93499134f9645a781dcee121809772319da2310","65f6810084ae57ebbfb592d9df09322c71bd1df5cc7881040472eb32c6574680","34d0f816cd414b27ac302c7f4cc5be0a8dc161acbac07fc752b1e8123f71aba8","1439e71e2196fcf0c998446c0a86cd45c1c0c3f872e2b5c96747b77b95626468","8c328b52f3f1a382fa838326757402ba3f89dc956a154a8d39b383ff9d561778","83b5f5f5bdbf7f37b8ffc003abf6afee35a318871c990ad4d69d822f38d77840","656e8a14a0af2822043ecc64532a6d82715811a9c13aececf0538d9851a257a2","99facf398964ea17e5561106b3efd571c3fbde7d5318b7fd38bb4a1654f36734","43ea3bdd488aad6a292d982b1a0935a5ed5f69f76b7f40bf589c2f5245195544","d9c11d0dae4e8d01c2ee92f939cddcc5157663c94ba38c84f9dcfea71314dca8","7a04b46d532a6189ad4c5e3271e27d9244e7f02d9f28574babe0f525ff18c372","b3dec0879e876086c6bd5d93b671bf3a034da7712ea60b6e815f1de987df060a","4c2dc62cf8ddea2c86bdb2cdcc152482639b455a9d073b8a637ca0871691e808","4f805ead8833643819cb95ba66fc084aa79903f6df7bccf2624be517de4faf98","ae2412e203650a5a739700dcd74dbfb6caebb3c756a0d0d5c93ede47ab70d91a","a023eb8a768d010cc6ca7bbd3d721f2131652ceaa58151021570f0c7275cbfa6","6148d07d0461a3dbf338f5f271ff8b887d8256817f5bacb7fc7bd3bca5b79796","e81622c94502d2b4f7787d7e2695c6e5376126f54f6b15a933aa118da1c639a5","78fc536a6e2a1e307537b306b3c3ff8552be40f21c7dacfe1e7542ca7324fcc7","cffaede6750b091b5a5538a425699f9513fe0fc5cebc9e027598a56d506fff2b","38ca64ed80b12454b03c0bb971541b881ebb0ab227b6236bd56bca89cb0306ab","1cc001b662ff2ac4881f501a88c5dbb6c02a7f87d6cbee79934fff95c1bbea30","e4d157796b14020f4aa8db74073b77652cbafbb02dc108408b5c99dc9d77dc0c","5b857d41d08971f63d54a050c5ba29504887f72e21e548e12e36428726941b11","9b51dd74a388c13e157c457cc39d59dc2aae2134f6a21cc6b695219932cb8817",{"version":"db06f4cdf70e3689f0cd5a96a6836f34024ad61e8dd01473560ebbcae09c532b","affectsGlobalScope":true},"7ff05fb50d37beb9bc6a5f93a3f09db2f959b0327f4f3b4221b2180e5b661322","3a4e80746c4007af4abc9b1263c4088b859cf4c1f7e2f03a074750bd03679e17","8772ee20ba975dd2411063d0d0c762588de75d65be11bfc96d17ff8375e7153a","bd08ee515c95bb5e3387f1c6e06b9b90a7023841c5c50cf8a3be0ccb98b423b6","7e45d0be6c684f8bd44a7c9e9b85866eadeefa8eafb4391a9a301275c35b4fcd","4b9fba069829653b17f331333ded3f88a2193139115ad48589b57542e0f1df5f","fa67c77380575031c13b4428fb04e817fe50540329c981c1a2b147ecb9327ef0","a60cb94351eec664cd5fd6c680ed608258d5ebc0e0a4b469c66ed5a3cef5efd8","9f9159a0e2266b44e522ca1c861e65644a330549201b75ddb4ab79dd85f10c8a","8d00ce6d5f41f222246ca4413da284f9b64c452ede594aaf0a368c804e8c58c1","da9a27a114bc110dfc2aa82ae2c2bca6c263e54e2fb715c88e871cd03b86165c","5845b996902c6abf5559e3795ada1dc5e5eaa3f48c2f893ec614c2aae7ad9155","79ad4eca59cf44701cd2b138b633efa003573521634b60eabf89f9228cd55809","638678c386beeb3793cc51759d9accb2a502c71eb08f453d6536636ef4593186","cc64f85b35f8d01b0355456652a3494c7533269fa47a68272d28fc042e30dfba","9b051f36a67f0e5813b355868f3d869c146b8045b3e143e821eb4d58a39f64be","435124778d845003fbc7f7d0a756cf5b8929365b22dfa9c6afb7b23178c6dc6c","948f93cf2016b2d75c53605a44397983dfb7ba736d5a75e9866413d6af4f5e59","584bb7dd00ffcc99918e3aca639ea6eed99256bef0b9c70f36de255212e086b0","d55df0c04f6b9b73a531aab649fca0e79b6bb6412ff3898d3e60e4e74a1acd6e","d35be9e4af129629c0ba2fc57fe80e94b8e464de3d3b0e8ed621873b9c28c2c4","667d1590f5ed02745949cf1b4532bbf80597c7cd15ef8be42b06f035487cee66","6336e7ae85e7bd0116777d6de86f34c881b89d81083547a8e7a3e9c9ce686b89","33fd57356804dd8d377aa08d6552b66068530b8875fbc8df6ea469953365ab5a","bbc76fb94e6165f8f498c0a72b842e23cd67aa00cde22b8313bd54b3d93af193","5232f93ba808fd18230f4e0fae516fc0ea0ca09386c93ef19dfdddd59d82194b","807128c9ccc1e7868ef217b7076d1fb078030cb5923c9a9da6a02c48d78e9e18","29d46805aba9bd70c3b64aea22a15589fcaa12b2bed2ac9310a7f02b02363bac","0358f51804975d70e83daa425709e472bfadb8ff6627402723881d3299599732","38106630e61f7dff328af03a2f1ac3b46cf57d611e8ea7ec9ec26dccb582bbf7","bf9085ad9469ad87d48e6b294c26e8ebc358a653e25b7c6976065df658ab3a47","cad94e8c96269a3f9c80f09a284e6839c5d01eddd85c90f9efa8e9556f1834e1","8d52b292046eaf7bc4565cadd1c61edc952d075ab2889f41f6d63f10ea59ccb0","38e1f988ca8a3fd0ee2fad611f7f982e9530ae6973151bcacde7c6e7fb04bea5","383f07a2a1fb51cb6fc8265a63eaade643135379374afa7166e3b84b063cd2fb","8e1ed0d99df8d05be264740e2121e574a174e1a60544ef669df3c8a6a4788290","21477f9ec750fb8f9b1fece228bfeeb17b85d767ae9168f71dfe3b574bc2c4b8","29ab9f8d2f84b5f84584ca6ec50535d5ebc34245d45cef32931ee8b4cced4ea3","e0066d0cec0f1194361302cf52abf2e71c0af898eed09ec687d4a34d7b89389c","d4b61bbee55cc1f91616b64937233522f29b6034304440a97344766e58d81224","484c61ffe28d13086dcbadc5371355a457e75a375a1f21649d87209c7da3f5ad","d6a5c17ef46bb6832efa4c7ed3fabf666bed91f7b1f913ef9f9437de72f9f45f","df51929c4b53d6f8740927d77f7bf415d026812a80ff4b03cfa24e9962aab30e","79d3f73e515450fb3e71721e13859666a2fd1dee8d2a4dbd51668eeceb0b5e1e","08a1d8e1474dd44bf89e4fd47ca3fd1c0f6e95d9e74413d95e360ac331915601","71257f1fd9c2606a8db9e614394e154d1b7175b1aab178ff7850cce0f383b0b7","dbf6e52d440f8495adf5f9d46f603ecf7e007b7032542e93a578748948d339cd","f5146fc906ed4a1ff094cf779c438cdb62699836ed52d35d68cdf8ffa33d4f17","c488375c6eddabce83a48132ae081c13ce049163694aee72205716070cdaf2d4","99471216f9a6bbdbd922ce5c3abab16a01f525c04b8565802ba7e2f741ed66ba","699f82d62f80defba3f24f8035fdd7848ce59819b7e92be1c21203784f989880","d6b416da43b620809c3802863ff9fc327fd93a27596b8297e3c11b5babee7c2d","54f654d70f99e22ab62bc368214dbffab229aaa05c0854844e092fc0249b941e","8dccc7b5bc97ef722f7cdc7a98052f604e97ce3d8e35ec3ef71ada72f8dde961","13d642fbe80631856021490bde7f51f7a3a3276e12c6d05c22f30d9cb0da0eff","60427cfa4f690de417382f75e3726d6afa5c539bff1a20f02f02d71a039c4583","06bf2eecd428a3686a630d89a8e79d2bdd1e4db12f8bcc494142fb5f1ceae713","df9310969cfc0d2ffee1c61f0a868c1c563b6238e38e87391dcd7a4a1252ed15","784bddc4118d0bd1a43f1ce8db89da23012b77d23ce54555c033925b146b979c","bfa0b14605126912c31bd10b294fc0af76f5af2a0278e899bb566a6897ad8559","2422d0d7402dc5982f9a813362f4670d03fbc20bf9c5e016cb0ad445b80e029d","07ca7906cd7ebb46a93f2216b2bf1ac94d43a35be2935804b5e346536c4f4cbe","2f6de3568f38b279d342e7a317e423fb8e5582c0ae68ee83bf8c3cb4ac4cf403","7f1cf2dab123e185e96bf46e7380fbb3946b8a8710263e2032429303496c2a34","3a33dc0aaca86bfc68a58b603aeada539a0e47bce983d88473c7076318b91c9f","6cc5efe017d42e58fcd1afbc087bf740c0fcca51a8250fa306e215493a0709c1","8c2ad0ab1572007d1be80efdaf12fa069ca7b819db8adaded41982fcbac20de3",{"version":"84be3272c6f922f2429f90ef70720847c1d89a1e47a3ef7109caf256b44ce054","signature":"b42033bf1067564808e4d360d79281667c2b3b0792c2d615ab641eb85974d4ba"},{"version":"7217e4e347064d1885eacfebcaa7984fe56405de7825555aaa190d39f0538bbc","signature":"39ddfec42c97893f375021f18ef65e174a9a239b963097dab1ab9ed2d63cc099"},{"version":"828f5e659cf67023155156a0784a7db12752280abf9dbd158b4da484ad035f73","signature":"4ab17f80ced148d509345cee706b2b85941515dd76e32cf47118bcdf6a4bd56a","affectsGlobalScope":true},{"version":"c905755de5caafb2b09c6c228545c6a74dfa3742b202dee0f694fc6481535964","signature":"9197b3ca76c01df6120b4ee288fe2d08f8a2089221da97956bee402de0ffd37e"},{"version":"242b5861bc278076615870823398bbb5b237738f64f03e1740da1bc184b427c5","signature":"78faa3783191b2d5d5f7a9e835ee3f6a1456dc391d6eb5b40d3a27dfd9decd6e"},"e59262ddaae67dec2d226f8a5d05cf6c4dc353c0d9b1e4980a61d7fcf9a2b051","5e30131b6a5587fe666926ad1d9807e733c0a597ed12d682669fcaa331aea576","470b8c2386c916bad4aa0d05e89b271a47dbe1250cb25dc0f93102b457228dde","15fe687c59d62741b4494d5e623d497d55eb38966ecf5bea7f36e48fc3fbe15e",{"version":"2c3b8be03577c98530ef9cb1a76e2c812636a871f367e9edf4c5f3ce702b77f8","affectsGlobalScope":true},"7000ec8572390d035ba5ef993953957150d0c38ffb31b56653c97dd78cb6e1aa","056892cca68dca10a914f1580ba0e5710d26794e8707225dca9b5717ed702f1e","056892cca68dca10a914f1580ba0e5710d26794e8707225dca9b5717ed702f1e","4ddf3962990379d1ea59b369a5516c7533b7944010d6998e0e9b1ab35d5af1f0","1bcd560deed90a43c51b08aa18f7f55229f2e30974ab5ed1b7bb5721be379013","dc08fe04e50bc24d1baded4f33e942222bbdd5d77d6341a93cfe6e4e4586a3be","2a8f0a19a927e83421597c056c90695557142f54ca96358f01eb1f2a5eb228be","d08415b3d6d7fd153ba6e7bf7707ffc57f3c6ad85730ea63544756610b4350c6","411f23da7a63c3d3fd4860c41a458e8df239776fd5d9cd36dd3ad6be92afccbd","6ada3e065916c0ef2dbc9bc0f9b5d59afb25d9176f81fa2c8993a536924140c6","356cc1b058e05e07d2acd73bfa87f83a6f4a343450ee375dad232ff4a55d41d8","df286e6b181ed08766bc19cf1a2fddc50bc5d540f233bc1ce4430a3c1c8c8379","f436800c0af503703110c93144fcc7392524636fb4216296411243b29fe0162d","0d5002560b45ce4fd6c4124632f61789e584be0634602486a2ce59541311d153","bbe13c947d7d6c3426e0e5815e2b3464fa03d34a4bf47298c43b9237cf59555b","9f7d0ee33b9f8fa4dc2e9628e0cdf8683104d01de9d3d24f62cd5da014a5bec4","a8992b852521a66f63e0cedc6e1f054b28f972232b6fa5ca59771db6a1c8bbea","da66c1b3e50ef9908e31ce7a281b137b2db41423c2b143c62524f97a536a53d9",{"version":"9049f77670c51b020b0d6d562f17dfe2d5d9b8d4002078fb52f0e30cc05b76d8","signature":"25436b30271e935128764e9d28f39c2cd02f15e145988103eb6b8593c89880b0"},{"version":"4f1a2df041b302d49a7637e72f2a48d04f84d4a738e01d4351aff891f93a6cc4","signature":"fc48282c397084016a939e1b3f91dcaf4199b6cba339d91d8b2dc2acade79762"},{"version":"fc956dab073307e9f440201b8171d593c50fc678255998c7bb59d8689a9eec3e","signature":"981fc22acc36b6a33c9f5b3d468e975b104cf3409b881ca6cffe84c5f9fda7c1"},{"version":"4d92ef28daa2f0a7bc032995d3ec1139874a13e5635404578444ec93d6b240fd","signature":"561e8c7af0e65a4ea90af6b43a54399db172aec993f14981ff45769ee8b6a33e"},"23c05cc4d97aa608b5ea8badadb4e1b0c4e306ed5d651c5d1760552e91d1ad92","452807fa3050dbc39caf1ffd2e9cf9b36e719e36ee062f6adebe50be426790d3","cf93fb9208a01c80f0fad245c4360356e5de6c2384b7641acf0b9cc2f5c42448","336398b0efaf964124e636a9b29c4edd5870aee79ac64bf87be58a9d66b7c048","571bc65ec37ba124e762bb822e14a2b8502dc684e356be8feaccbd6b9cadd023","2bbbefc1235500bdb5091f240dc8cba861a95342272f7d11b7574a0d2ef4f85e","7cd455fc4c4818f19263d73b29c59f3fb5fd54b45a6ab83ca3eb3661281db56b","1c6b9b5501774a2ece6574be8e26092800e3f1f836f8c179b4f9fdd271a620f8","bcd2426fd141157e04e3a8eff914b575403587f398cf0878f07c2f283e0d1afd","bac8ff394e831e4dd3f0961d6abb414b0e2b4ba16fdeb502d087ebf0340ed5f6","b8965484c1a08eeac238cf02a1498d72f3f3610059570a2c0fd207eb34245146",{"version":"fd4c5f5f845587008ca56c2b119fce2029092f515d41cf67cddcc69f773fbaf8","signature":"0bb557b6a266a313a13f3e30ade10a0fb64e26034a22f3eb57492be5b54abbb9"},{"version":"f61767413d019de6565fb8a382405ae71b71344a7dfbf272cfbf8a8f5364ceb9","signature":"dad8b29f1a0eded516aa3009e0483e7a63556a4ef7c52dd3dc81aa4bb651e911"},"a0667520a6521c12128fc28cbd5b2af58eef11c5b2a7441e0f0d47f50bf6c8e3","0dcf4c2bf1bb547e2ae5b8dce4656a56fbd15e3401ff5236ea0b93b6c60f9249","820c26194ad4089bc503b02bbedbd86a865e9c8a05c58ef88c8d19d9c019712a","790b453e1b76814112c3870d6e12f5db992d3194fdb3529445317dd75cb538be","d375de88ab19f6c105a65fc89eca1ae782362c5c395283b0c85ef39c7b835dfe","aeda2fffbc651fe1fa60b913d45f291f5544c4840206cb3b1badc16d9f01a0f0","7b3c1d688dcb8645b5a6c37bce5b047da92b4c298ed8709e03e987e0efb035b1","29c64e1acb5b73f08a60e71154c65c8a34f885f1f2cc55ffa06dfd244c058883",{"version":"7d176f155e5f6fc9756ddcc1a6d3eb2673030a066e2b7846dfc81b5271f3e269","affectsGlobalScope":true},"024fea9ee598cfe747f18340ad74e4ea428fc2a7988250ff9fcfce5673b7d422","aea18a267a0770c365cc390ad0a0b9725ed7a4540e9a96319b0f5094ee0ca124","a5a7c7d197c7b1918bddb0dd30bf8979a38828b24467ec45db093bf4621507ef",{"version":"afcd875785333f656f79bf1b3a445ceecc6aaf8e2b7cde59309a8778f41de613","affectsGlobalScope":true},{"version":"27b285e901600242883d62a5fff9f5d262c6fa128b6e6c6963f981f2630a957e","affectsGlobalScope":true},"8a9b7a437bea4cc34e5e103e01573ab3afc4564a22c838942b6dcca0f68020e8","8bb8931e629d9adfac6fe0c067de1a3c2f82b47262f83fa76eb0772ef13808e8","ae1351ed65b27a2b29a70a238024c957910e944aabbffce286099ed2b04f9baf",{"version":"3c19b3fb2f88bbd8f103fe2de0d6c0700dd9bf6678553f6db803162620b49e27","affectsGlobalScope":true},{"version":"189a87911d606781877614ad113ea2fe307de05dddc1891b49a4c196b67d77b6","signature":"8e5930493deb9bc15c58b16327dc020c7ff52a8a2c3a17703a653e2c83c02014"},"efc7d584a33fe3422847783d228f315c4cd1afe74bd7cf8e3f0e4c1125129fef","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"a14ed46fa3f5ffc7a8336b497cd07b45c2084213aaca933a22443fcb2eef0d07","affectsGlobalScope":true},"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c",{"version":"185282b122cbca820c297a02a57b89cf5967ab43e220e3e174d872d3f9a94d2c","affectsGlobalScope":true},"16d74fe4d8e183344d3beb15d48b123c5980ff32ff0cc8c3b96614ddcdf9b239","7b43160a49cf2c6082da0465876c4a0b164e160b81187caeb0a6ca7a281e85ba",{"version":"41fb2a1c108fbf46609ce5a451b7ec78eb9b5ada95fd5b94643e4b26397de0b3","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","06f613ad82b49f264a12e30977e791d5b0addf9d8d1d18cd135c402928ff0607","285e512c7a0db217a0599e18c462d565fa35be4a5153dd7b80bee88c83e83ddf","b5b719a47968cd61a6f83f437236bb6fe22a39223b6620da81ef89f5d7a78fb7","8806ae97308ef26363bd7ec8071bca4d07fb575f905ee3d8a91aff226df6d618","af5bf1db6f1804fb0069039ae77a05d60133c77a2158d9635ea27b6bb2828a8f","b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e",{"version":"2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","affectsGlobalScope":true},{"version":"7ae9dc7dbb58cd843065639707815df85c044babaa0947116f97bdb824d07204","affectsGlobalScope":true},"7aae1df2053572c2cfc2089a77847aadbb38eedbaa837a846c6a49fb37c6e5bd","313a0b063f5188037db113509de1b934a0e286f14e9479af24fada241435e707","1f758340b027b18ae8773ac3d33a60648a2af49eaae9e4fde18d0a0dd608642c","87ef1a23caa071b07157c72077fa42b86d30568f9dc9e31eed24d5d14fc30ba8","396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","21773f5ac69ddf5a05636ba1f50b5239f4f2d27e4420db147fc2f76a5ae598ac",{"version":"dea4c00820d4fac5e530d4842aed2fb20d6744d75a674b95502cbd433f88bcb0","affectsGlobalScope":true},"a5fe4cc622c3bf8e09ababde5f4096ceac53163eefcd95e9cd53f062ff9bb67a","45b1053e691c5af9bfe85060a3e1542835f8d84a7e6e2e77ca305251eda0cb3c","0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7",{"version":"0d832a0650a74aafc276cb3f7bb26bde2e2270a6f87e6c871a64122e9203079b","affectsGlobalScope":true},{"version":"c6f3869f12bb5c3bb8ecd0b050ea20342b89b944eae18d313cde6b0ccc0925d7","affectsGlobalScope":true},"8abd0566d2854c4bd1c5e48e05df5c74927187f1541e6770001d9637ac41542e","d742ed2db6d5425b3b6ac5fb1f2e4b1ed2ae74fbeee8d0030d852121a4b05d2f","d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","8221b00f271cf7f535a8eeec03b0f80f0929c7a16116e2d2df089b41066de69b","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","f8c87b19eae111f8720b0345ab301af8d81add39621b63614dfc2d15fd6f140a","831c22d257717bf2cbb03afe9c4bcffc5ccb8a2074344d4238bf16d3a857bb12",{"version":"2225100373ca3d63bcc7f206e1177152d2e2161285a0bd83c8374db1503a0d1f","affectsGlobalScope":true},{"version":"7052b7b0c3829df3b4985bab2fd74531074b4835d5a7b263b75c82f0916ad62f","affectsGlobalScope":true},"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","eefcdf86cefff36e5d87de36a3638ab5f7d16c2b68932be4a72c14bb924e43c1","7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df",{"version":"4d0405568cf6e0ff36a4861c4a77e641366feaefa751600b0a4d12a5e8f730a8","affectsGlobalScope":true},{"version":"f5b5dc128973498b75f52b1b8c2d5f8629869104899733ae485100c2309b4c12","affectsGlobalScope":true},"e393915d3dc385e69c0e2390739c87b2d296a610662eb0b1cb85224e55992250","79bad8541d5779c85e82a9fb119c1fe06af77a71cc40f869d62ad379473d4b75","4a34b074b11c3597fb2ff890bc8f1484375b3b80793ab01f974534808d5777c7",{"version":"629d20681ca284d9e38c0a019f647108f5fe02f9c59ac164d56f5694fc3faf4d","affectsGlobalScope":true},"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447",{"version":"0ea93d01083b3d5863cc98cb589b5d0eac55d14417487f9e5e455dfa0b17c660","affectsGlobalScope":true}],"root":[46,[48,53],81,82,98,99,[303,307],[331,334],346,347,366],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":false,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitOnError":true,"outDir":"./","rootDir":"..","sourceMap":true,"strict":true,"target":5,"useDefineForClassFields":false},"fileIdsList":[[200,217,229,260],[228,229,230],[200,227,260],[200,215,228,260],[206,217,218,219,220,222,223,224,227,228,229,230,231,260],[216,217,220,227,228,260],[200],[200,219,220,227,260],[200,217,220,222,227,230,260,298],[200,220,223,226,228,260],[298],[200,217,220,223,224,228,260],[200,218,219,227,228,230,260],[200,219,220,223,225,260,298],[200,232,260,268,278,291,292,293,295],[201,220,232,260,268,278,279,288,289,291,292,293,295,296,297],[200,232,260,268,292,296],[228,232,260,279,289,290,292,293,294],[200,232,268,279,289,292,293,294,295],[200,232,260,268,279,290,291,292,293,295,296],[200,215,232,260,268,279,289,290,291,293,295],[200,215,232,268,292,295],[200,206,268,278,288],[260,261],[262],[206,261,262,263,264,265,266,267],[200,260,298],[268,271],[206,269,270,271,272,273,274,275,276,277],[234,268],[271],[200,260,268],[268],[206],[260],[206,280,281,282,283,284,285,286,287],[239],[200,268],[238],[255],[203,204,205],[201,202],[200,209],[206,207,208,209,210,211,212,213,214,233,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,255,256,257,258,259],[236],[234,235],[232],[254],[310],[319],[310,319],[310,319,327],[308,309],[318,348,349,350],[318,356,357,358,361,363],[318,364],[318,356,357,358],[318,359],[318],[318,349,351,353,354],[318,355],[349],[350,352],[348,353],[95],[83,85,86,87,88,89,90,91,92,93,94,95],[83,84,86,87,88,89,90,91,92,93,94,95],[84,85,86,87,88,89,90,91,92,93,94,95],[83,84,85,87,88,89,90,91,92,93,94,95],[83,84,85,86,88,89,90,91,92,93,94,95],[83,84,85,86,87,89,90,91,92,93,94,95],[83,84,85,86,87,88,90,91,92,93,94,95],[83,84,85,86,87,88,89,91,92,93,94,95],[83,84,85,86,87,88,89,90,92,93,94,95],[83,84,85,86,87,88,89,90,91,93,94,95],[83,84,85,86,87,88,89,90,91,92,94,95],[83,84,85,86,87,88,89,90,91,92,93,95],[83,84,85,86,87,88,89,90,91,92,93,94],[367],[403],[404,409,437],[405,416,417,424,434,445],[405,406,416,424],[407,446],[408,409,417,425],[409,434,442],[410,412,416,424],[411],[412,413],[416],[414,416],[403,416],[416,417,418,434,445],[416,417,418,431,434,437],[401,404,450],[412,416,419,424,434,445],[416,417,419,420,424,434,442,445],[419,421,434,442,445],[367,368,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452],[416,422],[423,445,450],[412,416,424,434],[425],[426],[403,427],[428,444,450],[429],[430],[416,431,432],[431,433,446,448],[404,416,434,435,436,437],[404,434,436],[434,435],[437],[438],[403,434],[416,440,441],[440,441],[409,424,434,442],[443],[424,444],[404,419,430,445],[409,446],[434,447],[423,448],[449],[404,409,416,418,427,434,445,448,450],[434,451],[311],[109,297],[102,103,109,110],[111,175,176],[102,109,111],[103,111],[102,104,105,106,109,111,114,115],[105,116,130,131],[102,109,114,115,116],[102,104,109,111,113,114,115],[102,103,114,115,116],[101,117,122,129,132,133,174,177,199],[102],[103,107,108],[103,107,108,109,110,112,123,124,125,126,127,128],[103,108,109],[103],[102,103,108,109,111,124],[109],[103,109,110],[107,109],[116,130],[102,104,105,106,109,114],[102,109,112,115],[105,113,114,115,118,119,120,121],[115],[102,104,109,111,113,115],[111,114],[111],[102,109,115],[103,109,114,125],[114,178],[111,115],[109,114],[114],[102,112],[102,109],[109,114,115],[134,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198],[114,115],[104,109],[102,109,113,114,115,127],[102,104,109,115],[102,104,109],[135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[127,135],[135],[102,109,111,114,134,135],[102,109,111,113,114,115,127,134],[310,314],[313],[320,321,322,323,324,325,326,327,328],[362],[310,314,316,317],[314],[313,314],[312,313],[54],[54,56],[378,382,445],[378,434,445],[373],[375,378,442,445],[424,442],[453],[373,453],[375,378,424,445],[370,371,374,377,404,416,434,445],[370,376],[374,378,404,437,445,453],[404,453],[394,404,453],[372,373,453],[378],[372,373,374,375,376,377,378,379,380,382,383,384,385,386,387,388,389,390,391,392,393,395,396,397,398,399,400],[378,385,386],[376,378,386,387],[377],[370,373,378],[378,382,386,387],[382],[376,378,381,445],[370,375,376,378,382,385],[404,434],[373,378,394,404,450,453],[234,298],[100,299,300,301],[47],[47,302,305],[47,81,98,303,306],[47,80,98,305],[47,318],[46,47,80,305,307,318,329,331,334,335,336,345],[47,318,329,331],[47,98,305,318,329,330],[47,318,329,360,365],[47,53,305,307,331,332],[47,80,81],[47,303],[47,96,97,98],[47,54,55,57,82,99,304],[47,48,49,50,51,52],[47,49,50],[47,48,49,51],[337,338,339,340,341,342,343,344],[58,59,60,61,62,63,64,65,66,67,68,71,72,73,74,75,76,77,78,79],[69,70],[70],[69],[81,98,303,306],[54,318,331],[318,331],[318,360,365],[53,305,307,331,332],[54,55],[48,49,50,51,52],[49,50],[48,49,51]],"referencedMap":[[230,1],[217,2],[228,3],[229,4],[232,5],[218,6],[219,7],[231,8],[223,9],[227,10],[222,11],[225,12],[220,13],[226,14],[296,15],[298,16],[291,17],[295,18],[290,19],[294,20],[292,21],[293,22],[289,23],[262,24],[266,25],[263,25],[267,25],[264,25],[268,26],[265,25],[261,27],[275,28],[276,28],[278,29],[269,30],[277,31],[271,32],[274,33],[270,34],[285,33],[287,7],[280,35],[282,35],[288,36],[281,35],[286,33],[284,33],[249,37],[247,38],[253,33],[239,39],[252,11],[256,40],[257,35],[206,41],[203,42],[207,7],[208,7],[209,7],[210,7],[214,11],[211,7],[212,43],[213,7],[260,44],[243,45],[244,45],[242,45],[236,46],[245,45],[233,47],[255,48],[259,48],[215,7],[319,49],[320,50],[323,51],[321,51],[325,51],[328,52],[326,51],[324,51],[322,50],[310,53],[351,54],[364,55],[365,56],[359,57],[360,58],[361,59],[355,60],[356,61],[358,62],[353,63],[354,64],[330,65],[96,65],[84,66],[85,67],[83,68],[86,69],[87,70],[88,71],[89,72],[90,73],[91,74],[92,75],[93,76],[94,77],[95,78],[367,79],[368,79],[403,80],[404,81],[405,82],[406,83],[407,84],[408,85],[409,86],[410,87],[411,88],[412,89],[413,89],[415,90],[414,91],[416,92],[417,93],[418,94],[402,95],[419,96],[420,97],[421,98],[453,99],[422,100],[423,101],[424,102],[425,103],[426,104],[427,105],[428,106],[429,107],[430,108],[431,109],[432,109],[433,110],[434,111],[436,112],[435,113],[437,114],[438,115],[439,116],[440,117],[441,118],[442,119],[443,120],[444,121],[445,122],[446,123],[447,124],[448,125],[449,126],[450,127],[451,128],[312,129],[297,130],[111,131],[177,132],[176,133],[175,134],[116,135],[132,136],[130,137],[131,138],[117,139],[200,140],[105,141],[109,142],[129,143],[124,144],[110,145],[125,146],[128,147],[126,147],[123,148],[127,149],[133,150],[115,151],[113,152],[122,153],[119,154],[118,154],[114,155],[120,156],[196,157],[190,158],[183,159],[182,160],[191,161],[192,147],[184,162],[197,163],[178,164],[179,165],[180,166],[199,167],[181,160],[185,163],[186,168],[193,169],[194,145],[195,168],[198,147],[187,166],[134,170],[188,171],[189,172],[174,173],[172,174],[173,174],[138,174],[139,174],[140,174],[141,174],[142,174],[143,174],[144,174],[145,174],[164,174],[146,174],[147,174],[148,174],[149,174],[150,174],[151,174],[171,174],[152,174],[153,174],[154,174],[169,174],[155,174],[170,174],[156,174],[167,174],[168,174],[157,174],[158,174],[159,174],[165,174],[166,174],[160,174],[161,174],[162,174],[163,174],[137,175],[136,176],[135,177],[316,178],[315,179],[329,180],[363,181],[318,182],[313,183],[362,184],[314,185],[335,186],[55,186],[57,187],[56,186],[385,188],[392,189],[384,188],[399,190],[376,191],[375,192],[398,193],[393,194],[396,195],[378,196],[377,197],[373,198],[372,199],[395,200],[374,201],[379,202],[383,202],[401,203],[400,202],[387,204],[388,205],[390,206],[386,207],[389,208],[394,193],[381,209],[382,210],[391,211],[371,212],[397,213],[301,11],[299,214],[302,215],[81,216],[303,217],[98,216],[307,218],[306,219],[334,220],[346,221],[347,222],[331,223],[366,224],[333,225],[332,216],[82,226],[304,227],[99,228],[305,229],[48,216],[53,230],[51,231],[50,232],[52,216],[49,216],[343,59],[342,59],[344,59],[337,59],[345,233],[338,59],[339,59],[340,59],[80,234],[71,235],[69,236],[70,237]],"exportedModulesMap":[[230,1],[217,2],[228,3],[229,4],[232,5],[218,6],[219,7],[231,8],[223,9],[227,10],[222,11],[225,12],[220,13],[226,14],[296,15],[298,16],[291,17],[295,18],[290,19],[294,20],[292,21],[293,22],[289,23],[262,24],[266,25],[263,25],[267,25],[264,25],[268,26],[265,25],[261,27],[275,28],[276,28],[278,29],[269,30],[277,31],[271,32],[274,33],[270,34],[285,33],[287,7],[280,35],[282,35],[288,36],[281,35],[286,33],[284,33],[249,37],[247,38],[253,33],[239,39],[252,11],[256,40],[257,35],[206,41],[203,42],[207,7],[208,7],[209,7],[210,7],[214,11],[211,7],[212,43],[213,7],[260,44],[243,45],[244,45],[242,45],[236,46],[245,45],[233,47],[255,48],[259,48],[215,7],[319,49],[320,50],[323,51],[321,51],[325,51],[328,52],[326,51],[324,51],[322,50],[310,53],[351,54],[364,55],[365,56],[359,57],[360,58],[361,59],[355,60],[356,61],[358,62],[353,63],[354,64],[330,65],[96,65],[84,66],[85,67],[83,68],[86,69],[87,70],[88,71],[89,72],[90,73],[91,74],[92,75],[93,76],[94,77],[95,78],[367,79],[368,79],[403,80],[404,81],[405,82],[406,83],[407,84],[408,85],[409,86],[410,87],[411,88],[412,89],[413,89],[415,90],[414,91],[416,92],[417,93],[418,94],[402,95],[419,96],[420,97],[421,98],[453,99],[422,100],[423,101],[424,102],[425,103],[426,104],[427,105],[428,106],[429,107],[430,108],[431,109],[432,109],[433,110],[434,111],[436,112],[435,113],[437,114],[438,115],[439,116],[440,117],[441,118],[442,119],[443,120],[444,121],[445,122],[446,123],[447,124],[448,125],[449,126],[450,127],[451,128],[312,129],[297,130],[111,131],[177,132],[176,133],[175,134],[116,135],[132,136],[130,137],[131,138],[117,139],[200,140],[105,141],[109,142],[129,143],[124,144],[110,145],[125,146],[128,147],[126,147],[123,148],[127,149],[133,150],[115,151],[113,152],[122,153],[119,154],[118,154],[114,155],[120,156],[196,157],[190,158],[183,159],[182,160],[191,161],[192,147],[184,162],[197,163],[178,164],[179,165],[180,166],[199,167],[181,160],[185,163],[186,168],[193,169],[194,145],[195,168],[198,147],[187,166],[134,170],[188,171],[189,172],[174,173],[172,174],[173,174],[138,174],[139,174],[140,174],[141,174],[142,174],[143,174],[144,174],[145,174],[164,174],[146,174],[147,174],[148,174],[149,174],[150,174],[151,174],[171,174],[152,174],[153,174],[154,174],[169,174],[155,174],[170,174],[156,174],[167,174],[168,174],[157,174],[158,174],[159,174],[165,174],[166,174],[160,174],[161,174],[162,174],[163,174],[137,175],[136,176],[135,177],[316,178],[315,179],[329,180],[363,181],[318,182],[313,183],[362,184],[314,185],[335,186],[55,186],[57,187],[56,186],[385,188],[392,189],[384,188],[399,190],[376,191],[375,192],[398,193],[393,194],[396,195],[378,196],[377,197],[373,198],[372,199],[395,200],[374,201],[379,202],[383,202],[401,203],[400,202],[387,204],[388,205],[390,206],[386,207],[389,208],[394,193],[381,209],[382,210],[391,211],[371,212],[397,213],[301,11],[299,214],[302,215],[307,238],[334,59],[346,239],[347,240],[331,59],[366,241],[333,242],[305,243],[53,244],[51,245],[50,246],[343,59],[342,59],[344,59],[337,59],[345,233],[338,59],[339,59],[340,59],[80,234],[71,235],[69,236],[70,237]],"semanticDiagnosticsPerFile":[230,217,228,229,232,218,221,219,231,223,224,227,222,225,220,226,296,298,291,279,295,290,294,292,293,289,202,262,266,263,267,264,268,265,261,272,275,273,276,278,269,277,271,274,270,285,287,280,282,288,283,281,286,284,216,246,248,240,249,247,253,250,241,239,252,238,256,251,257,205,206,203,204,207,208,209,210,214,211,212,213,260,243,244,242,236,245,233,237,255,259,258,254,215,308,319,320,323,321,325,328,327,326,324,322,309,310,348,350,357,351,349,364,365,359,360,361,355,356,358,353,354,352,330,96,84,85,83,86,87,88,89,90,91,92,93,94,95,454,367,368,403,404,405,406,407,408,409,410,411,412,413,415,414,416,417,418,402,452,419,420,421,453,422,423,424,425,426,427,428,429,430,431,432,433,434,436,435,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,312,311,369,297,111,177,176,175,116,132,130,131,117,200,102,104,105,106,109,112,129,107,124,110,125,128,126,123,103,108,127,133,121,115,113,122,119,118,114,120,196,190,183,182,191,192,184,197,178,179,180,199,181,185,186,193,194,195,198,187,134,188,189,174,172,173,138,139,140,141,142,143,144,145,164,146,147,148,149,150,151,171,152,153,154,169,155,170,156,167,168,157,158,159,165,166,160,161,162,163,137,136,135,101,316,315,329,363,318,313,362,317,314,335,55,97,336,57,56,54,235,201,47,44,45,8,10,9,2,11,12,13,14,15,16,17,18,3,4,19,23,20,21,22,24,25,26,5,27,28,29,30,6,34,31,32,33,35,7,36,41,42,37,38,39,40,1,43,385,392,384,399,376,375,398,393,396,378,377,373,372,395,374,379,380,383,370,401,400,387,388,390,386,389,394,381,382,391,371,397,234,301,100,299,302,300,46,81,303,98,307,306,334,346,347,331,366,333,332,82,304,99,305,48,53,51,50,52,49,343,341,342,344,337,345,338,339,340,74,59,79,72,67,61,78,68,77,60,73,64,80,75,62,65,66,58,76,63,71,69,70]},"version":"5.3.3"}
1
+ {"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.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.intl.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../@types/global/index.d.ts","../../../node_modules/tslib/tslib.d.ts","../src/types/domain.ts","../src/types/user.ts","../src/types/role.ts","../src/types/privilege.ts","../src/types/types.ts","../src/types/index.ts","../../../node_modules/redux/index.d.ts","../../../node_modules/pwa-helpers/lazy-reducer-enhancer.d.ts","../../../node_modules/redux-thunk/es/types.d.ts","../../../node_modules/redux-thunk/es/index.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/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/checker.d.ts","../../utils/dist/src/index.d.ts","../src/actions/app.ts","../src/reducers/app.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/startcase.d.ts","../../../node_modules/pwa-helpers/metadata.d.ts","../src/actions/const.ts","../src/reducers/route.ts","../../graphql/dist/src/gql-context.d.ts","../../../node_modules/graphql/version.d.ts","../../../node_modules/graphql/jsutils/maybe.d.ts","../../../node_modules/graphql/language/source.d.ts","../../../node_modules/graphql/jsutils/objmap.d.ts","../../../node_modules/graphql/jsutils/path.d.ts","../../../node_modules/graphql/jsutils/promiseorvalue.d.ts","../../../node_modules/graphql/language/kinds.d.ts","../../../node_modules/graphql/language/tokenkind.d.ts","../../../node_modules/graphql/language/ast.d.ts","../../../node_modules/graphql/language/location.d.ts","../../../node_modules/graphql/error/graphqlerror.d.ts","../../../node_modules/graphql/language/directivelocation.d.ts","../../../node_modules/graphql/type/directives.d.ts","../../../node_modules/graphql/type/schema.d.ts","../../../node_modules/graphql/type/definition.d.ts","../../../node_modules/graphql/execution/execute.d.ts","../../../node_modules/graphql/graphql.d.ts","../../../node_modules/graphql/type/scalars.d.ts","../../../node_modules/graphql/type/introspection.d.ts","../../../node_modules/graphql/type/validate.d.ts","../../../node_modules/graphql/type/assertname.d.ts","../../../node_modules/graphql/type/index.d.ts","../../../node_modules/graphql/language/printlocation.d.ts","../../../node_modules/graphql/language/lexer.d.ts","../../../node_modules/graphql/language/parser.d.ts","../../../node_modules/graphql/language/printer.d.ts","../../../node_modules/graphql/language/visitor.d.ts","../../../node_modules/graphql/language/predicates.d.ts","../../../node_modules/graphql/language/index.d.ts","../../../node_modules/graphql/execution/subscribe.d.ts","../../../node_modules/graphql/execution/values.d.ts","../../../node_modules/graphql/execution/index.d.ts","../../../node_modules/graphql/subscription/index.d.ts","../../../node_modules/graphql/utilities/typeinfo.d.ts","../../../node_modules/graphql/validation/validationcontext.d.ts","../../../node_modules/graphql/validation/validate.d.ts","../../../node_modules/graphql/validation/specifiedrules.d.ts","../../../node_modules/graphql/validation/rules/executabledefinitionsrule.d.ts","../../../node_modules/graphql/validation/rules/fieldsoncorrecttyperule.d.ts","../../../node_modules/graphql/validation/rules/fragmentsoncompositetypesrule.d.ts","../../../node_modules/graphql/validation/rules/knownargumentnamesrule.d.ts","../../../node_modules/graphql/validation/rules/knowndirectivesrule.d.ts","../../../node_modules/graphql/validation/rules/knownfragmentnamesrule.d.ts","../../../node_modules/graphql/validation/rules/knowntypenamesrule.d.ts","../../../node_modules/graphql/validation/rules/loneanonymousoperationrule.d.ts","../../../node_modules/graphql/validation/rules/nofragmentcyclesrule.d.ts","../../../node_modules/graphql/validation/rules/noundefinedvariablesrule.d.ts","../../../node_modules/graphql/validation/rules/nounusedfragmentsrule.d.ts","../../../node_modules/graphql/validation/rules/nounusedvariablesrule.d.ts","../../../node_modules/graphql/validation/rules/overlappingfieldscanbemergedrule.d.ts","../../../node_modules/graphql/validation/rules/possiblefragmentspreadsrule.d.ts","../../../node_modules/graphql/validation/rules/providedrequiredargumentsrule.d.ts","../../../node_modules/graphql/validation/rules/scalarleafsrule.d.ts","../../../node_modules/graphql/validation/rules/singlefieldsubscriptionsrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueargumentnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniquedirectivesperlocationrule.d.ts","../../../node_modules/graphql/validation/rules/uniquefragmentnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueinputfieldnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueoperationnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniquevariablenamesrule.d.ts","../../../node_modules/graphql/validation/rules/valuesofcorrecttyperule.d.ts","../../../node_modules/graphql/validation/rules/variablesareinputtypesrule.d.ts","../../../node_modules/graphql/validation/rules/variablesinallowedpositionrule.d.ts","../../../node_modules/graphql/validation/rules/loneschemadefinitionrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueoperationtypesrule.d.ts","../../../node_modules/graphql/validation/rules/uniquetypenamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueenumvaluenamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniquefielddefinitionnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueargumentdefinitionnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniquedirectivenamesrule.d.ts","../../../node_modules/graphql/validation/rules/possibletypeextensionsrule.d.ts","../../../node_modules/graphql/validation/rules/custom/nodeprecatedcustomrule.d.ts","../../../node_modules/graphql/validation/rules/custom/noschemaintrospectioncustomrule.d.ts","../../../node_modules/graphql/validation/index.d.ts","../../../node_modules/graphql/error/syntaxerror.d.ts","../../../node_modules/graphql/error/locatederror.d.ts","../../../node_modules/graphql/error/index.d.ts","../../../node_modules/graphql/utilities/getintrospectionquery.d.ts","../../../node_modules/graphql/utilities/getoperationast.d.ts","../../../node_modules/graphql/utilities/getoperationroottype.d.ts","../../../node_modules/graphql/utilities/introspectionfromschema.d.ts","../../../node_modules/graphql/utilities/buildclientschema.d.ts","../../../node_modules/graphql/utilities/buildastschema.d.ts","../../../node_modules/graphql/utilities/extendschema.d.ts","../../../node_modules/graphql/utilities/lexicographicsortschema.d.ts","../../../node_modules/graphql/utilities/printschema.d.ts","../../../node_modules/graphql/utilities/typefromast.d.ts","../../../node_modules/graphql/utilities/valuefromast.d.ts","../../../node_modules/graphql/utilities/valuefromastuntyped.d.ts","../../../node_modules/graphql/utilities/astfromvalue.d.ts","../../../node_modules/graphql/utilities/coerceinputvalue.d.ts","../../../node_modules/graphql/utilities/concatast.d.ts","../../../node_modules/graphql/utilities/separateoperations.d.ts","../../../node_modules/graphql/utilities/stripignoredcharacters.d.ts","../../../node_modules/graphql/utilities/typecomparators.d.ts","../../../node_modules/graphql/utilities/assertvalidname.d.ts","../../../node_modules/graphql/utilities/findbreakingchanges.d.ts","../../../node_modules/graphql/utilities/typedquerydocumentnode.d.ts","../../../node_modules/graphql/utilities/index.d.ts","../../../node_modules/graphql/index.d.ts","../../../node_modules/ts-invariant/lib/invariant.d.ts","../../../node_modules/@apollo/client/invarianterrorcodes.d.ts","../../../node_modules/@apollo/client/utilities/globals/invariantwrappers.d.ts","../../../node_modules/@apollo/client/utilities/globals/maybe.d.ts","../../../node_modules/@apollo/client/utilities/globals/global.d.ts","../../../node_modules/@apollo/client/utilities/globals/index.d.ts","../../../node_modules/@apollo/client/utilities/graphql/directives.d.ts","../../../node_modules/@apollo/client/utilities/graphql/documenttransform.d.ts","../../../node_modules/@apollo/client/utilities/graphql/fragments.d.ts","../../../node_modules/@apollo/client/utilities/graphql/getfromast.d.ts","../../../node_modules/@apollo/client/utilities/graphql/print.d.ts","../../../node_modules/@apollo/client/utilities/graphql/storeutils.d.ts","../../../node_modules/@apollo/client/utilities/graphql/transform.d.ts","../../../node_modules/@apollo/client/utilities/graphql/operations.d.ts","../../../node_modules/@graphql-typed-document-node/core/typings/index.d.ts","../../../node_modules/@apollo/client/node_modules/@wry/trie/lib/index.d.ts","../../../node_modules/@apollo/client/cache/core/types/cache.d.ts","../../../node_modules/@apollo/client/cache/inmemory/entitystore.d.ts","../../../node_modules/@apollo/client/cache/inmemory/fragmentregistry.d.ts","../../../node_modules/@apollo/client/cache/inmemory/types.d.ts","../../../node_modules/@apollo/client/cache/inmemory/fixpolyfills.d.ts","../../../node_modules/@apollo/client/cache/inmemory/reactivevars.d.ts","../../../node_modules/@apollo/client/utilities/caching/getmemoryinternals.d.ts","../../../node_modules/@apollo/client/cache/inmemory/inmemorycache.d.ts","../../../node_modules/@apollo/client/cache/inmemory/object-canon.d.ts","../../../node_modules/@apollo/client/cache/inmemory/readfromstore.d.ts","../../../node_modules/@apollo/client/cache/inmemory/writetostore.d.ts","../../../node_modules/@apollo/client/cache/inmemory/policies.d.ts","../../../node_modules/@apollo/client/cache/core/types/common.d.ts","../../../node_modules/@apollo/client/cache/core/types/dataproxy.d.ts","../../../node_modules/@apollo/client/cache/core/cache.d.ts","../../../node_modules/@apollo/client/cache/inmemory/helpers.d.ts","../../../node_modules/@apollo/client/cache/index.d.ts","../../../node_modules/@apollo/client/utilities/policies/pagination.d.ts","../../../node_modules/zen-observable-ts/module.d.ts","../../../node_modules/symbol-observable/index.d.ts","../../../node_modules/@apollo/client/utilities/observables/observable.d.ts","../../../node_modules/@apollo/client/utilities/promises/decoration.d.ts","../../../node_modules/@apollo/client/utilities/common/objects.d.ts","../../../node_modules/@apollo/client/utilities/common/mergedeep.d.ts","../../../node_modules/@apollo/client/utilities/common/clonedeep.d.ts","../../../node_modules/@apollo/client/utilities/common/maybedeepfreeze.d.ts","../../../node_modules/@apollo/client/utilities/observables/iteration.d.ts","../../../node_modules/@apollo/client/utilities/observables/asyncmap.d.ts","../../../node_modules/@apollo/client/utilities/observables/concast.d.ts","../../../node_modules/@apollo/client/utilities/observables/subclassing.d.ts","../../../node_modules/@apollo/client/utilities/common/arrays.d.ts","../../../node_modules/@apollo/client/utilities/common/errorhandling.d.ts","../../../node_modules/@apollo/client/utilities/common/canuse.d.ts","../../../node_modules/@apollo/client/utilities/common/compact.d.ts","../../../node_modules/@apollo/client/utilities/common/makeuniqueid.d.ts","../../../node_modules/@apollo/client/utilities/common/stringifyfordisplay.d.ts","../../../node_modules/@apollo/client/utilities/common/mergeoptions.d.ts","../../../node_modules/@apollo/client/utilities/common/incrementalresult.d.ts","../../../node_modules/@apollo/client/utilities/common/canonicalstringify.d.ts","../../../node_modules/@apollo/client/utilities/types/primitive.d.ts","../../../node_modules/@apollo/client/utilities/types/deepomit.d.ts","../../../node_modules/@apollo/client/utilities/common/omitdeep.d.ts","../../../node_modules/@apollo/client/utilities/common/striptypename.d.ts","../../../node_modules/@apollo/client/utilities/types/isstrictlyany.d.ts","../../../node_modules/@apollo/client/utilities/types/deeppartial.d.ts","../../../node_modules/@apollo/client/utilities/types/onlyrequiredproperties.d.ts","../../../node_modules/@wry/caches/lib/common.d.ts","../../../node_modules/@wry/caches/lib/strong.d.ts","../../../node_modules/@wry/caches/lib/weak.d.ts","../../../node_modules/@wry/caches/lib/index.d.ts","../../../node_modules/@apollo/client/utilities/caching/caches.d.ts","../../../node_modules/@apollo/client/utilities/caching/sizes.d.ts","../../../node_modules/@apollo/client/utilities/caching/index.d.ts","../../../node_modules/@apollo/client/utilities/index.d.ts","../../../node_modules/@apollo/client/link/core/types.d.ts","../../../node_modules/@apollo/client/link/core/apollolink.d.ts","../../../node_modules/@apollo/client/link/core/empty.d.ts","../../../node_modules/@apollo/client/link/core/from.d.ts","../../../node_modules/@apollo/client/link/core/split.d.ts","../../../node_modules/@apollo/client/link/core/concat.d.ts","../../../node_modules/@apollo/client/link/core/execute.d.ts","../../../node_modules/@apollo/client/link/core/index.d.ts","../../../node_modules/@apollo/client/link/http/parseandcheckhttpresponse.d.ts","../../../node_modules/@apollo/client/link/http/serializefetchparameter.d.ts","../../../node_modules/@apollo/client/link/http/selecthttpoptionsandbody.d.ts","../../../node_modules/@apollo/client/link/http/checkfetcher.d.ts","../../../node_modules/@apollo/client/link/http/createsignalifsupported.d.ts","../../../node_modules/@apollo/client/link/http/selecturi.d.ts","../../../node_modules/@apollo/client/link/http/createhttplink.d.ts","../../../node_modules/@apollo/client/link/http/httplink.d.ts","../../../node_modules/@apollo/client/link/http/rewriteuriforget.d.ts","../../../node_modules/@apollo/client/link/http/index.d.ts","../../../node_modules/@apollo/client/core/networkstatus.d.ts","../../../node_modules/@apollo/client/link/utils/fromerror.d.ts","../../../node_modules/@apollo/client/link/utils/topromise.d.ts","../../../node_modules/@apollo/client/link/utils/frompromise.d.ts","../../../node_modules/@apollo/client/link/utils/throwservererror.d.ts","../../../node_modules/@apollo/client/link/utils/validateoperation.d.ts","../../../node_modules/@apollo/client/link/utils/createoperation.d.ts","../../../node_modules/@apollo/client/link/utils/transformoperation.d.ts","../../../node_modules/@apollo/client/link/utils/filteroperationvariables.d.ts","../../../node_modules/@apollo/client/link/utils/index.d.ts","../../../node_modules/@apollo/client/errors/index.d.ts","../../../node_modules/@apollo/client/core/queryinfo.d.ts","../../../node_modules/@apollo/client/core/localstate.d.ts","../../../node_modules/@apollo/client/core/types.d.ts","../../../node_modules/@apollo/client/core/watchqueryoptions.d.ts","../../../node_modules/@apollo/client/core/querymanager.d.ts","../../../node_modules/@apollo/client/core/observablequery.d.ts","../../../node_modules/@apollo/client/core/apolloclient.d.ts","../../../node_modules/graphql-tag/lib/index.d.ts","../../../node_modules/@apollo/client/core/index.d.ts","../../graphql/dist/src/graphql-client.d.ts","../../graphql/dist/src/json-to-grqphql-query.d.ts","../../graphql/dist/src/active-request-counter-link.d.ts","../../graphql/dist/src/index.d.ts","../src/actions/busy.ts","../src/reducers/busy.ts","../src/store.ts","../src/actions/route.ts","../src/actions/index.ts","../../../node_modules/@lit/reactive-element/css-tag.d.ts","../../../node_modules/@lit/reactive-element/reactive-controller.d.ts","../../../node_modules/@lit/reactive-element/reactive-element.d.ts","../../../node_modules/@types/trusted-types/lib/index.d.ts","../../../node_modules/@types/trusted-types/index.d.ts","../../../node_modules/lit/node_modules/lit-html/directive.d.ts","../../../node_modules/lit/node_modules/lit-html/lit-html.d.ts","../../../node_modules/lit-element/node_modules/lit-html/lit-html.d.ts","../../../node_modules/lit-element/lit-element.d.ts","../../../node_modules/lit/node_modules/lit-html/is-server.d.ts","../../../node_modules/lit/index.d.ts","../../../node_modules/@lit/reactive-element/decorators/base.d.ts","../../../node_modules/@lit/reactive-element/decorators/custom-element.d.ts","../../../node_modules/@lit/reactive-element/decorators/property.d.ts","../../../node_modules/@lit/reactive-element/decorators/state.d.ts","../../../node_modules/@lit/reactive-element/decorators/event-options.d.ts","../../../node_modules/@lit/reactive-element/decorators/query.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-all.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-async.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-assigned-nodes.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-assigned-elements.d.ts","../../../node_modules/lit/decorators.d.ts","../../../node_modules/@types/lodash-es/isequal.d.ts","../src/app/pages/page-view.ts","../src/object-store.ts","../src/index.ts","../src/app/app-style.ts","../../../node_modules/pwa-helpers/connect-mixin.d.ts","../../../node_modules/pwa-helpers/router.d.ts","../../styles/dist/src/headroom-styles.d.ts","../../styles/dist/src/scrollbar-styles.d.ts","../../styles/dist/src/spinner-styles.d.ts","../../styles/dist/src/tooltip-styles.d.ts","../../styles/dist/src/common-button-styles.d.ts","../../styles/dist/src/common-grist-styles.d.ts","../../styles/dist/src/button-container-styles.d.ts","../../styles/dist/src/common-header-styles.d.ts","../../styles/dist/src/index.d.ts","../src/app/app.ts","../src/app/pages/page-404.ts","../../../node_modules/@material/base/foundation.d.ts","../../../node_modules/@material/mwc-base/utils.d.ts","../../../node_modules/@material/base/types.d.ts","../../../node_modules/@material/mwc-base/base-element.d.ts","../../../node_modules/@material/ripple/types.d.ts","../../../node_modules/@material/ripple/adapter.d.ts","../../../node_modules/@material/ripple/foundation.d.ts","../../../node_modules/@material/mwc-ripple/mwc-ripple-base.d.ts","../../../node_modules/@material/mwc-ripple/mwc-ripple.d.ts","../../../node_modules/@material/mwc-base/aria-property.d.ts","../../../node_modules/@material/mwc-ripple/ripple-handlers.d.ts","../../../node_modules/@material/mwc-icon-button/mwc-icon-button-base.d.ts","../../../node_modules/@material/mwc-icon-button/mwc-icon-button.d.ts","../../../node_modules/@material/mwc-icon/mwc-icon.d.ts","../../../node_modules/lit/node_modules/lit-html/directives/class-map.d.ts","../../../node_modules/lit/directives/class-map.d.ts","../../../node_modules/@material/mwc-button/mwc-button-base.d.ts","../../../node_modules/@material/mwc-button/mwc-button.d.ts","../src/entries/public/home.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/file.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/filereader.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/index.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/dom-events.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/mocha/index.d.ts"],"fileInfos":[{"version":"f33e5332b24c3773e930e212cbb8b6867c8ba3ec4492064ea78e55a524d57450","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","26f2f787e82c4222710f3b676b4d83eb5ad0a72fa7b746f03449e7a026ce5073","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"21e41a76098aa7a191028256e52a726baafd45a925ea5cf0222eb430c96c1d83","affectsGlobalScope":true},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"e0275cd0e42990dc3a16f0b7c8bca3efe87f1c8ad404f80c6db1c7c0b828c59f","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"acae90d417bee324b1372813b5a00829d31c7eb670d299cd7f8f9a648ac05688","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"439ece86b8b4d4af78af97e74d373ae1cd657c7169f4dee55038648217ca9fcf","7a1971efcba559ea9002ada4c4e3c925004fb67a755300d53b5edf9399354900",{"version":"99b772888fd71e82f91719a3a92aaa4fc69b2116caf91bfb64dd5edd77e9f635","signature":"4d4cf93a6b4c81851ad759e4569b6feb7a701e80b13a6f9d8d9c6012bbb86bd6"},{"version":"3c95b84d9e94d627563fb5831f395e301262c97d9c1698eea3fee971df6cb5ef","signature":"2e6035af8f3e43bf95e4983329c8277d66f9b271106af27b99a85d1c1b9daf4a"},{"version":"ceb0826ca35e1d2593e91abca066a1fefbbc6c04cea71a7c85ee9c28c0949fad","signature":"774308610e8d4a9954cd93840f99decbf340accfe3ad7365547950ede8162c92"},{"version":"e4150841614359d71012379b3fff85faeb01ebb5d5e46f5dfb4752f7bcd3fbfa","signature":"36c15dd26c66c97b9df26ce34baacdb13fc760c5b9a2d789dcc317d27b189257"},{"version":"59fe9df072abeac18b929473e0b8e7f61639bdea15303e57575b0c4b4adcd104","signature":"3d7c0b593a29d717b2b2ba3f03f819c3c48bf9e250d79c4a31860af80f177e8c"},{"version":"d4f20ff8892b737b1c9634f1a3c4cb8f9e71818f006d8a82b9e46fab359b7158","signature":"f228d440342f5d0933f5db093aafab2f07de24a427b4488ccfae27b7457d7666"},{"version":"fd624f7d7b264922476685870f08c5e1c6d6a0f05dee2429a9747b41f6b699d4","affectsGlobalScope":true},"701978f3975f96e76e3ffc2e1762e3a97e3d323812049fb6fdfd559579b89708","d50a158fc581be7b1c51253ad33cb29c0a8ce3c42ca38775ffadf104c36376d0","1f2cdbf59d0b7933678a64ac26ae2818c48ff9ebf93249dde775dc3e173e16bf","05cfea0488751015b0b85911b6cdcde7c6cebdd9b8cada1ec0b5c1736357a552","f5800813e5c0d6c27d73b76f2c99f39bdfd6229d03553a8a9ae485f6aeb94425","4d5e201faa4bceca840b652dfc10795170c061f498e19429a06e056490aa69aa","6cf5098c7bf0c14358b656edd6103df1ae9f8c6a94abca9df8650c2b520d8096","ee11b7061adce4a1c0370620949a57851215b152a5632d2faf1aedbc90ad0520","f8c86fcbfb0a1e69a0ed28d3249cc33c312fa23a39c17e15cbbcc539bdcdc303","85e0f00b17c3ae8cd88438c754a2c43f4a9361e685b97a70e52e33afbf62488f","39d2d450df6efbf38585fd316f18922c8ac3fdfd4c3fc412d0bee34e2bc86378","4dcdfe4c18557fc02d8cb22cb422cb98bfeba8158aaf18cc66f9d99293ebe2c8","7efea6f2270a14f1b0d5f472f2a6fcb0a97beb677299e10b073cc2abdabeef51","385679adcfaaa1b561983bd5ae140b4db1e360a534f9685ee87f5019540c9ce8","3df6a0e8bdb7199dff6cf75c0250316f06b87c982bb47460960a1c5a793f5ca6","b3238dd00b7796eda3f507726e9882a55ff7043b249be8309abed22cfb7d7463","f499d7fb533781939c7a5ab778ac6e6c8ffe65601b1a61a843c36ee0013f05b6","7fcb76be88d4a64f6318b5a24b57021d7463f24485a3d1a931bf664c7e437534","940995980343a2bfebf515240e5eec487f845002a089bee0d18656ebf61d59aa","098ec42cd54c2b3354584c4fe8ad143040114891dde762741522b62788772f0d","1e73d612f806d183d6c16c4135c16c1a14dd827c1a67097e72ab1841852bfcb9","30046b0787c577061d43e498b507da8a249fbc58bbe33a09a7bef777e1d5fb67","cb2de9f1d7d286191834eeb331d23dc69eeb322745114ddad1695e4c575b5feb","dc2461db89dde29306a73a2926e2cf874e981ef034412f4d1e3d06d45bb3127e","13a5d8ec52111b64ed8fdcb47ab664b60085733c46c44aede33fd2926840ac31","3d756f378335d282346d9c6d93a05f6f6c884ac93aaa67525c7d127ce9454c9d",{"version":"7b48718e216c87c95034533cb162482b9e7d8135b830089e31796aa192b45e29","signature":"641089f0b8094ef74b9d4b3364d5dec1592d5e3b8a51c1ba491bc8872049e79a"},{"version":"7ed9e9171143f9e565a55d9b9e8b52a70946490021141395ed8a6083d2026bc1","signature":"c0dab6e6130fcc1162e18e1d7ee3038525ee9daebaa8f4f221fb67440ae38509"},"b8442e9db28157344d1bc5d8a5a256f1692de213f0c0ddeb84359834015a008c","458111fc89d11d2151277c822dfdc1a28fa5b6b2493cf942e37d4cd0a6ee5f22","da2b6356b84a40111aaecb18304ea4e4fcb43d70efb1c13ca7d7a906445ee0d3","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","6f294731b495c65ecf46a5694f0082954b961cf05463bea823f8014098eaffa0","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","68a0d0c508e1b6d8d23a519a8a0a3303dc5baa4849ca049f21e5bad41945e3fc","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","b03afe4bec768ae333582915146f48b161e567a81b5ebc31c4d78af089770ac9","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","4f6a12044ee6f458db11964153830abbc499e73d065c51c329ec97407f4b13dd","4d180dd4d0785f2cd140bc069d56285d0121d95b53e4348feb4f62db2d7035d3","66e64ed8de436d3ceabe6c3f59dd0a39a5237991bccfda5751c78d129e436f68",{"version":"93621eb03f607927957920ba4eef6f8b6fb0898ed79e848cc533344907b8f1eb","signature":"7af29b0589483f7bb8a99405ddb849f34bc053146184561ed4179e02f5fe4d0f"},{"version":"aeb7e98e44ccf93b887e377de3182b9382e8b0f8047eae1f40eca0985486280a","signature":"7611542379a72f7b8a92110271908b9d1913d72a581e14a779491c9083dc33db"},"7d54d48a4365f355a7759b1e29f43dea9163a9445d3f26e1234dea0af3e6a16d","78647004e18e4c16b8a2e8345fca9267573d1c5a29e11ddfee71858fd077ef6e","0804044cd0488cb7212ddbc1d0f8e1a5bd32970335dbfc613052304a1b0318f9","b725acb041d2a18fde8f46c48a1408418489c4aa222f559b1ef47bf267cb4be0","85084ae98c1d319e38ef99b1216d3372a9afd7a368022c01c3351b339d52cb58","898ec2410fae172e0a9416448b0838bed286322a5c0c8959e8e39400cd4c5697","692345a43bac37c507fa7065c554258435ab821bbe4fb44b513a70063e932b45","cddd50d7bd9d7fddda91a576db9f61655d1a55e2d870f154485812f6e39d4c15","0539583b089247b73a21eb4a5f7e43208a129df6300d6b829dc1039b79b6c8c4","7aba43bc7764fcd02232382c780c3e99ef8dbfdac3c58605a0b3781fab3d8044","522edc786ed48304671b935cf7d3ed63acc6636ab9888c6e130b97a6aea92b46","1e1ed5600d80406a10428e349af8b6f09949cd5054043ea8588903e8f9e8d705","de21641eb8edcbc08dd0db4ee70eea907cd07fe72267340b5571c92647f10a77","a53039ba614075aeb702271701981babbd0d4f4dcbf319ddee4c08fb8196cc7a","6758f7b72fa4d38f4f4b865516d3d031795c947a45cc24f2cfba43c91446d678","da679a5bb46df3c6d84f637f09e6689d6c2d07e907ea16adc161e4529a4954d6","dc1a664c33f6ddd2791569999db2b3a476e52c5eeb5474768ffa542b136d78c0","bdf7abbd7df4f29b3e0728684c790e80590b69d92ed8d3bf8e66d4bd713941fe","8decb32fc5d44b403b46c3bb4741188df4fbc3c66d6c65669000c5c9cd506523","4beaf337ee755b8c6115ff8a17e22ceab986b588722a52c776b8834af64e0f38","c26dd198f2793bbdcc55103823a2767d6223a7fdb92486c18b86deaf63208354","93551b302a808f226f0846ad8012354f2d53d6dedc33b540d6ca69836781a574","f0ff1c010d5046af3874d3b4df746c6f3921e4b3fbdec61dee0792fc0cb36ccd","778b684ebc6b006fcffeab77d25b34bf6e400100e0ec0c76056e165c6399ab05","463851fa993af55fb0296e0d6afa27407ef91bf6917098dd665aba1200d250c7","67c6de7a9c490bda48eb401bea93904b6bbfc60e47427e887e6a3da6195540be","be8f369f8d7e887eab87a3e4e41f1afcf61bf06056801383152aa83bda1f6a72","352bfb5f3a9d8a9c2464ad2dc0b2dc56a8212650a541fb550739c286dd341de1","a5aae636d9afdacb22d98e4242487436d8296e5a345348325ccc68481fe1b690","d007c769e33e72e51286b816d82cd7c3a280cba714e7f958691155068bd7150a","764150c107451d2fd5b6de305cff0a9dcecf799e08e6f14b5a6748724db46d8a","b04cf223c338c09285010f5308b980ee6d8bfa203824ed2537516f15e92e8c43","4b387f208d1e468193a45a51005b1ed5b666010fc22a15dc1baf4234078b636e","70441eda704feffd132be0c1541f2c7f6bbaafce25cb9b54b181e26af3068e79","d1addb12403afea87a1603121396261a45190886c486c88e1a5d456be17c2049","15d43873064dc8787ca1e4c39149be59183c404d48a8cd5a0ea019bb5fdf8d58","ea4b5d319625203a5a96897b057fddf6017d0f9a902c16060466fe69cc007243","3d06897c536b4aad2b2b015d529270439f2cadd89ca2ff7bd8898ee84898dd88","ab01d8fcb89fae8eda22075153053fefac69f7d9571a389632099e7a53f1922d","bac0ec1f4c61abc7c54ccebb0f739acb0cdbc22b1b19c91854dc142019492961","566b0806f9016fa067b7fecf3951fcc295c30127e5141223393bde16ad04aa4a","8e801abfeda45b1b93e599750a0a8d25074d30d4cc01e3563e56c0ff70edeb68","902997f91b09620835afd88e292eb217fbd55d01706b82b9a014ff408f357559","a3727a926e697919fb59407938bd8573964b3bf543413b685996a47df5645863","83f36c0792d352f641a213ee547d21ea02084a148355aa26b6ef82c4f61c1280","dce7d69c17a438554c11bbf930dec2bee5b62184c0494d74da336daee088ab69","1e8f2cda9735002728017933c54ccea7ebee94b9c68a59a4aac1c9a58aa7da7d","e327a2b222cf9e5c93d7c1ed6468ece2e7b9d738e5da04897f1a99f49d42cca1","65165246b59654ec4e1501dd87927a0ef95d57359709e00e95d1154ad8443bc7","f1bacba19e2fa2eb26c499e36b5ab93d6764f2dba44be3816f12d2bc9ac9a35b","bce38da5fd851520d0cb4d1e6c3c04968cec2faa674ed321c118e97e59872edc","3398f46037f21fb6c33560ceca257259bd6d2ea03737179b61ea9e17cbe07455","6e14fc6c27cb2cb203fe1727bb3a923588f0be8c2604673ad9f879182548daca","12b9bcf8395d33837f301a8e6d545a24dfff80db9e32f8e8e6cf4b11671bb442","04295cc38689e32a4ea194c954ea6604e6afb6f1c102104f74737cb8cf744422","7418f434c136734b23f634e711cf44613ca4c74e63a5ae7429acaee46c7024c8","27d40290b7caba1c04468f2b53cf7112f247f8acdd7c20589cd7decf9f762ad0","2608b8b83639baf3f07316df29202eead703102f1a7e32f74a1b18cf1eee54b5","c93657567a39bd589effe89e863aaadbc339675fca6805ae4d97eafbcce0a05d","909d5db5b3b19f03dfb4a8f1d00cf41d2f679857c28775faf1f10794cbbe9db9","e4504bffce13574bab83ab900b843590d85a0fd38faab7eff83d84ec55de4aff","8ab707f3c833fc1e8a51106b8746c8bc0ce125083ea6200ad881625ae35ce11e","730ddc2386276ac66312edbcc60853fedbb1608a99cb0b1ff82ebf26911dba1f","c1b3fa201aa037110c43c05ea97800eb66fea3f2ecc5f07c6fd47f2b6b5b21d2","636b44188dc6eb326fd566085e6c1c6035b71f839d62c343c299a35888c6f0a9","3b2105bf9823b53c269cabb38011c5a71360c8daabc618fec03102c9514d230c","f96e63eb56e736304c3aef6c745b9fe93db235ddd1fec10b45319c479de1a432","acb4f3cee79f38ceba975e7ee3114eb5cd96ccc02742b0a4c7478b4619f87cd6","cfc85d17c1493b6217bad9052a8edc332d1fde81a919228edab33c14aa762939","eebda441c4486c26de7a8a7343ebbc361d2b0109abff34c2471e45e34a93020a","727b4b8eb62dd98fa4e3a0937172c1a0041eb715b9071c3de96dad597deddcab","708e2a347a1b9868ccdb48f3e43647c6eccec47b8591b220afcafc9e7eeb3784","6bb598e2d45a170f302f113a5b68e518c8d7661ae3b59baf076be9120afa4813","c28e058db8fed2c81d324546f53d2a7aaefff380cbe70f924276dbad89acd7d1","ebe8f07bb402102c5a764b0f8e34bd92d6f50bd7ac61a2452e76b80e02f9bb4b","826a98cb79deab45ccc4e5a8b90fa64510b2169781a7cbb83c4a0a8867f4cc58","618189f94a473b7fdc5cb5ba8b94d146a0d58834cd77cd24d56995f41643ccd5","5baadaca408128671536b3cb77fea44330e169ada70ce50b902c8d992fe64cf1","a4cc469f3561ea3edc57e091f4c9dcaf7485a70d3836be23a6945db46f0acd0b","91b0965538a5eaafa8c09cf9f62b46d6125aa1b3c0e0629dce871f5f41413f90","2978e33a00b4b5fb98337c5e473ab7337030b2f69d1480eccef0290814af0d51","ba71e9777cb5460e3278f0934fd6354041cb25853feca542312807ce1f18e611","608dbaf8c8bb64f4024013e73d7107c16dba4664999a8c6e58f3e71545e48f66","61937cefd7f4d6fa76013d33d5a3c5f9b0fc382e90da34790764a0d17d6277fb","af7db74826f455bfef6a55a188eb6659fd85fdc16f720a89a515c48724ee4c42","d6ce98a960f1b99a72de771fb0ba773cb202c656b8483f22d47d01d68f59ea86","2a47dc4a362214f31689870f809c7d62024afb4297a37b22cb86f679c4d04088","42d907ac511459d7c4828ee4f3f81cc331a08dc98d7b3cb98e3ff5797c095d2e","63d010bff70619e0cdf7900e954a7e188d3175461182f887b869c312a77ecfbd","1452816d619e636de512ca98546aafb9a48382d570af1473f0432a9178c4b1ff","9e3e3932fe16b9288ec8c948048aef4edf1295b09a5412630d63f4a42265370e","8bdba132259883bac06056f7bacd29a4dcf07e3f14ce89edb022fe9b78dcf9b3","5a5406107d9949d83e1225273bcee1f559bb5588942907d923165d83251a0e37","ca0ca4ca5ad4772161ee2a99741d616fea780d777549ba9f05f4a24493ab44e1","e7ee7be996db0d7cce41a85e4cae3a5fc86cf26501ad94e0a20f8b6c1c55b2d4","72263ae386d6a49392a03bde2f88660625da1eca5df8d95120d8ccf507483d20","b498375d015f01585269588b6221008aae6f0c0dc53ead8796ace64bdfcf62ea","c37aa3657fa4d1e7d22565ae609b1370c6b92bafb8c92b914403d45f0e610ddc","34534c0ead52cc753bdfdd486430ef67f615ace54a4c0e5a3652b4116af84d6d","a1079b54643537f75fa4f4bb963d787a302bddbe3a6001c4b0a524b746e6a9de","7fc9b18b6aafa8a1fc1441670c6c9da63e3d7942c7f451300c48bafd988545e9","200a7b7eb3163da4327412c650e43fbe66c73604a23a694f95ede53c250bfc3b","b843e64cc56422a003f151f950c0b11dfc93e48d836c23d1de3ff9760ba66128",{"version":"05fe0a22611e537b8d36d14182dd587ac81692247592e495bed72201d739d537","affectsGlobalScope":true},"0d728b43672268b6358c183f58babb14b4d9133368d3a3d970a638e745a07946",{"version":"68b24afcc8f547f6f4e01a6438f693acf091679d1290f16ac3ff4281604d09c3","affectsGlobalScope":true},"be65d9c4b878135fd01ec9d627649b8f0ea042405d4238555bb1ed32ba4bc0d4","c24c21411a095cbe726d6ee0a45d219109d661371d60647abf0ec72ac356959d","6366130e8579ed3a871038161c56305fb50dc86515dfe7df2086dff1064e7335","f0b49e409996f4d3ddb54f71ec92f5413d004070f23ac1626d698502af028d80","178f27d07eb47715315586e6b93499134f9645a781dcee121809772319da2310","075f39e49fec4edbf341af1236a12efdf4ceef20a1d463d3aafe1e528260ad01","0e637de8a04bb36479e999759625ac74ba8ec316f38699c1a2bbc2287cba3a02","1439e71e2196fcf0c998446c0a86cd45c1c0c3f872e2b5c96747b77b95626468","8c328b52f3f1a382fa838326757402ba3f89dc956a154a8d39b383ff9d561778","83b5f5f5bdbf7f37b8ffc003abf6afee35a318871c990ad4d69d822f38d77840","656e8a14a0af2822043ecc64532a6d82715811a9c13aececf0538d9851a257a2","7425cbc402ec67a19cd21faa4ef0896dd0a3ebfa6f24d13f693c746fd7ae2b4f","b6f357cb6e31ed152370ecda2fcdd5a8d6f7220a49a7c138345e47ff37be120b","114e3c99f9dc8434ce9a75b63b7a0da5ab0a0293fc6c75dc91a38d0c2c4831fb","2d504f8e4d31b03bc70915d6c19d1eb1467748d525bf88fa809e988ec1ba6a0f","b3dec0879e876086c6bd5d93b671bf3a034da7712ea60b6e815f1de987df060a","4c2dc62cf8ddea2c86bdb2cdcc152482639b455a9d073b8a637ca0871691e808","170b97ee9ca13eadc645d2264b1041b6a927cd12069cb7b7722dc9b3af1ccd53","70bce44ecc89f768392e66f49fdd6578885c6912c70505479b4e03325d5a989d","c677bd7039edf9c7f90a61a59a8e85ce450eee24ec511278893c551e3e32ba42","a023eb8a768d010cc6ca7bbd3d721f2131652ceaa58151021570f0c7275cbfa6","6148d07d0461a3dbf338f5f271ff8b887d8256817f5bacb7fc7bd3bca5b79796","e81622c94502d2b4f7787d7e2695c6e5376126f54f6b15a933aa118da1c639a5","2acb20d43c22fe33e73dfc3f70b41dca9c3af5c1bd61c9642c4ec4498d324f69","cd72696c0c73179120840bf02b371c33d4e97286887776b8d6fc946e6183e8e3","0b453035b3250e887e90c62e2293481f84dea16fd6e4ed64b887d34a7f26f665","1cc001b662ff2ac4881f501a88c5dbb6c02a7f87d6cbee79934fff95c1bbea30","b92c0341be64c4a28cc596fd3eccf0e74ac475f859d2d64a8a74bd969fffcc16","5b857d41d08971f63d54a050c5ba29504887f72e21e548e12e36428726941b11","9b51dd74a388c13e157c457cc39d59dc2aae2134f6a21cc6b695219932cb8817",{"version":"db06f4cdf70e3689f0cd5a96a6836f34024ad61e8dd01473560ebbcae09c532b","affectsGlobalScope":true},"7ff05fb50d37beb9bc6a5f93a3f09db2f959b0327f4f3b4221b2180e5b661322","3a4e80746c4007af4abc9b1263c4088b859cf4c1f7e2f03a074750bd03679e17","8772ee20ba975dd2411063d0d0c762588de75d65be11bfc96d17ff8375e7153a","bd08ee515c95bb5e3387f1c6e06b9b90a7023841c5c50cf8a3be0ccb98b423b6","7e45d0be6c684f8bd44a7c9e9b85866eadeefa8eafb4391a9a301275c35b4fcd","4b9fba069829653b17f331333ded3f88a2193139115ad48589b57542e0f1df5f","fa67c77380575031c13b4428fb04e817fe50540329c981c1a2b147ecb9327ef0","a60cb94351eec664cd5fd6c680ed608258d5ebc0e0a4b469c66ed5a3cef5efd8","9f9159a0e2266b44e522ca1c861e65644a330549201b75ddb4ab79dd85f10c8a","8d00ce6d5f41f222246ca4413da284f9b64c452ede594aaf0a368c804e8c58c1","da9a27a114bc110dfc2aa82ae2c2bca6c263e54e2fb715c88e871cd03b86165c","5845b996902c6abf5559e3795ada1dc5e5eaa3f48c2f893ec614c2aae7ad9155","79ad4eca59cf44701cd2b138b633efa003573521634b60eabf89f9228cd55809","638678c386beeb3793cc51759d9accb2a502c71eb08f453d6536636ef4593186","cc64f85b35f8d01b0355456652a3494c7533269fa47a68272d28fc042e30dfba","9b051f36a67f0e5813b355868f3d869c146b8045b3e143e821eb4d58a39f64be","435124778d845003fbc7f7d0a756cf5b8929365b22dfa9c6afb7b23178c6dc6c","948f93cf2016b2d75c53605a44397983dfb7ba736d5a75e9866413d6af4f5e59","e20a07f3bc177e8757f07bebd3bbe674f1832da963480c644f7aa40722645231","584bb7dd00ffcc99918e3aca639ea6eed99256bef0b9c70f36de255212e086b0","d55df0c04f6b9b73a531aab649fca0e79b6bb6412ff3898d3e60e4e74a1acd6e","d35be9e4af129629c0ba2fc57fe80e94b8e464de3d3b0e8ed621873b9c28c2c4","667d1590f5ed02745949cf1b4532bbf80597c7cd15ef8be42b06f035487cee66","6336e7ae85e7bd0116777d6de86f34c881b89d81083547a8e7a3e9c9ce686b89","33fd57356804dd8d377aa08d6552b66068530b8875fbc8df6ea469953365ab5a","b4d4a27d2d42e2088ded7a7062d6fb2c89c588dae93fc81cbca5109b9f08324d","6882eb3444234bb5fd0f88771b3dac44f96549a16c88fd834c29486e86baf86f","7b18a8a68a7d84946f836e672e1bbb37e349be74124912dd2886da4fb5dad505","c57dcbf8db47e0f0fd15686fc4b52442a8af3d13139a6e5dbd776761ebe0647c","42791bbdba1514368154fc3836f8104c757c7b3a8c397f240581f10c139e8c2a","306ce99f2c5fac7355dc6178d2f2a539c39093beb8f541ed1883b19a7d2a6302",{"version":"4faf050b6c2cad6fcfe45d9fce6c555c35747e601aacc3122cf024faf77f6b4d","affectsGlobalScope":true},"2229ac54fce24aa66dd8473e29f31f95574c9ed9fa71c0950d5e9ebc19fbd34e","1654209fde4ef73f51d3da10c2404c857714bcd8a325b851ee7b0c970cc51dba","5232f93ba808fd18230f4e0fae516fc0ea0ca09386c93ef19dfdddd59d82194b","64c7a2052eb5f8aacad9782fe254e7c225d3cdebcdbd3f2f339b2574b80f61d7","29d46805aba9bd70c3b64aea22a15589fcaa12b2bed2ac9310a7f02b02363bac","0358f51804975d70e83daa425709e472bfadb8ff6627402723881d3299599732","38106630e61f7dff328af03a2f1ac3b46cf57d611e8ea7ec9ec26dccb582bbf7","bf9085ad9469ad87d48e6b294c26e8ebc358a653e25b7c6976065df658ab3a47","cad94e8c96269a3f9c80f09a284e6839c5d01eddd85c90f9efa8e9556f1834e1","8d52b292046eaf7bc4565cadd1c61edc952d075ab2889f41f6d63f10ea59ccb0","38e1f988ca8a3fd0ee2fad611f7f982e9530ae6973151bcacde7c6e7fb04bea5","383f07a2a1fb51cb6fc8265a63eaade643135379374afa7166e3b84b063cd2fb","5754840b8991b703e3b0ae0fefc4a1be80d9ff61afdbf101dacfa6566255e0df","bf0594b413405ede52217e9a3996cae8771920659d46c2a4a411e98a6405851f","29ab9f8d2f84b5f84584ca6ec50535d5ebc34245d45cef32931ee8b4cced4ea3","e0066d0cec0f1194361302cf52abf2e71c0af898eed09ec687d4a34d7b89389c","d4b61bbee55cc1f91616b64937233522f29b6034304440a97344766e58d81224","484c61ffe28d13086dcbadc5371355a457e75a375a1f21649d87209c7da3f5ad","d6a5c17ef46bb6832efa4c7ed3fabf666bed91f7b1f913ef9f9437de72f9f45f","df51929c4b53d6f8740927d77f7bf415d026812a80ff4b03cfa24e9962aab30e","79d3f73e515450fb3e71721e13859666a2fd1dee8d2a4dbd51668eeceb0b5e1e","08a1d8e1474dd44bf89e4fd47ca3fd1c0f6e95d9e74413d95e360ac331915601","71257f1fd9c2606a8db9e614394e154d1b7175b1aab178ff7850cce0f383b0b7","dbf6e52d440f8495adf5f9d46f603ecf7e007b7032542e93a578748948d339cd","f5146fc906ed4a1ff094cf779c438cdb62699836ed52d35d68cdf8ffa33d4f17","c488375c6eddabce83a48132ae081c13ce049163694aee72205716070cdaf2d4","99471216f9a6bbdbd922ce5c3abab16a01f525c04b8565802ba7e2f741ed66ba","699f82d62f80defba3f24f8035fdd7848ce59819b7e92be1c21203784f989880","d6b416da43b620809c3802863ff9fc327fd93a27596b8297e3c11b5babee7c2d","54f654d70f99e22ab62bc368214dbffab229aaa05c0854844e092fc0249b941e","8dccc7b5bc97ef722f7cdc7a98052f604e97ce3d8e35ec3ef71ada72f8dde961","d05c820b83b902757ad03fc35cbbc223cf956378035629da3c939b2ebfcd4c0e","60427cfa4f690de417382f75e3726d6afa5c539bff1a20f02f02d71a039c4583","6001a900ad0d1514db9388aef756f13c49b28db222b3c7b31303b62600374919","0cae168bf15972fa976f592ed83d52657b9eb01fbe14310b925bc6b6bb31a040","d424b5f5b54d4f2338441533f0efb83a1629d6f881a2d18b578c32b77d37bb8a","d57448d620fedd6105a224fe06ee24499aefdc59160d1e2756d88e72ad68ca0e","f3c40e9fe902aad14edb41c369f56ea860d620644f65ee7501df470c8fc27505","07ca7906cd7ebb46a93f2216b2bf1ac94d43a35be2935804b5e346536c4f4cbe","2f6de3568f38b279d342e7a317e423fb8e5582c0ae68ee83bf8c3cb4ac4cf403","7f1cf2dab123e185e96bf46e7380fbb3946b8a8710263e2032429303496c2a34","3a33dc0aaca86bfc68a58b603aeada539a0e47bce983d88473c7076318b91c9f","6cc5efe017d42e58fcd1afbc087bf740c0fcca51a8250fa306e215493a0709c1","8c2ad0ab1572007d1be80efdaf12fa069ca7b819db8adaded41982fcbac20de3",{"version":"84be3272c6f922f2429f90ef70720847c1d89a1e47a3ef7109caf256b44ce054","signature":"b42033bf1067564808e4d360d79281667c2b3b0792c2d615ab641eb85974d4ba"},{"version":"7217e4e347064d1885eacfebcaa7984fe56405de7825555aaa190d39f0538bbc","signature":"39ddfec42c97893f375021f18ef65e174a9a239b963097dab1ab9ed2d63cc099"},{"version":"828f5e659cf67023155156a0784a7db12752280abf9dbd158b4da484ad035f73","signature":"4ab17f80ced148d509345cee706b2b85941515dd76e32cf47118bcdf6a4bd56a","affectsGlobalScope":true},{"version":"30ee4780fae650502bc9a97c23459133bfebd195e46c7c0a6d8eec1c0713db53","signature":"bf22d59377e59146e561b8ab7f449fab01aa068a7a8e0a38fef92d2653c517e0"},{"version":"242b5861bc278076615870823398bbb5b237738f64f03e1740da1bc184b427c5","signature":"78faa3783191b2d5d5f7a9e835ee3f6a1456dc391d6eb5b40d3a27dfd9decd6e"},"e59262ddaae67dec2d226f8a5d05cf6c4dc353c0d9b1e4980a61d7fcf9a2b051","5e30131b6a5587fe666926ad1d9807e733c0a597ed12d682669fcaa331aea576","470b8c2386c916bad4aa0d05e89b271a47dbe1250cb25dc0f93102b457228dde","15fe687c59d62741b4494d5e623d497d55eb38966ecf5bea7f36e48fc3fbe15e",{"version":"2c3b8be03577c98530ef9cb1a76e2c812636a871f367e9edf4c5f3ce702b77f8","affectsGlobalScope":true},"7000ec8572390d035ba5ef993953957150d0c38ffb31b56653c97dd78cb6e1aa","056892cca68dca10a914f1580ba0e5710d26794e8707225dca9b5717ed702f1e","056892cca68dca10a914f1580ba0e5710d26794e8707225dca9b5717ed702f1e","4ddf3962990379d1ea59b369a5516c7533b7944010d6998e0e9b1ab35d5af1f0","1bcd560deed90a43c51b08aa18f7f55229f2e30974ab5ed1b7bb5721be379013","dc08fe04e50bc24d1baded4f33e942222bbdd5d77d6341a93cfe6e4e4586a3be","2a8f0a19a927e83421597c056c90695557142f54ca96358f01eb1f2a5eb228be","d08415b3d6d7fd153ba6e7bf7707ffc57f3c6ad85730ea63544756610b4350c6","411f23da7a63c3d3fd4860c41a458e8df239776fd5d9cd36dd3ad6be92afccbd","6ada3e065916c0ef2dbc9bc0f9b5d59afb25d9176f81fa2c8993a536924140c6","356cc1b058e05e07d2acd73bfa87f83a6f4a343450ee375dad232ff4a55d41d8","df286e6b181ed08766bc19cf1a2fddc50bc5d540f233bc1ce4430a3c1c8c8379","f436800c0af503703110c93144fcc7392524636fb4216296411243b29fe0162d","0d5002560b45ce4fd6c4124632f61789e584be0634602486a2ce59541311d153","bbe13c947d7d6c3426e0e5815e2b3464fa03d34a4bf47298c43b9237cf59555b","9f7d0ee33b9f8fa4dc2e9628e0cdf8683104d01de9d3d24f62cd5da014a5bec4","a8992b852521a66f63e0cedc6e1f054b28f972232b6fa5ca59771db6a1c8bbea","da66c1b3e50ef9908e31ce7a281b137b2db41423c2b143c62524f97a536a53d9",{"version":"9c2adce0839937457ff6710a92828cce1671cc59fb20c0d28d334d6407782806","signature":"08d32a8fc63dbf34214ebb90c547ef20082d7d60126ad146ef8704528fb5e99d"},{"version":"4f1a2df041b302d49a7637e72f2a48d04f84d4a738e01d4351aff891f93a6cc4","signature":"fc48282c397084016a939e1b3f91dcaf4199b6cba339d91d8b2dc2acade79762"},{"version":"fc956dab073307e9f440201b8171d593c50fc678255998c7bb59d8689a9eec3e","signature":"981fc22acc36b6a33c9f5b3d468e975b104cf3409b881ca6cffe84c5f9fda7c1"},{"version":"c3d591f5f6956b217c477912a81a812ee8d5f7e12eec18d06222c4462c4ef6b1","signature":"561e8c7af0e65a4ea90af6b43a54399db172aec993f14981ff45769ee8b6a33e"},"23c05cc4d97aa608b5ea8badadb4e1b0c4e306ed5d651c5d1760552e91d1ad92","452807fa3050dbc39caf1ffd2e9cf9b36e719e36ee062f6adebe50be426790d3","cf93fb9208a01c80f0fad245c4360356e5de6c2384b7641acf0b9cc2f5c42448","336398b0efaf964124e636a9b29c4edd5870aee79ac64bf87be58a9d66b7c048","571bc65ec37ba124e762bb822e14a2b8502dc684e356be8feaccbd6b9cadd023","2bbbefc1235500bdb5091f240dc8cba861a95342272f7d11b7574a0d2ef4f85e","7cd455fc4c4818f19263d73b29c59f3fb5fd54b45a6ab83ca3eb3661281db56b","1c6b9b5501774a2ece6574be8e26092800e3f1f836f8c179b4f9fdd271a620f8","bcd2426fd141157e04e3a8eff914b575403587f398cf0878f07c2f283e0d1afd","bac8ff394e831e4dd3f0961d6abb414b0e2b4ba16fdeb502d087ebf0340ed5f6","b8965484c1a08eeac238cf02a1498d72f3f3610059570a2c0fd207eb34245146",{"version":"fd4c5f5f845587008ca56c2b119fce2029092f515d41cf67cddcc69f773fbaf8","signature":"0bb557b6a266a313a13f3e30ade10a0fb64e26034a22f3eb57492be5b54abbb9"},{"version":"f61767413d019de6565fb8a382405ae71b71344a7dfbf272cfbf8a8f5364ceb9","signature":"dad8b29f1a0eded516aa3009e0483e7a63556a4ef7c52dd3dc81aa4bb651e911"},"a0667520a6521c12128fc28cbd5b2af58eef11c5b2a7441e0f0d47f50bf6c8e3","0dcf4c2bf1bb547e2ae5b8dce4656a56fbd15e3401ff5236ea0b93b6c60f9249","820c26194ad4089bc503b02bbedbd86a865e9c8a05c58ef88c8d19d9c019712a","790b453e1b76814112c3870d6e12f5db992d3194fdb3529445317dd75cb538be","d375de88ab19f6c105a65fc89eca1ae782362c5c395283b0c85ef39c7b835dfe","aeda2fffbc651fe1fa60b913d45f291f5544c4840206cb3b1badc16d9f01a0f0","7b3c1d688dcb8645b5a6c37bce5b047da92b4c298ed8709e03e987e0efb035b1","29c64e1acb5b73f08a60e71154c65c8a34f885f1f2cc55ffa06dfd244c058883",{"version":"7d176f155e5f6fc9756ddcc1a6d3eb2673030a066e2b7846dfc81b5271f3e269","affectsGlobalScope":true},"024fea9ee598cfe747f18340ad74e4ea428fc2a7988250ff9fcfce5673b7d422","aea18a267a0770c365cc390ad0a0b9725ed7a4540e9a96319b0f5094ee0ca124","a5a7c7d197c7b1918bddb0dd30bf8979a38828b24467ec45db093bf4621507ef",{"version":"afcd875785333f656f79bf1b3a445ceecc6aaf8e2b7cde59309a8778f41de613","affectsGlobalScope":true},{"version":"27b285e901600242883d62a5fff9f5d262c6fa128b6e6c6963f981f2630a957e","affectsGlobalScope":true},"8a9b7a437bea4cc34e5e103e01573ab3afc4564a22c838942b6dcca0f68020e8","8bb8931e629d9adfac6fe0c067de1a3c2f82b47262f83fa76eb0772ef13808e8","ae1351ed65b27a2b29a70a238024c957910e944aabbffce286099ed2b04f9baf",{"version":"3c19b3fb2f88bbd8f103fe2de0d6c0700dd9bf6678553f6db803162620b49e27","affectsGlobalScope":true},{"version":"189a87911d606781877614ad113ea2fe307de05dddc1891b49a4c196b67d77b6","signature":"8e5930493deb9bc15c58b16327dc020c7ff52a8a2c3a17703a653e2c83c02014"},"efc7d584a33fe3422847783d228f315c4cd1afe74bd7cf8e3f0e4c1125129fef","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"a14ed46fa3f5ffc7a8336b497cd07b45c2084213aaca933a22443fcb2eef0d07","affectsGlobalScope":true},"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c",{"version":"e2eb1ce13a9c0fa7ab62c63909d81973ef4b707292667c64f1e25e6e53fa7afa","affectsGlobalScope":true},"16d74fe4d8e183344d3beb15d48b123c5980ff32ff0cc8c3b96614ddcdf9b239","7b43160a49cf2c6082da0465876c4a0b164e160b81187caeb0a6ca7a281e85ba",{"version":"41fb2a1c108fbf46609ce5a451b7ec78eb9b5ada95fd5b94643e4b26397de0b3","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb",{"version":"a1d2988ad9d2aef7b9915a22b5e52c165c83a878f2851c35621409046bbe3c05","affectsGlobalScope":true},"bd3f5d05b6b5e4bfcea7739a45f3ffb4a7f4a3442ba7baf93e0200799285b8f1","4c775c2fccabf49483c03cd5e3673f87c1ffb6079d98e7b81089c3def79e29c6","8806ae97308ef26363bd7ec8071bca4d07fb575f905ee3d8a91aff226df6d618","af5bf1db6f1804fb0069039ae77a05d60133c77a2158d9635ea27b6bb2828a8f","b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e",{"version":"2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","affectsGlobalScope":true},{"version":"7ae9dc7dbb58cd843065639707815df85c044babaa0947116f97bdb824d07204","affectsGlobalScope":true},"fe1fd6afdfe77976d4c702f3746c05fb05a7e566845c890e0e970fe9376d6a90","313a0b063f5188037db113509de1b934a0e286f14e9479af24fada241435e707","f1ace2d2f98429e007d017c7a445efad2aaebf8233135abdb2c88b8c0fef91ab","87ef1a23caa071b07157c72077fa42b86d30568f9dc9e31eed24d5d14fc30ba8","396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","21773f5ac69ddf5a05636ba1f50b5239f4f2d27e4420db147fc2f76a5ae598ac",{"version":"ea455cc68871b049bcecd9f56d4cf27b852d6dafd5e3b54468ca87cc11604e4d","affectsGlobalScope":true},"440aa12c483d9dcd62b8cad2ddf4549ef3e54926c2aa6c78d520dcd320ba4980","45b1053e691c5af9bfe85060a3e1542835f8d84a7e6e2e77ca305251eda0cb3c","0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7",{"version":"ae5507fc333d637dec9f37c6b3f4d423105421ea2820a64818de55db85214d66","affectsGlobalScope":true},{"version":"0666f4c99b8688c7be5956df8fecf5d1779d3b22f8f2a88258ae7072c7b6026f","affectsGlobalScope":true},"8abd0566d2854c4bd1c5e48e05df5c74927187f1541e6770001d9637ac41542e","54e854615c4eafbdd3fd7688bd02a3aafd0ccf0e87c98f79d3e9109f047ce6b8","d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","8221b00f271cf7f535a8eeec03b0f80f0929c7a16116e2d2df089b41066de69b","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","7424817d5eb498771e6d1808d726ec38f75d2eaf3fa359edd5c0c540c52725c1","9a9634296cca836c3308923ba7aa094fa6ed76bb1e366d8ddcf5c65888ab1024",{"version":"bddce945d552a963c9733db106b17a25474eefcab7fc990157a2134ef55d4954","affectsGlobalScope":true},{"version":"7052b7b0c3829df3b4985bab2fd74531074b4835d5a7b263b75c82f0916ad62f","affectsGlobalScope":true},"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","4b55240c2a03b2c71e98a7fc528b16136faa762211c92e781a01c37821915ea6","7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df",{"version":"4d0405568cf6e0ff36a4861c4a77e641366feaefa751600b0a4d12a5e8f730a8","affectsGlobalScope":true},{"version":"f5b5dc128973498b75f52b1b8c2d5f8629869104899733ae485100c2309b4c12","affectsGlobalScope":true},"ebe5facd12fd7745cda5f4bc3319f91fb29dc1f96e57e9c6f8b260a7cc5b67ee","79bad8541d5779c85e82a9fb119c1fe06af77a71cc40f869d62ad379473d4b75","37dc027f781c75f0f546e329cfac7cf92a6b289f42458f47a9adc25e516b6839",{"version":"629d20681ca284d9e38c0a019f647108f5fe02f9c59ac164d56f5694fc3faf4d","affectsGlobalScope":true},"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447",{"version":"0ea93d01083b3d5863cc98cb589b5d0eac55d14417487f9e5e455dfa0b17c660","affectsGlobalScope":true}],"root":[46,[48,53],81,82,98,99,[313,317],[341,344],356,357,376],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":false,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitOnError":true,"outDir":"./","rootDir":"..","sourceMap":true,"strict":true,"target":5,"useDefineForClassFields":false},"fileIdsList":[[200,217,223,230,270],[229,230,231],[200,228,270],[200,215,229,270],[206,217,218,219,220,222,224,228,229,230,231,232,270],[200,216,217,220,228,229,270],[200],[200,219,220,228,270],[200,217,220,222,223,228,231,270,308],[200,220,224,227,229,270],[308],[200,217,220,224,225,229,270],[200,218,219,228,229,231,270],[200,219,220,224,226,270,308],[200,223,233,270,278,288,301,302,303,305],[201,220,233,270,278,288,289,298,299,301,302,303,305,306,307],[200,233,270,278,302,306],[229,233,270,289,299,300,302,303,304],[200,233,278,289,299,302,303,304,305],[200,216,233,270,278,289,300,301,302,303,305,306],[200,215,233,270,278,289,299,300,301,303,305],[200,215,229,233,278,302,305],[200,206,278,288,298],[270,271],[272],[206,271,272,273,274,275,276,277],[200,270,308],[278,281],[206,279,280,281,282,283,284,285,286,287],[235,278],[281],[200,270,278],[278],[206],[270],[206,290,291,292,293,294,295,296,297],[266],[267,268],[240],[200,278],[239],[257],[203,204,205],[201,202],[200,209],[206,207,208,209,210,211,212,213,214,234,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,257,258,259,260,261,262,269],[237],[235,236],[233],[256],[320],[329],[320,329],[320,329,337],[318,319],[328,358,359,360],[328,366,367,368,371,373],[328,374],[328,366,367,368],[328,369],[328],[328,359,361,363,364],[328,365],[359],[360,362],[358,363],[95],[83,85,86,87,88,89,90,91,92,93,94,95],[83,84,86,87,88,89,90,91,92,93,94,95],[84,85,86,87,88,89,90,91,92,93,94,95],[83,84,85,87,88,89,90,91,92,93,94,95],[83,84,85,86,88,89,90,91,92,93,94,95],[83,84,85,86,87,89,90,91,92,93,94,95],[83,84,85,86,87,88,90,91,92,93,94,95],[83,84,85,86,87,88,89,91,92,93,94,95],[83,84,85,86,87,88,89,90,92,93,94,95],[83,84,85,86,87,88,89,90,91,93,94,95],[83,84,85,86,87,88,89,90,91,92,94,95],[83,84,85,86,87,88,89,90,91,92,93,95],[83,84,85,86,87,88,89,90,91,92,93,94],[377],[413],[414,419,447],[415,426,427,434,444,455],[415,416,426,434],[417,456],[418,419,427,435],[419,444,452],[420,422,426,434],[413,421],[422,423],[426],[424,426],[413,426],[426,427,428,444,455],[426,427,428,441,444,447],[411,414,460],[422,426,429,434,444,455],[426,427,429,430,434,444,452,455],[429,431,444,452,455],[377,378,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462],[426,432],[433,455,460],[422,426,434,444],[435],[436],[413,437],[438,454,460],[439],[440],[426,441,442],[441,443,456,458],[414,426,444,445,446,447],[414,444,446],[444,445],[447],[448],[413,444],[426,450,451],[450,451],[419,434,444,452],[453],[434,454],[414,429,440,455],[419,456],[444,457],[433,458],[459],[414,419,426,428,437,444,455,458,460],[444,461],[321],[263,264,265],[263],[109,307],[102,103,109,110],[111,175,176],[102,109,111],[103,111],[102,104,105,106,109,111,114,115],[105,116,130,131],[102,109,114,115,116],[102,104,109,111,113,114,115],[102,103,114,115,116],[101,117,122,129,132,133,174,177,199],[102],[103,107,108],[103,107,108,109,110,112,123,124,125,126,127,128],[103,108,109],[103],[102,103,108,109,111,124],[109],[103,109,110],[107,109],[116,130],[102,104,105,106,109,114],[102,109,112,115],[105,113,114,115,118,119,120,121],[115],[102,104,109,111,113,115],[111,114],[111],[102,109,115],[103,109,114,125],[114,178],[111,115],[109,114],[114],[102,112],[102,109],[109,114,115],[134,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198],[114,115],[104,109],[102,109,113,114,115,127],[102,104,109,115],[102,104,109],[135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[127,135],[135],[102,109,111,114,134,135],[102,109,111,113,114,115,127,134],[320,324],[323],[330,331,332,333,334,335,336,337,338],[372],[320,324,326,327],[324],[323,324],[322,323],[54],[54,56],[388,392,455],[388,444,455],[383],[385,388,452,455],[434,452],[463],[383,463],[385,388,434,455],[380,381,384,387,414,426,444,455],[380,386],[384,388,414,447,455,463],[414,463],[404,414,463],[382,383,463],[388],[382,383,384,385,386,387,388,389,390,392,393,394,395,396,397,398,399,400,401,402,403,405,406,407,408,409,410],[388,395,396],[386,388,396,397],[387],[380,383,388],[388,392,396,397],[392],[386,388,391,455],[380,385,386,388,392,395],[414,444],[383,388,404,414,460,463],[235,308],[100,309,310,311],[47],[47,312,315],[47,81,98,313,316],[47,80,98,315],[47,328],[46,47,80,315,317,328,339,341,344,345,346,355],[47,328,339,341],[47,98,315,328,339,340],[47,328,339,370,375],[47,53,315,317,341,342],[47,80,81],[47,313],[47,96,97,98],[47,54,55,57,82,99,314],[47,48,49,50,51,52],[47,49,50],[47,48,49,51],[347,348,349,350,351,352,353,354],[58,59,60,61,62,63,64,65,66,67,68,71,72,73,74,75,76,77,78,79],[69,70],[70],[69],[81,98,313,316],[54,328,341],[328,341],[328,370,375],[53,315,317,341,342],[54,55],[48,49,50,51,52],[49,50],[48,49,51]],"referencedMap":[[231,1],[217,2],[229,3],[230,4],[233,5],[218,6],[219,7],[232,8],[224,9],[228,10],[222,11],[226,12],[220,13],[227,14],[306,15],[308,16],[301,17],[305,18],[300,19],[304,20],[302,21],[303,22],[299,23],[272,24],[276,25],[273,25],[277,25],[274,25],[278,26],[275,25],[271,27],[285,28],[286,28],[288,29],[279,30],[287,31],[281,32],[284,33],[280,34],[295,33],[297,7],[290,35],[292,35],[298,36],[291,35],[296,33],[294,33],[267,37],[269,38],[250,39],[248,40],[254,33],[240,41],[253,11],[258,42],[259,35],[206,43],[203,44],[207,7],[208,7],[209,7],[210,7],[214,11],[211,7],[212,45],[213,7],[270,46],[244,47],[245,47],[243,47],[237,48],[246,47],[234,49],[257,50],[261,50],[215,7],[329,51],[330,52],[333,53],[331,53],[335,53],[338,54],[336,53],[334,53],[332,52],[320,55],[361,56],[374,57],[375,58],[369,59],[370,60],[371,61],[365,62],[366,63],[368,64],[363,65],[364,66],[340,67],[96,67],[84,68],[85,69],[83,70],[86,71],[87,72],[88,73],[89,74],[90,75],[91,76],[92,77],[93,78],[94,79],[95,80],[377,81],[378,81],[413,82],[414,83],[415,84],[416,85],[417,86],[418,87],[419,88],[420,89],[421,90],[422,91],[423,91],[425,92],[424,93],[426,94],[427,95],[428,96],[412,97],[429,98],[430,99],[431,100],[463,101],[432,102],[433,103],[434,104],[435,105],[436,106],[437,107],[438,108],[439,109],[440,110],[441,111],[442,111],[443,112],[444,113],[446,114],[445,115],[447,116],[448,117],[449,118],[450,119],[451,120],[452,121],[453,122],[454,123],[455,124],[456,125],[457,126],[458,127],[459,128],[460,129],[461,130],[322,131],[266,132],[264,133],[265,133],[307,134],[111,135],[177,136],[176,137],[175,138],[116,139],[132,140],[130,141],[131,142],[117,143],[200,144],[105,145],[109,146],[129,147],[124,148],[110,149],[125,150],[128,151],[126,151],[123,152],[127,153],[133,154],[115,155],[113,156],[122,157],[119,158],[118,158],[114,159],[120,160],[196,161],[190,162],[183,163],[182,164],[191,165],[192,151],[184,166],[197,167],[178,168],[179,169],[180,170],[199,171],[181,164],[185,167],[186,172],[193,173],[194,149],[195,172],[198,151],[187,170],[134,174],[188,175],[189,176],[174,177],[172,178],[173,178],[138,178],[139,178],[140,178],[141,178],[142,178],[143,178],[144,178],[145,178],[164,178],[146,178],[147,178],[148,178],[149,178],[150,178],[151,178],[171,178],[152,178],[153,178],[154,178],[169,178],[155,178],[170,178],[156,178],[167,178],[168,178],[157,178],[158,178],[159,178],[165,178],[166,178],[160,178],[161,178],[162,178],[163,178],[137,179],[136,180],[135,181],[326,182],[325,183],[339,184],[373,185],[328,186],[323,187],[372,188],[324,189],[345,190],[55,190],[57,191],[56,190],[395,192],[402,193],[394,192],[409,194],[386,195],[385,196],[408,197],[403,198],[406,199],[388,200],[387,201],[383,202],[382,203],[405,204],[384,205],[389,206],[393,206],[411,207],[410,206],[397,208],[398,209],[400,210],[396,211],[399,212],[404,197],[391,213],[392,214],[401,215],[381,216],[407,217],[311,11],[309,218],[312,219],[81,220],[313,221],[98,220],[317,222],[316,223],[344,224],[356,225],[357,226],[341,227],[376,228],[343,229],[342,220],[82,230],[314,231],[99,232],[315,233],[48,220],[53,234],[51,235],[50,236],[52,220],[49,220],[353,61],[352,61],[354,61],[347,61],[355,237],[348,61],[349,61],[350,61],[80,238],[71,239],[69,240],[70,241]],"exportedModulesMap":[[231,1],[217,2],[229,3],[230,4],[233,5],[218,6],[219,7],[232,8],[224,9],[228,10],[222,11],[226,12],[220,13],[227,14],[306,15],[308,16],[301,17],[305,18],[300,19],[304,20],[302,21],[303,22],[299,23],[272,24],[276,25],[273,25],[277,25],[274,25],[278,26],[275,25],[271,27],[285,28],[286,28],[288,29],[279,30],[287,31],[281,32],[284,33],[280,34],[295,33],[297,7],[290,35],[292,35],[298,36],[291,35],[296,33],[294,33],[267,37],[269,38],[250,39],[248,40],[254,33],[240,41],[253,11],[258,42],[259,35],[206,43],[203,44],[207,7],[208,7],[209,7],[210,7],[214,11],[211,7],[212,45],[213,7],[270,46],[244,47],[245,47],[243,47],[237,48],[246,47],[234,49],[257,50],[261,50],[215,7],[329,51],[330,52],[333,53],[331,53],[335,53],[338,54],[336,53],[334,53],[332,52],[320,55],[361,56],[374,57],[375,58],[369,59],[370,60],[371,61],[365,62],[366,63],[368,64],[363,65],[364,66],[340,67],[96,67],[84,68],[85,69],[83,70],[86,71],[87,72],[88,73],[89,74],[90,75],[91,76],[92,77],[93,78],[94,79],[95,80],[377,81],[378,81],[413,82],[414,83],[415,84],[416,85],[417,86],[418,87],[419,88],[420,89],[421,90],[422,91],[423,91],[425,92],[424,93],[426,94],[427,95],[428,96],[412,97],[429,98],[430,99],[431,100],[463,101],[432,102],[433,103],[434,104],[435,105],[436,106],[437,107],[438,108],[439,109],[440,110],[441,111],[442,111],[443,112],[444,113],[446,114],[445,115],[447,116],[448,117],[449,118],[450,119],[451,120],[452,121],[453,122],[454,123],[455,124],[456,125],[457,126],[458,127],[459,128],[460,129],[461,130],[322,131],[266,132],[264,133],[265,133],[307,134],[111,135],[177,136],[176,137],[175,138],[116,139],[132,140],[130,141],[131,142],[117,143],[200,144],[105,145],[109,146],[129,147],[124,148],[110,149],[125,150],[128,151],[126,151],[123,152],[127,153],[133,154],[115,155],[113,156],[122,157],[119,158],[118,158],[114,159],[120,160],[196,161],[190,162],[183,163],[182,164],[191,165],[192,151],[184,166],[197,167],[178,168],[179,169],[180,170],[199,171],[181,164],[185,167],[186,172],[193,173],[194,149],[195,172],[198,151],[187,170],[134,174],[188,175],[189,176],[174,177],[172,178],[173,178],[138,178],[139,178],[140,178],[141,178],[142,178],[143,178],[144,178],[145,178],[164,178],[146,178],[147,178],[148,178],[149,178],[150,178],[151,178],[171,178],[152,178],[153,178],[154,178],[169,178],[155,178],[170,178],[156,178],[167,178],[168,178],[157,178],[158,178],[159,178],[165,178],[166,178],[160,178],[161,178],[162,178],[163,178],[137,179],[136,180],[135,181],[326,182],[325,183],[339,184],[373,185],[328,186],[323,187],[372,188],[324,189],[345,190],[55,190],[57,191],[56,190],[395,192],[402,193],[394,192],[409,194],[386,195],[385,196],[408,197],[403,198],[406,199],[388,200],[387,201],[383,202],[382,203],[405,204],[384,205],[389,206],[393,206],[411,207],[410,206],[397,208],[398,209],[400,210],[396,211],[399,212],[404,197],[391,213],[392,214],[401,215],[381,216],[407,217],[311,11],[309,218],[312,219],[317,242],[344,61],[356,243],[357,244],[341,61],[376,245],[343,246],[315,247],[53,248],[51,249],[50,250],[353,61],[352,61],[354,61],[347,61],[355,237],[348,61],[349,61],[350,61],[80,238],[71,239],[69,240],[70,241]],"semanticDiagnosticsPerFile":[231,217,229,230,233,218,221,219,232,224,225,228,222,226,220,227,306,308,301,289,305,300,304,302,303,299,202,272,276,273,277,274,278,275,271,282,285,283,286,288,279,287,281,284,280,295,297,290,292,298,293,291,296,294,216,267,223,269,268,247,255,249,241,250,248,254,251,242,240,253,239,258,252,259,205,206,203,204,207,208,209,210,214,211,212,213,270,244,245,243,237,246,234,238,257,261,260,262,256,215,318,329,330,333,331,335,338,337,336,334,332,319,320,358,360,367,361,359,374,375,369,370,371,365,366,368,363,364,362,340,96,84,85,83,86,87,88,89,90,91,92,93,94,95,464,377,378,413,414,415,416,417,418,419,420,421,422,423,425,424,426,427,428,412,462,429,430,431,463,432,433,434,435,436,437,438,439,440,441,442,443,444,446,445,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,322,321,263,266,264,265,379,307,111,177,176,175,116,132,130,131,117,200,102,104,105,106,109,112,129,107,124,110,125,128,126,123,103,108,127,133,121,115,113,122,119,118,114,120,196,190,183,182,191,192,184,197,178,179,180,199,181,185,186,193,194,195,198,187,134,188,189,174,172,173,138,139,140,141,142,143,144,145,164,146,147,148,149,150,151,171,152,153,154,169,155,170,156,167,168,157,158,159,165,166,160,161,162,163,137,136,135,101,326,325,339,373,328,323,372,327,324,345,55,97,346,57,56,54,236,201,47,44,45,8,10,9,2,11,12,13,14,15,16,17,18,3,4,19,23,20,21,22,24,25,26,5,27,28,29,30,6,34,31,32,33,35,7,36,41,42,37,38,39,40,1,43,395,402,394,409,386,385,408,403,406,388,387,383,382,405,384,389,390,393,380,411,410,397,398,400,396,399,404,391,392,401,381,407,235,311,100,309,312,310,46,81,313,98,317,316,344,356,357,341,376,343,342,82,314,99,315,48,53,51,50,52,49,353,351,352,354,347,355,348,349,350,74,59,79,72,67,61,78,68,77,60,73,64,80,75,62,65,66,58,76,63,71,69,70]},"version":"5.3.3"}
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@operato/shell",
3
3
  "description": "WebApplication architecturing shell following open-wc recommendations",
4
4
  "author": "heartyoh",
5
- "version": "2.0.0-alpha.0",
5
+ "version": "2.0.0-alpha.21",
6
6
  "main": "dist/src/index.js",
7
7
  "module": "dist/src/index.js",
8
8
  "exports": {
@@ -61,7 +61,7 @@
61
61
  "@material/mwc-icon-button": "^0.27.0",
62
62
  "@operato/graphql": "^2.0.0-alpha.0",
63
63
  "@operato/styles": "^2.0.0-alpha.0",
64
- "@operato/utils": "^2.0.0-alpha.0",
64
+ "@operato/utils": "^2.0.0-alpha.8",
65
65
  "lit": "^2.5.0",
66
66
  "lodash-es": "^4.17.21",
67
67
  "pwa-helpers": "^0.9.1",
@@ -100,5 +100,5 @@
100
100
  "prettier --write"
101
101
  ]
102
102
  },
103
- "gitHead": "f995e977847947a1ac4043ff7c627a5cf2ada67b"
103
+ "gitHead": "31e7c62043dbe6a234485195c681d75cb44c20e1"
104
104
  }
@@ -4,12 +4,17 @@ import { HOMEPAGE, UPDATE_PAGE } from '../actions/const'
4
4
  import { store } from '../store'
5
5
 
6
6
  /**
7
+ * Navigate to a page using one of two methods:
8
+ * 1. Using a page link: <a href='page'>goto page</a> (equivalent to route(page))
9
+ * 2. Using the navigate('page') function.
10
+ *
7
11
  * 페이지를 이동하는 방법으로는 다음 두가지가 있다.
8
12
  * 1. page link를 사용하는 방법 <a href='page'>goto page</a>
9
13
  * 이 방법은 route(page)와 동일하다.
10
14
  * 2. navigate('page')를 사용하는 방법
11
15
  *
12
- * @param string page
16
+ * @param location - The path of the page to navigate to.
17
+ * @param replace - Optional. If true, replaces the current page in the browser's history.
13
18
  */
14
19
  export const navigate = (location: string, replace?: boolean) => {
15
20
  if (replace) history.replaceState(history.state, '', location)
@@ -18,6 +23,12 @@ export const navigate = (location: string, replace?: boolean) => {
18
23
  window.dispatchEvent(new Event('popstate'))
19
24
  }
20
25
 
26
+ /**
27
+ * Navigate to a page with optional query parameters, and dispatch a Redux action to load the page.
28
+ *
29
+ * @param pathInfo - Object containing pathname, search, and optional params.
30
+ * @param dispatch - Redux dispatch function.
31
+ */
21
32
  export const navigateWithSilence =
22
33
  ({ pathname: path, search, params }: { pathname: string; search?: string; params?: { [key: string]: any } }) =>
23
34
  (dispatch: any) => {
@@ -42,6 +53,12 @@ export const navigateWithSilence =
42
53
  dispatch(loadPage(page, id, params))
43
54
  }
44
55
 
56
+ /**
57
+ * Preload a page by performing any necessary preprocessing before loading.
58
+ *
59
+ * @param page - The page to preload.
60
+ * @returns - The new page path or routing result after preprocessing.
61
+ */
45
62
  const _preLoadPage = (page: any) => {
46
63
  /*
47
64
  * _preLoadPage 에서는 page를 load하기 전처리를 수행한다.
@@ -62,6 +79,13 @@ const _preLoadPage = (page: any) => {
62
79
  }
63
80
  }
64
81
 
82
+ /**
83
+ * Load a page by dispatching a Redux action, and handle page navigation if necessary.
84
+ *
85
+ * @param page - The page to load.
86
+ * @param id - The associated resource ID.
87
+ * @param params - Additional parameters to pass to the page.
88
+ */
65
89
  export const loadPage = (page: string, id: string, params: { [key: string]: any }) => (dispatch: any) => {
66
90
  var newPage = _preLoadPage(page)
67
91
 
@@ -83,6 +107,11 @@ export const loadPage = (page: string, id: string, params: { [key: string]: any
83
107
  })
84
108
  }
85
109
 
110
+ /**
111
+ * Route to a given URL by creating a link element and triggering a click event.
112
+ *
113
+ * @param url - The URL to route to.
114
+ */
86
115
  export const route = (url: string) => {
87
116
  const link = document.createElement('a')
88
117
 
@@ -63,16 +63,24 @@ export const AppStyle = css`
63
63
  z-index: 1000;
64
64
  }
65
65
 
66
- /* Wide layout */
67
- @media (min-width: 460px) {
68
- }
69
-
70
66
  @media print {
71
67
  :host {
72
68
  width: 100%;
73
69
  height: 100%;
74
70
  min-height: 100vh;
75
71
  min-height: 100dvh;
72
+
73
+ max-width: unset;
74
+ width: unset;
75
+ height: unset;
76
+ height: unset;
77
+ }
78
+
79
+ main {
80
+ /* important for printing!!! */
81
+ display: block;
82
+ flex: unset;
83
+ overflow: visible;
76
84
  }
77
85
 
78
86
  ox-page-header-bar {
@@ -22,12 +22,26 @@ function diff(after: any, before: any): any {
22
22
  return changed && changes
23
23
  }
24
24
 
25
+ /**
26
+ * PageView is a base class for creating page elements with lifecycle management.
27
+ * Subclasses can extend PageView to define custom behavior and handle page lifecycle events.
28
+ */
25
29
  export class PageView extends LitElement {
30
+ /**
31
+ * Determines whether the page can be deactivated. Subclasses can override this method
32
+ * to implement custom deactivation logic.
33
+ * @returns A Promise that resolves to true if the page can be deactivated, or false otherwise.
34
+ */
26
35
  async canDeactivate(): Promise<boolean> {
27
36
  return Promise.resolve(true)
28
37
  }
29
38
 
30
- // Only render this page if it's actually visible.
39
+ /**
40
+ * Determines whether the page should update. This method is called whenever there are
41
+ * changes to the page's properties.
42
+ * @param changes - A map of changed property values.
43
+ * @returns True if the page should update, or false otherwise.
44
+ */
31
45
  shouldUpdate(changes: PropertyValues<this>) {
32
46
  var active = String(this.active) == 'true'
33
47
  var { active: oldActive = false } = this._oldLifecycleInfo$ || {}
@@ -50,13 +64,31 @@ export class PageView extends LitElement {
50
64
  return active
51
65
  }
52
66
 
67
+ /**
68
+ * Indicates whether the page is currently active.
69
+ */
53
70
  @property({ type: Boolean }) active: boolean = false
71
+
72
+ /**
73
+ * Stores information about the page's lifecycle.
74
+ */
54
75
  @property({ type: Object }) lifecycle: any
76
+
77
+ /**
78
+ * The context path for the page.
79
+ */
55
80
  @property({ type: String, attribute: 'context-path' }) contextPath?: string
56
81
 
57
82
  _oldLifecycleInfo$: any
58
83
 
59
84
  /* lifecycle */
85
+
86
+ /**
87
+ * Handles page updates and lifecycle events. Subclasses can override this method
88
+ * to implement custom logic for initializing, updating, and disposing of the page.
89
+ * @param changes - A map of changed properties.
90
+ * @param force - If true, forces an update of the page.
91
+ */
60
92
  async pageUpdate(changes: any = {}, force: boolean = false) {
61
93
  var before = this._oldLifecycleInfo$ || {}
62
94
 
@@ -113,6 +145,9 @@ export class PageView extends LitElement {
113
145
  }
114
146
  }
115
147
 
148
+ /**
149
+ * Resets the page. Subclasses can override this method to perform custom reset logic.
150
+ */
116
151
  async pageReset() {
117
152
  var { initialized } = this._oldLifecycleInfo$ || {}
118
153
 
@@ -122,14 +157,35 @@ export class PageView extends LitElement {
122
157
  }
123
158
  }
124
159
 
160
+ /**
161
+ * Disposes of the page. Subclasses can override this method to perform custom disposal logic.
162
+ */
125
163
  async pageDispose() {
126
164
  await this.pageUpdate({
127
165
  initialized: false
128
166
  })
129
167
  }
130
168
 
169
+ /**
170
+ * Initializes the page. Subclasses can override this method to perform custom initialization logic.
171
+ * @param pageInfo - Information about the page's state.
172
+ */
131
173
  pageInitialized(pageInfo: any) {}
174
+
175
+ /**
176
+ * Handles page updates and changes in properties.
177
+ * Subclasses can override this method to implement custom update logic.
178
+ * @param changes - A map of changed properties.
179
+ * @param after - The current state of the page.
180
+ * @param before - The previous state of the page.
181
+ */
132
182
  pageUpdated(changes: any, after: any, before: any) {}
183
+
184
+ /**
185
+ * Handles the disposal of the page. Subclasses can override this method
186
+ * to implement custom disposal logic.
187
+ * @param pageInfo - Information about the page's state.
188
+ */
133
189
  pageDisposed(pageInfo: any) {}
134
190
 
135
191
  /* context */
@@ -140,6 +196,12 @@ export class PageView extends LitElement {
140
196
  })
141
197
  }
142
198
 
199
+ /**
200
+ * Updates the context of the page. Subclasses can override the `context` getter
201
+ * to provide specific context information for the page. The context will be updated
202
+ * using the `updateContext` method inherited from PageView.
203
+ * @param override - An optional object with context properties to override.
204
+ */
143
205
  get context() {
144
206
  return {}
145
207
  }