diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml
new file mode 100644
index 0000000..37979c6
--- /dev/null
+++ b/.github/workflows/check.yml
@@ -0,0 +1,31 @@
+name: check
+
+on:
+ pull_request:
+ push:
+ branches:
+ - main
+
+jobs:
+ setup:
+ runs-on: ubuntu-18.04
+ steps:
+ - uses: actions/checkout@v2
+
+ - name: Setup Node
+ uses: actions/setup-node@v2
+ with:
+ node-version: "16.x"
+
+ - name: Cache dependencies
+ uses: actions/cache@v2
+ with:
+ path: ~/.npm
+ key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
+ restore-keys: |
+ ${{ runner.os }}-node-
+
+ - run: npm install
+ - run: npm run tsc
+ - run: npm run test
+ - run: npm run build
diff --git a/.github/workflows/demo.yml b/.github/workflows/demo.yml
new file mode 100644
index 0000000..3c7006d
--- /dev/null
+++ b/.github/workflows/demo.yml
@@ -0,0 +1,35 @@
+name: demo
+
+on:
+ push:
+ branches:
+ - main
+
+jobs:
+ deploy:
+ runs-on: ubuntu-18.04
+ steps:
+ - uses: actions/checkout@v2
+
+ - name: Setup Node
+ uses: actions/setup-node@v2
+ with:
+ node-version: "16.x"
+
+ - name: Cache dependencies
+ uses: actions/cache@v2
+ with:
+ path: ~/.npm
+ key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
+ restore-keys: |
+ ${{ runner.os }}-node-
+
+ - run: npm install
+ - run: npm run storybook:build
+
+ - name: Deploy
+ uses: peaceiris/actions-gh-pages@v3
+ with:
+ github_token: ${{ secrets.GITHUB_TOKEN }}
+ publish_dir: ./storybook-static
+ publish_branch: demo
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..3063f07
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+lib
+node_modules
diff --git a/.storybook/main.js b/.storybook/main.js
new file mode 100644
index 0000000..e7e8b17
--- /dev/null
+++ b/.storybook/main.js
@@ -0,0 +1,7 @@
+module.exports = {
+ stories: [
+ "../stories/**/*.stories.mdx",
+ "../stories/**/*.stories.@(js|jsx|ts|tsx)",
+ ],
+ addons: ["@storybook/addon-links", "@storybook/addon-essentials"],
+};
diff --git a/.storybook/preview.js b/.storybook/preview.js
new file mode 100644
index 0000000..57887cd
--- /dev/null
+++ b/.storybook/preview.js
@@ -0,0 +1,3 @@
+export const parameters = {
+ actions: { argTypesRegex: "^on[A-Z].*" },
+};
diff --git a/README.md b/README.md
index bfba82d..0716581 100644
--- a/README.md
+++ b/README.md
@@ -1 +1,68 @@
-# remark-docx
\ No newline at end of file
+# remark-docx
+
+![npm](https://img.shields.io/npm/v/remark-docx) ![check](https://github.com/inokawa/remark-docx/workflows/check/badge.svg) ![demo](https://github.com/inokawa/remark-docx/workflows/demo/badge.svg)
+
+[remark](https://github.com/remarkjs/remark) plugin to transform markdown to docx.
+
+### 🚧 WIP 🚧
+
+The goal is to support all nodes in [mdast](https://github.com/syntax-tree/mdast) syntax tree, but currently transformation and stylings may not be well.
+
+If you have some feature requests or improvements, please create a [issue](https://github.com/inokawa/remark-docx/issues) or [PR](https://github.com/inokawa/remark-docx/pulls).
+
+## Demo
+
+https://inokawa.github.io/remark-docx/
+
+## Install
+
+```sh
+npm install remark-docx
+```
+
+## Usage
+
+### Browser
+
+```javascript
+import { unified } from "unified";
+import markdown from "remark-parse";
+import docx, { Packer } from "remark-docx";
+import { saveAs } from "file-saver";
+
+const processor = unified().use(markdown).use(docx);
+
+const text = "# hello world";
+
+(async () => {
+ const doc = await processor.process(text);
+ const blob = await Packer.toBlob(doc.result);
+ saveAs(blob, "example.docx");
+})();
+```
+
+### Node.js
+
+```javascript
+import { unified } from "unified";
+import markdown from "remark-parse";
+import docx, { Packer } from "remark-docx";
+import * as fs from "fs";
+
+const processor = unified().use(markdown).use(docx);
+
+const text = "# hello world";
+
+(async () => {
+ const doc = await processor.process(text);
+ const buffer = await Packer.toBuffer(doc.result);
+ fs.writeFileSync("example.docx", buffer);
+})();
+```
+
+## Options
+
+| Key | Default | Type | Description |
+| ------------- | --------- | ------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
+| docProperties | undefined | object | Override properties of document. |
+| imageResolver | undefined | ImageResolver | **You must set** if your markdown includes images. See example for [Node.js](https://github.com/inokawa/remark-docx/blob/main/src/index.spec.ts) and [browser](https://github.com/inokawa/remark-docx/blob/main/stories/playground.stories.tsx). |
diff --git a/babel.config.js b/babel.config.js
new file mode 100644
index 0000000..dd242dc
--- /dev/null
+++ b/babel.config.js
@@ -0,0 +1,6 @@
+module.exports = {
+ presets: [
+ ["@babel/preset-env", { targets: { node: "current" } }],
+ "@babel/preset-typescript",
+ ],
+};
diff --git a/fixtures/article.md b/fixtures/article.md
new file mode 100644
index 0000000..1c07cf7
--- /dev/null
+++ b/fixtures/article.md
@@ -0,0 +1,95 @@
+---
+title: "This is frontmatter"
+date: 2020-04-30 12:34
+categories: [JavaScript, React]
+---
+
+# heading 1
+
+## heading 2
+
+### heading 3
+
+#### heading 4
+
+##### heading 5
+
+###### heading 6
+
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+
+aaaaaaaa**bold**_emphasis_~~delete~~`inline code`
+
+- list
+
+ - list
+ - list
+ - list
+ - list
+
+- [ ] not checked
+- [x] checked
+
+1. ordered list
+1. ordered list
+1. ordered list
+ 1. aaa
+ 1. aaa
+ 1. eeeee
+ 1. eeeee
+ 1. aaa
+1. ordered list
+
+This is [link to GitHub.com](https://github.com/).
+
+This is ![image](https://github.githubassets.com/images/modules/logos_page/Octocat.png).
+
+> quote
+> quote
+> quote
+> quote
+
+> quote
+>
+> > quoted quote
+
+| Left align | Right align | Center align |
+| :--------- | ----------: | :----------: |
+| This | This | This |
+| column | column | column |
+| will | will | will |
+| be | be | be |
+| left | right | center |
+| aligned | aligned | aligned |
+
+
+This is HTML
+
+
+---
+
+---
+
+```javascript
+function $initHighlight(block, cls) {
+ try {
+ if (cls.search(/\bno\-highlight\b/) != -1)
+ return process(block, true, 0x0F) +
+ ` class="${cls}"`;
+ } catch (e) {
+ /* handle exception */
+ }
+ for (var i = 0 / 2; i < classes.length; i++) {
+ if (checkCondition(classes[i]) === undefined)
+ console.log('undefined');
+ }
+
+ return (
+
+ {block}
+
+ )
+}
+
+export $initHighlight;
+```
diff --git a/fixtures/node-break.md b/fixtures/node-break.md
new file mode 100644
index 0000000..706de86
--- /dev/null
+++ b/fixtures/node-break.md
@@ -0,0 +1,3 @@
+---
+
+***
diff --git a/fixtures/node-code.md b/fixtures/node-code.md
new file mode 100644
index 0000000..7f0711a
--- /dev/null
+++ b/fixtures/node-code.md
@@ -0,0 +1,62 @@
+```css metadata="12345"
+@font-face {
+ font-family: Chunkfive;
+ src: url("Chunkfive.otf");
+}
+
+body,
+.usertext {
+ color: #f0f0f0;
+ background: #600;
+ font-family: Chunkfive, sans;
+ --heading-1: 30px/32px Helvetica, sans-serif;
+}
+
+@import url(print.css);
+@media print {
+ a[href^="http"]::after {
+ content: attr(href);
+ }
+}
+```
+
+```javascript
+function $initHighlight(block, cls) {
+ try {
+ if (cls.search(/\bno\-highlight\b/) != -1)
+ return process(block, true, 0x0F) +
+ ` class="${cls}"`;
+ } catch (e) {
+ /* handle exception */
+ }
+ for (var i = 0 / 2; i < classes.length; i++) {
+ if (checkCondition(classes[i]) === undefined)
+ console.log('undefined');
+ }
+
+ return (
+
+ {block}
+
+ )
+}
+
+export $initHighlight;
+```
+
+```typescript
+class MyClass {
+ public static myValue: string;
+ constructor(init: string) {
+ this.myValue = init;
+ }
+}
+import fs = require("fs");
+module MyModule {
+ export interface MyInterface extends Other {
+ myProperty: any;
+ }
+}
+declare magicNumber number;
+myArray.forEach(() => { }); // fat arrow syntax
+```
diff --git a/fixtures/node-footnotes.md b/fixtures/node-footnotes.md
new file mode 100644
index 0000000..8e5f10f
--- /dev/null
+++ b/fixtures/node-footnotes.md
@@ -0,0 +1,3 @@
+This is footnote[^1]. And this is also ^[inline footnote].
+
+[^1]: Here is the footnote.
diff --git a/fixtures/node-frontmatter-toml.md b/fixtures/node-frontmatter-toml.md
new file mode 100644
index 0000000..f6c780f
--- /dev/null
+++ b/fixtures/node-frontmatter-toml.md
@@ -0,0 +1,8 @@
++++
+title = "This is toml"
+date = "2020-04-30 22:34"
++++
+
+# Other markdown
+
+blablabla
diff --git a/fixtures/node-frontmatter-yaml.md b/fixtures/node-frontmatter-yaml.md
new file mode 100644
index 0000000..7158ef5
--- /dev/null
+++ b/fixtures/node-frontmatter-yaml.md
@@ -0,0 +1,9 @@
+---
+title: "This is yaml"
+date: 2020-04-30 22:34
+categories: [JavaScript, React]
+---
+
+# Other markdown
+
+blablabla
diff --git a/fixtures/node-heading.md b/fixtures/node-heading.md
new file mode 100644
index 0000000..dde255a
--- /dev/null
+++ b/fixtures/node-heading.md
@@ -0,0 +1,23 @@
+# Alpha
+
+aaaa
+
+## Bravo
+
+bbbb
+
+### Charlie
+
+cccc
+
+## Delta
+
+dddd
+
+### E
+
+#### F
+
+##### G
+
+###### H
diff --git a/fixtures/node-math.md b/fixtures/node-math.md
new file mode 100644
index 0000000..3a0ae4a
--- /dev/null
+++ b/fixtures/node-math.md
@@ -0,0 +1,6 @@
+Lift($L$) can be determined by Lift Coefficient ($C_L$) like the following
+equation.
+
+$$
+L = \frac{1}{2} \rho v^2 S C_L
+$$
diff --git a/fixtures/node-ml.md b/fixtures/node-ml.md
new file mode 100644
index 0000000..2d4329b
--- /dev/null
+++ b/fixtures/node-ml.md
@@ -0,0 +1,9 @@
+
+This is html
+
+
+
+
+
+
+aaaaaa
diff --git a/fixtures/node-paragraph.md b/fixtures/node-paragraph.md
new file mode 100644
index 0000000..f18dc69
--- /dev/null
+++ b/fixtures/node-paragraph.md
@@ -0,0 +1,4 @@
+Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+
+Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
diff --git a/fixtures/node-phrasing-1.md b/fixtures/node-phrasing-1.md
new file mode 100644
index 0000000..f7e6d88
--- /dev/null
+++ b/fixtures/node-phrasing-1.md
@@ -0,0 +1,14 @@
+aaa **aaaaaaa** aaaaaa _aaaaaaaa_ aaaaaaaa ~~aaaaaaa~~ aaaa `aaaaaaaa` aaa
+aaa**_aa_~~aa~~**aaa _aa **a ~~aa~~ aa `aaa` aaaaa** aaaa_ aa`a*aa*aa_aa_a~~aa~~a`
+
+# **heading**
+
+- **list**
+
+> **quote**
+
+**[link to GitHub.com](https://github.com/)**
+
+[**link to GitHub.com**](https://github.com/)
+
+**![image](https://github.githubassets.com/images/modules/logos_page/Octocat.png)**
diff --git a/fixtures/node-phrasing-2.md b/fixtures/node-phrasing-2.md
new file mode 100644
index 0000000..652339c
--- /dev/null
+++ b/fixtures/node-phrasing-2.md
@@ -0,0 +1,10 @@
+[**link to GitHub.com**](https://github.com/ "link-title")
+
+![image](https://github.githubassets.com/images/modules/logos_page/Octocat.png "image-title")
+
+[alpha][link-ref]
+
+![blavo][image-ref]
+
+[link-ref]: example.com
+[image-ref]: example.gif
diff --git a/jest.config.js b/jest.config.js
new file mode 100644
index 0000000..2c7573e
--- /dev/null
+++ b/jest.config.js
@@ -0,0 +1,4 @@
+module.exports = {
+ roots: ["/src"],
+ transformIgnorePatterns: ["node_modules/(?!remark-parse)/"],
+};
diff --git a/package-lock.json b/package-lock.json
new file mode 100644
index 0000000..e12ebce
--- /dev/null
+++ b/package-lock.json
@@ -0,0 +1,43889 @@
+{
+ "name": "remark-docx",
+ "version": "0.0.0",
+ "lockfileVersion": 2,
+ "requires": true,
+ "packages": {
+ "": {
+ "name": "remark-docx",
+ "version": "0.0.0",
+ "license": "MIT",
+ "dependencies": {
+ "docx": "^7.3.0",
+ "unist-util-visit": "^4.1.0"
+ },
+ "devDependencies": {
+ "@babel/core": "7.15.5",
+ "@babel/preset-env": "7.15.6",
+ "@babel/preset-typescript": "7.15.0",
+ "@rollup/plugin-typescript": "8.2.5",
+ "@storybook/addon-essentials": "6.4.9",
+ "@storybook/addon-links": "6.4.9",
+ "@storybook/react": "6.4.9",
+ "@types/jest": "^27.4.0",
+ "@types/mdast": "^3.0.10",
+ "@types/unist": "2.0.6",
+ "babel-jest": "27.4.6",
+ "file-saver": "^2.0.5",
+ "jest": "27.4.7",
+ "react": "17.0.2",
+ "react-dom": "17.0.2",
+ "react-is": "17.0.2",
+ "remark-footnotes": "4.0.1",
+ "remark-frontmatter": "4.0.1",
+ "remark-gfm": "3.0.1",
+ "remark-math": "5.1.1",
+ "remark-parse": "10.0.1",
+ "rimraf": "3.0.2",
+ "rollup": "2.63.0",
+ "tslib": "2.3.1",
+ "typescript": "4.5.4",
+ "unified": "10.1.1"
+ }
+ },
+ "node_modules/@babel/code-frame": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz",
+ "integrity": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==",
+ "dev": true,
+ "dependencies": {
+ "@babel/highlight": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/compat-data": {
+ "version": "7.16.4",
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.16.4.tgz",
+ "integrity": "sha512-1o/jo7D+kC9ZjHX5v+EHrdjl3PhxMrLSOTGsOdHJ+KL8HCaEK6ehrVL2RS6oHDZp+L7xLirLrPmQtEng769J/Q==",
+ "dev": true,
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/core": {
+ "version": "7.15.5",
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.15.5.tgz",
+ "integrity": "sha512-pYgXxiwAgQpgM1bNkZsDEq85f0ggXMA5L7c+o3tskGMh2BunCI9QUwB9Z4jpvXUOuMdyGKiGKQiRe11VS6Jzvg==",
+ "dev": true,
+ "dependencies": {
+ "@babel/code-frame": "^7.14.5",
+ "@babel/generator": "^7.15.4",
+ "@babel/helper-compilation-targets": "^7.15.4",
+ "@babel/helper-module-transforms": "^7.15.4",
+ "@babel/helpers": "^7.15.4",
+ "@babel/parser": "^7.15.5",
+ "@babel/template": "^7.15.4",
+ "@babel/traverse": "^7.15.4",
+ "@babel/types": "^7.15.4",
+ "convert-source-map": "^1.7.0",
+ "debug": "^4.1.0",
+ "gensync": "^1.0.0-beta.2",
+ "json5": "^2.1.2",
+ "semver": "^6.3.0",
+ "source-map": "^0.5.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/babel"
+ }
+ },
+ "node_modules/@babel/generator": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.16.7.tgz",
+ "integrity": "sha512-/ST3Sg8MLGY5HVYmrjOgL60ENux/HfO/CsUh7y4MalThufhE/Ff/6EibFDHi4jiDCaWfJKoqbE6oTh21c5hrRg==",
+ "dev": true,
+ "dependencies": {
+ "@babel/types": "^7.16.7",
+ "jsesc": "^2.5.1",
+ "source-map": "^0.5.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-annotate-as-pure": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz",
+ "integrity": "sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==",
+ "dev": true,
+ "dependencies": {
+ "@babel/types": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.16.7.tgz",
+ "integrity": "sha512-C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-explode-assignable-expression": "^7.16.7",
+ "@babel/types": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-compilation-targets": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.7.tgz",
+ "integrity": "sha512-mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA==",
+ "dev": true,
+ "dependencies": {
+ "@babel/compat-data": "^7.16.4",
+ "@babel/helper-validator-option": "^7.16.7",
+ "browserslist": "^4.17.5",
+ "semver": "^6.3.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
+ }
+ },
+ "node_modules/@babel/helper-create-class-features-plugin": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.16.7.tgz",
+ "integrity": "sha512-kIFozAvVfK05DM4EVQYKK+zteWvY85BFdGBRQBytRyY3y+6PX0DkDOn/CZ3lEuczCfrCxEzwt0YtP/87YPTWSw==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-annotate-as-pure": "^7.16.7",
+ "@babel/helper-environment-visitor": "^7.16.7",
+ "@babel/helper-function-name": "^7.16.7",
+ "@babel/helper-member-expression-to-functions": "^7.16.7",
+ "@babel/helper-optimise-call-expression": "^7.16.7",
+ "@babel/helper-replace-supers": "^7.16.7",
+ "@babel/helper-split-export-declaration": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
+ }
+ },
+ "node_modules/@babel/helper-create-regexp-features-plugin": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.16.7.tgz",
+ "integrity": "sha512-fk5A6ymfp+O5+p2yCkXAu5Kyj6v0xh0RBeNcAkYUMDvvAAoxvSKXn+Jb37t/yWFiQVDFK1ELpUTD8/aLhCPu+g==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-annotate-as-pure": "^7.16.7",
+ "regexpu-core": "^4.7.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
+ }
+ },
+ "node_modules/@babel/helper-define-polyfill-provider": {
+ "version": "0.2.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.2.4.tgz",
+ "integrity": "sha512-OrpPZ97s+aPi6h2n1OXzdhVis1SGSsMU2aMHgLcOKfsp4/v1NWpx3CWT3lBj5eeBq9cDkPkh+YCfdF7O12uNDQ==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-compilation-targets": "^7.13.0",
+ "@babel/helper-module-imports": "^7.12.13",
+ "@babel/helper-plugin-utils": "^7.13.0",
+ "@babel/traverse": "^7.13.0",
+ "debug": "^4.1.1",
+ "lodash.debounce": "^4.0.8",
+ "resolve": "^1.14.2",
+ "semver": "^6.1.2"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.4.0-0"
+ }
+ },
+ "node_modules/@babel/helper-environment-visitor": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz",
+ "integrity": "sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==",
+ "dev": true,
+ "dependencies": {
+ "@babel/types": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-explode-assignable-expression": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.16.7.tgz",
+ "integrity": "sha512-KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ==",
+ "dev": true,
+ "dependencies": {
+ "@babel/types": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-function-name": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.7.tgz",
+ "integrity": "sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-get-function-arity": "^7.16.7",
+ "@babel/template": "^7.16.7",
+ "@babel/types": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-get-function-arity": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz",
+ "integrity": "sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw==",
+ "dev": true,
+ "dependencies": {
+ "@babel/types": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-hoist-variables": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz",
+ "integrity": "sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==",
+ "dev": true,
+ "dependencies": {
+ "@babel/types": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-member-expression-to-functions": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.16.7.tgz",
+ "integrity": "sha512-VtJ/65tYiU/6AbMTDwyoXGPKHgTsfRarivm+YbB5uAzKUyuPjgZSgAFeG87FCigc7KNHu2Pegh1XIT3lXjvz3Q==",
+ "dev": true,
+ "dependencies": {
+ "@babel/types": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-module-imports": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz",
+ "integrity": "sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==",
+ "dev": true,
+ "dependencies": {
+ "@babel/types": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-module-transforms": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.16.7.tgz",
+ "integrity": "sha512-gaqtLDxJEFCeQbYp9aLAefjhkKdjKcdh6DB7jniIGU3Pz52WAmP268zK0VgPz9hUNkMSYeH976K2/Y6yPadpng==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-environment-visitor": "^7.16.7",
+ "@babel/helper-module-imports": "^7.16.7",
+ "@babel/helper-simple-access": "^7.16.7",
+ "@babel/helper-split-export-declaration": "^7.16.7",
+ "@babel/helper-validator-identifier": "^7.16.7",
+ "@babel/template": "^7.16.7",
+ "@babel/traverse": "^7.16.7",
+ "@babel/types": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-optimise-call-expression": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.7.tgz",
+ "integrity": "sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==",
+ "dev": true,
+ "dependencies": {
+ "@babel/types": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-plugin-utils": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz",
+ "integrity": "sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==",
+ "dev": true,
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-remap-async-to-generator": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.7.tgz",
+ "integrity": "sha512-C3o117GnP/j/N2OWo+oepeWbFEKRfNaay+F1Eo5Mj3A1SRjyx+qaFhm23nlipub7Cjv2azdUUiDH+VlpdwUFRg==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-annotate-as-pure": "^7.16.7",
+ "@babel/helper-wrap-function": "^7.16.7",
+ "@babel/types": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-replace-supers": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.16.7.tgz",
+ "integrity": "sha512-y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-environment-visitor": "^7.16.7",
+ "@babel/helper-member-expression-to-functions": "^7.16.7",
+ "@babel/helper-optimise-call-expression": "^7.16.7",
+ "@babel/traverse": "^7.16.7",
+ "@babel/types": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-simple-access": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.16.7.tgz",
+ "integrity": "sha512-ZIzHVyoeLMvXMN/vok/a4LWRy8G2v205mNP0XOuf9XRLyX5/u9CnVulUtDgUTama3lT+bf/UqucuZjqiGuTS1g==",
+ "dev": true,
+ "dependencies": {
+ "@babel/types": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-skip-transparent-expression-wrappers": {
+ "version": "7.16.0",
+ "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.16.0.tgz",
+ "integrity": "sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw==",
+ "dev": true,
+ "dependencies": {
+ "@babel/types": "^7.16.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-split-export-declaration": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz",
+ "integrity": "sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==",
+ "dev": true,
+ "dependencies": {
+ "@babel/types": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-validator-identifier": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz",
+ "integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==",
+ "dev": true,
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-validator-option": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz",
+ "integrity": "sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-wrap-function": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.16.7.tgz",
+ "integrity": "sha512-7a9sABeVwcunnztZZ7WTgSw6jVYLzM1wua0Z4HIXm9S3/HC96WKQTkFgGEaj5W06SHHihPJ6Le6HzS5cGOQMNw==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-function-name": "^7.16.7",
+ "@babel/template": "^7.16.7",
+ "@babel/traverse": "^7.16.7",
+ "@babel/types": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helpers": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.16.7.tgz",
+ "integrity": "sha512-9ZDoqtfY7AuEOt3cxchfii6C7GDyyMBffktR5B2jvWv8u2+efwvpnVKXMWzNehqy68tKgAfSwfdw/lWpthS2bw==",
+ "dev": true,
+ "dependencies": {
+ "@babel/template": "^7.16.7",
+ "@babel/traverse": "^7.16.7",
+ "@babel/types": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/highlight": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.7.tgz",
+ "integrity": "sha512-aKpPMfLvGO3Q97V0qhw/V2SWNWlwfJknuwAunU7wZLSfrM4xTBvg7E5opUVi1kJTBKihE38CPg4nBiqX83PWYw==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-validator-identifier": "^7.16.7",
+ "chalk": "^2.0.0",
+ "js-tokens": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/parser": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.16.7.tgz",
+ "integrity": "sha512-sR4eaSrnM7BV7QPzGfEX5paG/6wrZM3I0HDzfIAK06ESvo9oy3xBuVBxE3MbQaKNhvg8g/ixjMWo2CGpzpHsDA==",
+ "dev": true,
+ "bin": {
+ "parser": "bin/babel-parser.js"
+ },
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7.tgz",
+ "integrity": "sha512-di8vUHRdf+4aJ7ltXhaDbPoszdkh59AQtJM5soLsuHpQJdFQZOA4uGj0V2u/CZ8bJ/u8ULDL5yq6FO/bCXnKHw==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0",
+ "@babel/plugin-proposal-optional-chaining": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.13.0"
+ }
+ },
+ "node_modules/@babel/plugin-proposal-async-generator-functions": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.16.7.tgz",
+ "integrity": "sha512-TTXBT3A5c11eqRzaC6beO6rlFT3Mo9C2e8eB44tTr52ESXSK2CIc2fOp1ynpAwQA8HhBMho+WXhMHWlAe3xkpw==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/helper-remap-async-to-generator": "^7.16.7",
+ "@babel/plugin-syntax-async-generators": "^7.8.4"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-proposal-class-properties": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.16.7.tgz",
+ "integrity": "sha512-IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-create-class-features-plugin": "^7.16.7",
+ "@babel/helper-plugin-utils": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-proposal-class-static-block": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.16.7.tgz",
+ "integrity": "sha512-dgqJJrcZoG/4CkMopzhPJjGxsIe9A8RlkQLnL/Vhhx8AA9ZuaRwGSlscSh42hazc7WSrya/IK7mTeoF0DP9tEw==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-create-class-features-plugin": "^7.16.7",
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/plugin-syntax-class-static-block": "^7.14.5"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.12.0"
+ }
+ },
+ "node_modules/@babel/plugin-proposal-decorators": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.16.7.tgz",
+ "integrity": "sha512-DoEpnuXK14XV9btI1k8tzNGCutMclpj4yru8aXKoHlVmbO1s+2A+g2+h4JhcjrxkFJqzbymnLG6j/niOf3iFXQ==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-create-class-features-plugin": "^7.16.7",
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/plugin-syntax-decorators": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-proposal-dynamic-import": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.16.7.tgz",
+ "integrity": "sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/plugin-syntax-dynamic-import": "^7.8.3"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-proposal-export-default-from": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.16.7.tgz",
+ "integrity": "sha512-+cENpW1rgIjExn+o5c8Jw/4BuH4eGKKYvkMB8/0ZxFQ9mC0t4z09VsPIwNg6waF69QYC81zxGeAsREGuqQoKeg==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/plugin-syntax-export-default-from": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-proposal-export-namespace-from": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.16.7.tgz",
+ "integrity": "sha512-ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/plugin-syntax-export-namespace-from": "^7.8.3"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-proposal-json-strings": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.16.7.tgz",
+ "integrity": "sha512-lNZ3EEggsGY78JavgbHsK9u5P3pQaW7k4axlgFLYkMd7UBsiNahCITShLjNQschPyjtO6dADrL24757IdhBrsQ==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/plugin-syntax-json-strings": "^7.8.3"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-proposal-logical-assignment-operators": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.16.7.tgz",
+ "integrity": "sha512-K3XzyZJGQCr00+EtYtrDjmwX7o7PLK6U9bi1nCwkQioRFVUv6dJoxbQjtWVtP+bCPy82bONBKG8NPyQ4+i6yjg==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.16.7.tgz",
+ "integrity": "sha512-aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-proposal-numeric-separator": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.16.7.tgz",
+ "integrity": "sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/plugin-syntax-numeric-separator": "^7.10.4"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-proposal-object-rest-spread": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.16.7.tgz",
+ "integrity": "sha512-3O0Y4+dw94HA86qSg9IHfyPktgR7q3gpNVAeiKQd+8jBKFaU5NQS1Yatgo4wY+UFNuLjvxcSmzcsHqrhgTyBUA==",
+ "dev": true,
+ "dependencies": {
+ "@babel/compat-data": "^7.16.4",
+ "@babel/helper-compilation-targets": "^7.16.7",
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/plugin-syntax-object-rest-spread": "^7.8.3",
+ "@babel/plugin-transform-parameters": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-proposal-optional-catch-binding": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.16.7.tgz",
+ "integrity": "sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/plugin-syntax-optional-catch-binding": "^7.8.3"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-proposal-optional-chaining": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.16.7.tgz",
+ "integrity": "sha512-eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0",
+ "@babel/plugin-syntax-optional-chaining": "^7.8.3"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-proposal-private-methods": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.7.tgz",
+ "integrity": "sha512-7twV3pzhrRxSwHeIvFE6coPgvo+exNDOiGUMg39o2LiLo1Y+4aKpfkcLGcg1UHonzorCt7SNXnoMyCnnIOA8Sw==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-create-class-features-plugin": "^7.16.7",
+ "@babel/helper-plugin-utils": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-proposal-private-property-in-object": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.16.7.tgz",
+ "integrity": "sha512-rMQkjcOFbm+ufe3bTZLyOfsOUOxyvLXZJCTARhJr+8UMSoZmqTe1K1BgkFcrW37rAchWg57yI69ORxiWvUINuQ==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-annotate-as-pure": "^7.16.7",
+ "@babel/helper-create-class-features-plugin": "^7.16.7",
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/plugin-syntax-private-property-in-object": "^7.14.5"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-proposal-unicode-property-regex": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.16.7.tgz",
+ "integrity": "sha512-QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-create-regexp-features-plugin": "^7.16.7",
+ "@babel/helper-plugin-utils": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=4"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-syntax-async-generators": {
+ "version": "7.8.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz",
+ "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-syntax-bigint": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz",
+ "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-syntax-class-properties": {
+ "version": "7.12.13",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz",
+ "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.12.13"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-syntax-class-static-block": {
+ "version": "7.14.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz",
+ "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.14.5"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-syntax-decorators": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.16.7.tgz",
+ "integrity": "sha512-vQ+PxL+srA7g6Rx6I1e15m55gftknl2X8GCUW1JTlkTaXZLJOS0UcaY0eK9jYT7IYf4awn6qwyghVHLDz1WyMw==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-syntax-dynamic-import": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz",
+ "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-syntax-export-default-from": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.16.7.tgz",
+ "integrity": "sha512-4C3E4NsrLOgftKaTYTULhHsuQrGv3FHrBzOMDiS7UYKIpgGBkAdawg4h+EI8zPeK9M0fiIIh72hIwsI24K7MbA==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-syntax-export-namespace-from": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz",
+ "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.8.3"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-syntax-flow": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.16.7.tgz",
+ "integrity": "sha512-UDo3YGQO0jH6ytzVwgSLv9i/CzMcUjbKenL67dTrAZPPv6GFAtDhe6jqnvmoKzC/7htNTohhos+onPtDMqJwaQ==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-syntax-import-meta": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz",
+ "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.10.4"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-syntax-json-strings": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz",
+ "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-syntax-jsx": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.16.7.tgz",
+ "integrity": "sha512-Esxmk7YjA8QysKeT3VhTXvF6y77f/a91SIs4pWb4H2eWGQkCKFgQaG6hdoEVZtGsrAcb2K5BW66XsOErD4WU3Q==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-syntax-logical-assignment-operators": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz",
+ "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.10.4"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz",
+ "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-syntax-numeric-separator": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz",
+ "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.10.4"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-syntax-object-rest-spread": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz",
+ "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-syntax-optional-catch-binding": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz",
+ "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-syntax-optional-chaining": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz",
+ "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-syntax-private-property-in-object": {
+ "version": "7.14.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz",
+ "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.14.5"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-syntax-top-level-await": {
+ "version": "7.14.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz",
+ "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.14.5"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-syntax-typescript": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.16.7.tgz",
+ "integrity": "sha512-YhUIJHHGkqPgEcMYkPCKTyGUdoGKWtopIycQyjJH8OjvRgOYsXsaKehLVPScKJWAULPxMa4N1vCe6szREFlZ7A==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-arrow-functions": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.16.7.tgz",
+ "integrity": "sha512-9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-async-to-generator": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.16.7.tgz",
+ "integrity": "sha512-pFEfjnK4DfXCfAlA5I98BYdDJD8NltMzx19gt6DAmfE+2lXRfPUoa0/5SUjT4+TDE1W/rcxU/1lgN55vpAjjdg==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-module-imports": "^7.16.7",
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/helper-remap-async-to-generator": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-block-scoped-functions": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.7.tgz",
+ "integrity": "sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-block-scoping": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.16.7.tgz",
+ "integrity": "sha512-ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-classes": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.16.7.tgz",
+ "integrity": "sha512-WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-annotate-as-pure": "^7.16.7",
+ "@babel/helper-environment-visitor": "^7.16.7",
+ "@babel/helper-function-name": "^7.16.7",
+ "@babel/helper-optimise-call-expression": "^7.16.7",
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/helper-replace-supers": "^7.16.7",
+ "@babel/helper-split-export-declaration": "^7.16.7",
+ "globals": "^11.1.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-computed-properties": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.16.7.tgz",
+ "integrity": "sha512-gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-destructuring": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.16.7.tgz",
+ "integrity": "sha512-VqAwhTHBnu5xBVDCvrvqJbtLUa++qZaWC0Fgr2mqokBlulZARGyIvZDoqbPlPaKImQ9dKAcCzbv+ul//uqu70A==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-dotall-regex": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.16.7.tgz",
+ "integrity": "sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-create-regexp-features-plugin": "^7.16.7",
+ "@babel/helper-plugin-utils": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-duplicate-keys": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.16.7.tgz",
+ "integrity": "sha512-03DvpbRfvWIXyK0/6QiR1KMTWeT6OcQ7tbhjrXyFS02kjuX/mu5Bvnh5SDSWHxyawit2g5aWhKwI86EE7GUnTw==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-exponentiation-operator": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.16.7.tgz",
+ "integrity": "sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-builder-binary-assignment-operator-visitor": "^7.16.7",
+ "@babel/helper-plugin-utils": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-flow-strip-types": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.16.7.tgz",
+ "integrity": "sha512-mzmCq3cNsDpZZu9FADYYyfZJIOrSONmHcop2XEKPdBNMa4PDC4eEvcOvzZaCNcjKu72v0XQlA5y1g58aLRXdYg==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/plugin-syntax-flow": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-for-of": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.16.7.tgz",
+ "integrity": "sha512-/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-function-name": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.7.tgz",
+ "integrity": "sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-compilation-targets": "^7.16.7",
+ "@babel/helper-function-name": "^7.16.7",
+ "@babel/helper-plugin-utils": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-literals": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.16.7.tgz",
+ "integrity": "sha512-6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-member-expression-literals": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.7.tgz",
+ "integrity": "sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-modules-amd": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.16.7.tgz",
+ "integrity": "sha512-KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-module-transforms": "^7.16.7",
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "babel-plugin-dynamic-import-node": "^2.3.3"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-modules-commonjs": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.16.7.tgz",
+ "integrity": "sha512-h2RP2kE7He1ZWKyAlanMZrAbdv+Acw1pA8dQZhE025WJZE2z0xzFADAinXA9fxd5bn7JnM+SdOGcndGx1ARs9w==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-module-transforms": "^7.16.7",
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/helper-simple-access": "^7.16.7",
+ "babel-plugin-dynamic-import-node": "^2.3.3"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-modules-systemjs": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.16.7.tgz",
+ "integrity": "sha512-DuK5E3k+QQmnOqBR9UkusByy5WZWGRxfzV529s9nPra1GE7olmxfqO2FHobEOYSPIjPBTr4p66YDcjQnt8cBmw==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-hoist-variables": "^7.16.7",
+ "@babel/helper-module-transforms": "^7.16.7",
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/helper-validator-identifier": "^7.16.7",
+ "babel-plugin-dynamic-import-node": "^2.3.3"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-modules-umd": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.16.7.tgz",
+ "integrity": "sha512-EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-module-transforms": "^7.16.7",
+ "@babel/helper-plugin-utils": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-named-capturing-groups-regex": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.16.7.tgz",
+ "integrity": "sha512-kFy35VwmwIQwCjwrAQhl3+c/kr292i4KdLPKp5lPH03Ltc51qnFlIADoyPxc/6Naz3ok3WdYKg+KK6AH+D4utg==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-create-regexp-features-plugin": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-new-target": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.16.7.tgz",
+ "integrity": "sha512-xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-object-super": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.16.7.tgz",
+ "integrity": "sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/helper-replace-supers": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-parameters": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.16.7.tgz",
+ "integrity": "sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-property-literals": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.16.7.tgz",
+ "integrity": "sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-react-display-name": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.16.7.tgz",
+ "integrity": "sha512-qgIg8BcZgd0G/Cz916D5+9kqX0c7nPZyXaP8R2tLNN5tkyIZdG5fEwBrxwplzSnjC1jvQmyMNVwUCZPcbGY7Pg==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-react-jsx": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.16.7.tgz",
+ "integrity": "sha512-8D16ye66fxiE8m890w0BpPpngG9o9OVBBy0gH2E+2AR7qMR2ZpTYJEqLxAsoroenMId0p/wMW+Blc0meDgu0Ag==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-annotate-as-pure": "^7.16.7",
+ "@babel/helper-module-imports": "^7.16.7",
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/plugin-syntax-jsx": "^7.16.7",
+ "@babel/types": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-react-jsx-development": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.16.7.tgz",
+ "integrity": "sha512-RMvQWvpla+xy6MlBpPlrKZCMRs2AGiHOGHY3xRwl0pEeim348dDyxeH4xBsMPbIMhujeq7ihE702eM2Ew0Wo+A==",
+ "dev": true,
+ "dependencies": {
+ "@babel/plugin-transform-react-jsx": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-react-pure-annotations": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.16.7.tgz",
+ "integrity": "sha512-hs71ToC97k3QWxswh2ElzMFABXHvGiJ01IB1TbYQDGeWRKWz/MPUTh5jGExdHvosYKpnJW5Pm3S4+TA3FyX+GA==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-annotate-as-pure": "^7.16.7",
+ "@babel/helper-plugin-utils": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-regenerator": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.16.7.tgz",
+ "integrity": "sha512-mF7jOgGYCkSJagJ6XCujSQg+6xC1M77/03K2oBmVJWoFGNUtnVJO4WHKJk3dnPC8HCcj4xBQP1Egm8DWh3Pb3Q==",
+ "dev": true,
+ "dependencies": {
+ "regenerator-transform": "^0.14.2"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-reserved-words": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.16.7.tgz",
+ "integrity": "sha512-KQzzDnZ9hWQBjwi5lpY5v9shmm6IVG0U9pB18zvMu2i4H90xpT4gmqwPYsn8rObiadYe2M0gmgsiOIF5A/2rtg==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-shorthand-properties": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.7.tgz",
+ "integrity": "sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-spread": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.16.7.tgz",
+ "integrity": "sha512-+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-sticky-regex": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.16.7.tgz",
+ "integrity": "sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-template-literals": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.16.7.tgz",
+ "integrity": "sha512-VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-typeof-symbol": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.16.7.tgz",
+ "integrity": "sha512-p2rOixCKRJzpg9JB4gjnG4gjWkWa89ZoYUnl9snJ1cWIcTH/hvxZqfO+WjG6T8DRBpctEol5jw1O5rA8gkCokQ==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-typescript": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.16.7.tgz",
+ "integrity": "sha512-Hzx1lvBtOCWuCEwMmYOfpQpO7joFeXLgoPuzZZBtTxXqSqUGUubvFGZv2ygo1tB5Bp9q6PXV3H0E/kf7KM0RLA==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-create-class-features-plugin": "^7.16.7",
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/plugin-syntax-typescript": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-unicode-escapes": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.16.7.tgz",
+ "integrity": "sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-unicode-regex": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.16.7.tgz",
+ "integrity": "sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-create-regexp-features-plugin": "^7.16.7",
+ "@babel/helper-plugin-utils": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/preset-env": {
+ "version": "7.15.6",
+ "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.15.6.tgz",
+ "integrity": "sha512-L+6jcGn7EWu7zqaO2uoTDjjMBW+88FXzV8KvrBl2z6MtRNxlsmUNRlZPaNNPUTgqhyC5DHNFk/2Jmra+ublZWw==",
+ "dev": true,
+ "dependencies": {
+ "@babel/compat-data": "^7.15.0",
+ "@babel/helper-compilation-targets": "^7.15.4",
+ "@babel/helper-plugin-utils": "^7.14.5",
+ "@babel/helper-validator-option": "^7.14.5",
+ "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.15.4",
+ "@babel/plugin-proposal-async-generator-functions": "^7.15.4",
+ "@babel/plugin-proposal-class-properties": "^7.14.5",
+ "@babel/plugin-proposal-class-static-block": "^7.15.4",
+ "@babel/plugin-proposal-dynamic-import": "^7.14.5",
+ "@babel/plugin-proposal-export-namespace-from": "^7.14.5",
+ "@babel/plugin-proposal-json-strings": "^7.14.5",
+ "@babel/plugin-proposal-logical-assignment-operators": "^7.14.5",
+ "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5",
+ "@babel/plugin-proposal-numeric-separator": "^7.14.5",
+ "@babel/plugin-proposal-object-rest-spread": "^7.15.6",
+ "@babel/plugin-proposal-optional-catch-binding": "^7.14.5",
+ "@babel/plugin-proposal-optional-chaining": "^7.14.5",
+ "@babel/plugin-proposal-private-methods": "^7.14.5",
+ "@babel/plugin-proposal-private-property-in-object": "^7.15.4",
+ "@babel/plugin-proposal-unicode-property-regex": "^7.14.5",
+ "@babel/plugin-syntax-async-generators": "^7.8.4",
+ "@babel/plugin-syntax-class-properties": "^7.12.13",
+ "@babel/plugin-syntax-class-static-block": "^7.14.5",
+ "@babel/plugin-syntax-dynamic-import": "^7.8.3",
+ "@babel/plugin-syntax-export-namespace-from": "^7.8.3",
+ "@babel/plugin-syntax-json-strings": "^7.8.3",
+ "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4",
+ "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",
+ "@babel/plugin-syntax-numeric-separator": "^7.10.4",
+ "@babel/plugin-syntax-object-rest-spread": "^7.8.3",
+ "@babel/plugin-syntax-optional-catch-binding": "^7.8.3",
+ "@babel/plugin-syntax-optional-chaining": "^7.8.3",
+ "@babel/plugin-syntax-private-property-in-object": "^7.14.5",
+ "@babel/plugin-syntax-top-level-await": "^7.14.5",
+ "@babel/plugin-transform-arrow-functions": "^7.14.5",
+ "@babel/plugin-transform-async-to-generator": "^7.14.5",
+ "@babel/plugin-transform-block-scoped-functions": "^7.14.5",
+ "@babel/plugin-transform-block-scoping": "^7.15.3",
+ "@babel/plugin-transform-classes": "^7.15.4",
+ "@babel/plugin-transform-computed-properties": "^7.14.5",
+ "@babel/plugin-transform-destructuring": "^7.14.7",
+ "@babel/plugin-transform-dotall-regex": "^7.14.5",
+ "@babel/plugin-transform-duplicate-keys": "^7.14.5",
+ "@babel/plugin-transform-exponentiation-operator": "^7.14.5",
+ "@babel/plugin-transform-for-of": "^7.15.4",
+ "@babel/plugin-transform-function-name": "^7.14.5",
+ "@babel/plugin-transform-literals": "^7.14.5",
+ "@babel/plugin-transform-member-expression-literals": "^7.14.5",
+ "@babel/plugin-transform-modules-amd": "^7.14.5",
+ "@babel/plugin-transform-modules-commonjs": "^7.15.4",
+ "@babel/plugin-transform-modules-systemjs": "^7.15.4",
+ "@babel/plugin-transform-modules-umd": "^7.14.5",
+ "@babel/plugin-transform-named-capturing-groups-regex": "^7.14.9",
+ "@babel/plugin-transform-new-target": "^7.14.5",
+ "@babel/plugin-transform-object-super": "^7.14.5",
+ "@babel/plugin-transform-parameters": "^7.15.4",
+ "@babel/plugin-transform-property-literals": "^7.14.5",
+ "@babel/plugin-transform-regenerator": "^7.14.5",
+ "@babel/plugin-transform-reserved-words": "^7.14.5",
+ "@babel/plugin-transform-shorthand-properties": "^7.14.5",
+ "@babel/plugin-transform-spread": "^7.14.6",
+ "@babel/plugin-transform-sticky-regex": "^7.14.5",
+ "@babel/plugin-transform-template-literals": "^7.14.5",
+ "@babel/plugin-transform-typeof-symbol": "^7.14.5",
+ "@babel/plugin-transform-unicode-escapes": "^7.14.5",
+ "@babel/plugin-transform-unicode-regex": "^7.14.5",
+ "@babel/preset-modules": "^0.1.4",
+ "@babel/types": "^7.15.6",
+ "babel-plugin-polyfill-corejs2": "^0.2.2",
+ "babel-plugin-polyfill-corejs3": "^0.2.2",
+ "babel-plugin-polyfill-regenerator": "^0.2.2",
+ "core-js-compat": "^3.16.0",
+ "semver": "^6.3.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/preset-flow": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/preset-flow/-/preset-flow-7.16.7.tgz",
+ "integrity": "sha512-6ceP7IyZdUYQ3wUVqyRSQXztd1YmFHWI4Xv11MIqAlE4WqxBSd/FZ61V9k+TS5Gd4mkHOtQtPp9ymRpxH4y1Ug==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/helper-validator-option": "^7.16.7",
+ "@babel/plugin-transform-flow-strip-types": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/preset-modules": {
+ "version": "0.1.5",
+ "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz",
+ "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.0.0",
+ "@babel/plugin-proposal-unicode-property-regex": "^7.4.4",
+ "@babel/plugin-transform-dotall-regex": "^7.4.4",
+ "@babel/types": "^7.4.4",
+ "esutils": "^2.0.2"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/preset-react": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.16.7.tgz",
+ "integrity": "sha512-fWpyI8UM/HE6DfPBzD8LnhQ/OcH8AgTaqcqP2nGOXEUV+VKBR5JRN9hCk9ai+zQQ57vtm9oWeXguBCPNUjytgA==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/helper-validator-option": "^7.16.7",
+ "@babel/plugin-transform-react-display-name": "^7.16.7",
+ "@babel/plugin-transform-react-jsx": "^7.16.7",
+ "@babel/plugin-transform-react-jsx-development": "^7.16.7",
+ "@babel/plugin-transform-react-pure-annotations": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/preset-typescript": {
+ "version": "7.15.0",
+ "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.15.0.tgz",
+ "integrity": "sha512-lt0Y/8V3y06Wq/8H/u0WakrqciZ7Fz7mwPDHWUJAXlABL5hiUG42BNlRXiELNjeWjO5rWmnNKlx+yzJvxezHow==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.14.5",
+ "@babel/helper-validator-option": "^7.14.5",
+ "@babel/plugin-transform-typescript": "^7.15.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/register": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/register/-/register-7.16.7.tgz",
+ "integrity": "sha512-Ft+cuxorVxFj4RrPDs9TbJNE7ZbuJTyazUC6jLWRvBQT/qIDZPMe7MHgjlrA+11+XDLh+I0Pnx7sxPp4LRhzcA==",
+ "dev": true,
+ "dependencies": {
+ "clone-deep": "^4.0.1",
+ "find-cache-dir": "^2.0.0",
+ "make-dir": "^2.1.0",
+ "pirates": "^4.0.0",
+ "source-map-support": "^0.5.16"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/runtime": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.7.tgz",
+ "integrity": "sha512-9E9FJowqAsytyOY6LG+1KuueckRL+aQW+mKvXRXnuFGyRAyepJPmEo9vgMfXUA6O9u3IeEdv9MAkppFcaQwogQ==",
+ "dev": true,
+ "dependencies": {
+ "regenerator-runtime": "^0.13.4"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/template": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz",
+ "integrity": "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==",
+ "dev": true,
+ "dependencies": {
+ "@babel/code-frame": "^7.16.7",
+ "@babel/parser": "^7.16.7",
+ "@babel/types": "^7.16.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/traverse": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.7.tgz",
+ "integrity": "sha512-8KWJPIb8c2VvY8AJrydh6+fVRo2ODx1wYBU2398xJVq0JomuLBZmVQzLPBblJgHIGYG4znCpUZUZ0Pt2vdmVYQ==",
+ "dev": true,
+ "dependencies": {
+ "@babel/code-frame": "^7.16.7",
+ "@babel/generator": "^7.16.7",
+ "@babel/helper-environment-visitor": "^7.16.7",
+ "@babel/helper-function-name": "^7.16.7",
+ "@babel/helper-hoist-variables": "^7.16.7",
+ "@babel/helper-split-export-declaration": "^7.16.7",
+ "@babel/parser": "^7.16.7",
+ "@babel/types": "^7.16.7",
+ "debug": "^4.1.0",
+ "globals": "^11.1.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/types": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.16.7.tgz",
+ "integrity": "sha512-E8HuV7FO9qLpx6OtoGfUQ2cjIYnbFwvZWYBS+87EwtdMvmUPJSwykpovFB+8insbpF0uJcpr8KMUi64XZntZcg==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-validator-identifier": "^7.16.7",
+ "to-fast-properties": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@base2/pretty-print-object": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/@base2/pretty-print-object/-/pretty-print-object-1.0.1.tgz",
+ "integrity": "sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==",
+ "dev": true
+ },
+ "node_modules/@bcoe/v8-coverage": {
+ "version": "0.2.3",
+ "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz",
+ "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==",
+ "dev": true
+ },
+ "node_modules/@cnakazawa/watch": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.4.tgz",
+ "integrity": "sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==",
+ "dev": true,
+ "dependencies": {
+ "exec-sh": "^0.3.2",
+ "minimist": "^1.2.0"
+ },
+ "bin": {
+ "watch": "cli.js"
+ },
+ "engines": {
+ "node": ">=0.1.95"
+ }
+ },
+ "node_modules/@discoveryjs/json-ext": {
+ "version": "0.5.6",
+ "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.6.tgz",
+ "integrity": "sha512-ws57AidsDvREKrZKYffXddNkyaF14iHNHm8VQnZH6t99E8gczjNN0GpvcGny0imC80yQ0tHz1xVUKk/KFQSUyA==",
+ "dev": true,
+ "engines": {
+ "node": ">=10.0.0"
+ }
+ },
+ "node_modules/@emotion/cache": {
+ "version": "10.0.29",
+ "resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-10.0.29.tgz",
+ "integrity": "sha512-fU2VtSVlHiF27empSbxi1O2JFdNWZO+2NFHfwO0pxgTep6Xa3uGb+3pVKfLww2l/IBGLNEZl5Xf/++A4wAYDYQ==",
+ "dev": true,
+ "dependencies": {
+ "@emotion/sheet": "0.9.4",
+ "@emotion/stylis": "0.8.5",
+ "@emotion/utils": "0.11.3",
+ "@emotion/weak-memoize": "0.2.5"
+ }
+ },
+ "node_modules/@emotion/core": {
+ "version": "10.3.1",
+ "resolved": "https://registry.npmjs.org/@emotion/core/-/core-10.3.1.tgz",
+ "integrity": "sha512-447aUEjPIm0MnE6QYIaFz9VQOHSXf4Iu6EWOIqq11EAPqinkSZmfymPTmlOE3QjLv846lH4JVZBUOtwGbuQoww==",
+ "dev": true,
+ "dependencies": {
+ "@babel/runtime": "^7.5.5",
+ "@emotion/cache": "^10.0.27",
+ "@emotion/css": "^10.0.27",
+ "@emotion/serialize": "^0.11.15",
+ "@emotion/sheet": "0.9.4",
+ "@emotion/utils": "0.11.3"
+ },
+ "peerDependencies": {
+ "react": ">=16.3.0"
+ }
+ },
+ "node_modules/@emotion/css": {
+ "version": "10.0.27",
+ "resolved": "https://registry.npmjs.org/@emotion/css/-/css-10.0.27.tgz",
+ "integrity": "sha512-6wZjsvYeBhyZQYNrGoR5yPMYbMBNEnanDrqmsqS1mzDm1cOTu12shvl2j4QHNS36UaTE0USIJawCH9C8oW34Zw==",
+ "dev": true,
+ "dependencies": {
+ "@emotion/serialize": "^0.11.15",
+ "@emotion/utils": "0.11.3",
+ "babel-plugin-emotion": "^10.0.27"
+ }
+ },
+ "node_modules/@emotion/hash": {
+ "version": "0.8.0",
+ "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.8.0.tgz",
+ "integrity": "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==",
+ "dev": true
+ },
+ "node_modules/@emotion/is-prop-valid": {
+ "version": "0.8.8",
+ "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz",
+ "integrity": "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==",
+ "dev": true,
+ "dependencies": {
+ "@emotion/memoize": "0.7.4"
+ }
+ },
+ "node_modules/@emotion/memoize": {
+ "version": "0.7.4",
+ "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz",
+ "integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==",
+ "dev": true
+ },
+ "node_modules/@emotion/serialize": {
+ "version": "0.11.16",
+ "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-0.11.16.tgz",
+ "integrity": "sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg==",
+ "dev": true,
+ "dependencies": {
+ "@emotion/hash": "0.8.0",
+ "@emotion/memoize": "0.7.4",
+ "@emotion/unitless": "0.7.5",
+ "@emotion/utils": "0.11.3",
+ "csstype": "^2.5.7"
+ }
+ },
+ "node_modules/@emotion/sheet": {
+ "version": "0.9.4",
+ "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-0.9.4.tgz",
+ "integrity": "sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA==",
+ "dev": true
+ },
+ "node_modules/@emotion/styled": {
+ "version": "10.3.0",
+ "resolved": "https://registry.npmjs.org/@emotion/styled/-/styled-10.3.0.tgz",
+ "integrity": "sha512-GgcUpXBBEU5ido+/p/mCT2/Xx+Oqmp9JzQRuC+a4lYM4i4LBBn/dWvc0rQ19N9ObA8/T4NWMrPNe79kMBDJqoQ==",
+ "dev": true,
+ "dependencies": {
+ "@emotion/styled-base": "^10.3.0",
+ "babel-plugin-emotion": "^10.0.27"
+ },
+ "peerDependencies": {
+ "@emotion/core": "^10.0.27",
+ "react": ">=16.3.0"
+ }
+ },
+ "node_modules/@emotion/styled-base": {
+ "version": "10.3.0",
+ "resolved": "https://registry.npmjs.org/@emotion/styled-base/-/styled-base-10.3.0.tgz",
+ "integrity": "sha512-PBRqsVKR7QRNkmfH78hTSSwHWcwDpecH9W6heujWAcyp2wdz/64PP73s7fWS1dIPm8/Exc8JAzYS8dEWXjv60w==",
+ "dev": true,
+ "dependencies": {
+ "@babel/runtime": "^7.5.5",
+ "@emotion/is-prop-valid": "0.8.8",
+ "@emotion/serialize": "^0.11.15",
+ "@emotion/utils": "0.11.3"
+ },
+ "peerDependencies": {
+ "@emotion/core": "^10.0.28",
+ "react": ">=16.3.0"
+ }
+ },
+ "node_modules/@emotion/stylis": {
+ "version": "0.8.5",
+ "resolved": "https://registry.npmjs.org/@emotion/stylis/-/stylis-0.8.5.tgz",
+ "integrity": "sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==",
+ "dev": true
+ },
+ "node_modules/@emotion/unitless": {
+ "version": "0.7.5",
+ "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.7.5.tgz",
+ "integrity": "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==",
+ "dev": true
+ },
+ "node_modules/@emotion/utils": {
+ "version": "0.11.3",
+ "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-0.11.3.tgz",
+ "integrity": "sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw==",
+ "dev": true
+ },
+ "node_modules/@emotion/weak-memoize": {
+ "version": "0.2.5",
+ "resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz",
+ "integrity": "sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==",
+ "dev": true
+ },
+ "node_modules/@gar/promisify": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.2.tgz",
+ "integrity": "sha512-82cpyJyKRoQoRi+14ibCeGPu0CwypgtBAdBhq1WfvagpCZNKqwXbKwXllYSMG91DhmG4jt9gN8eP6lGOtozuaw==",
+ "dev": true
+ },
+ "node_modules/@istanbuljs/load-nyc-config": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz",
+ "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==",
+ "dev": true,
+ "dependencies": {
+ "camelcase": "^5.3.1",
+ "find-up": "^4.1.0",
+ "get-package-type": "^0.1.0",
+ "js-yaml": "^3.13.1",
+ "resolve-from": "^5.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@istanbuljs/load-nyc-config/node_modules/find-up": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
+ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
+ "dev": true,
+ "dependencies": {
+ "locate-path": "^5.0.0",
+ "path-exists": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
+ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
+ "dev": true,
+ "dependencies": {
+ "p-locate": "^4.1.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@istanbuljs/load-nyc-config/node_modules/p-limit": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
+ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
+ "dev": true,
+ "dependencies": {
+ "p-try": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/@istanbuljs/load-nyc-config/node_modules/p-locate": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
+ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
+ "dev": true,
+ "dependencies": {
+ "p-limit": "^2.2.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@istanbuljs/schema": {
+ "version": "0.1.3",
+ "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz",
+ "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@jest/console": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.4.6.tgz",
+ "integrity": "sha512-jauXyacQD33n47A44KrlOVeiXHEXDqapSdfb9kTekOchH/Pd18kBIO1+xxJQRLuG+LUuljFCwTG92ra4NW7SpA==",
+ "dev": true,
+ "dependencies": {
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "jest-message-util": "^27.4.6",
+ "jest-util": "^27.4.2",
+ "slash": "^3.0.0"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/@jest/console/node_modules/@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "dependencies": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/@jest/console/node_modules/@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "dependencies": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "node_modules/@jest/console/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/@jest/console/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/@jest/console/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@jest/console/node_modules/jest-util": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.4.2.tgz",
+ "integrity": "sha512-YuxxpXU6nlMan9qyLuxHaMMOzXAl5aGZWCSzben5DhLHemYQxCc4YK+4L3ZrCutT8GPQ+ui9k5D8rUJoDioMnA==",
+ "dev": true,
+ "dependencies": {
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.4",
+ "picomatch": "^2.2.3"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/@jest/console/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@jest/core": {
+ "version": "27.4.7",
+ "resolved": "https://registry.npmjs.org/@jest/core/-/core-27.4.7.tgz",
+ "integrity": "sha512-n181PurSJkVMS+kClIFSX/LLvw9ExSb+4IMtD6YnfxZVerw9ANYtW0bPrm0MJu2pfe9SY9FJ9FtQ+MdZkrZwjg==",
+ "dev": true,
+ "dependencies": {
+ "@jest/console": "^27.4.6",
+ "@jest/reporters": "^27.4.6",
+ "@jest/test-result": "^27.4.6",
+ "@jest/transform": "^27.4.6",
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "ansi-escapes": "^4.2.1",
+ "chalk": "^4.0.0",
+ "emittery": "^0.8.1",
+ "exit": "^0.1.2",
+ "graceful-fs": "^4.2.4",
+ "jest-changed-files": "^27.4.2",
+ "jest-config": "^27.4.7",
+ "jest-haste-map": "^27.4.6",
+ "jest-message-util": "^27.4.6",
+ "jest-regex-util": "^27.4.0",
+ "jest-resolve": "^27.4.6",
+ "jest-resolve-dependencies": "^27.4.6",
+ "jest-runner": "^27.4.6",
+ "jest-runtime": "^27.4.6",
+ "jest-snapshot": "^27.4.6",
+ "jest-util": "^27.4.2",
+ "jest-validate": "^27.4.6",
+ "jest-watcher": "^27.4.6",
+ "micromatch": "^4.0.4",
+ "rimraf": "^3.0.0",
+ "slash": "^3.0.0",
+ "strip-ansi": "^6.0.0"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ },
+ "peerDependencies": {
+ "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
+ },
+ "peerDependenciesMeta": {
+ "node-notifier": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@jest/core/node_modules/@jest/transform": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.4.6.tgz",
+ "integrity": "sha512-9MsufmJC8t5JTpWEQJ0OcOOAXaH5ioaIX6uHVBLBMoCZPfKKQF+EqP8kACAvCZ0Y1h2Zr3uOccg8re+Dr5jxyw==",
+ "dev": true,
+ "dependencies": {
+ "@babel/core": "^7.1.0",
+ "@jest/types": "^27.4.2",
+ "babel-plugin-istanbul": "^6.1.1",
+ "chalk": "^4.0.0",
+ "convert-source-map": "^1.4.0",
+ "fast-json-stable-stringify": "^2.0.0",
+ "graceful-fs": "^4.2.4",
+ "jest-haste-map": "^27.4.6",
+ "jest-regex-util": "^27.4.0",
+ "jest-util": "^27.4.2",
+ "micromatch": "^4.0.4",
+ "pirates": "^4.0.4",
+ "slash": "^3.0.0",
+ "source-map": "^0.6.1",
+ "write-file-atomic": "^3.0.0"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/@jest/core/node_modules/@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "dependencies": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/@jest/core/node_modules/@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "dependencies": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "node_modules/@jest/core/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/@jest/core/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/@jest/core/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@jest/core/node_modules/jest-haste-map": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.4.6.tgz",
+ "integrity": "sha512-0tNpgxg7BKurZeFkIOvGCkbmOHbLFf4LUQOxrQSMjvrQaQe3l6E8x6jYC1NuWkGo5WDdbr8FEzUxV2+LWNawKQ==",
+ "dev": true,
+ "dependencies": {
+ "@jest/types": "^27.4.2",
+ "@types/graceful-fs": "^4.1.2",
+ "@types/node": "*",
+ "anymatch": "^3.0.3",
+ "fb-watchman": "^2.0.0",
+ "graceful-fs": "^4.2.4",
+ "jest-regex-util": "^27.4.0",
+ "jest-serializer": "^27.4.0",
+ "jest-util": "^27.4.2",
+ "jest-worker": "^27.4.6",
+ "micromatch": "^4.0.4",
+ "walker": "^1.0.7"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ },
+ "optionalDependencies": {
+ "fsevents": "^2.3.2"
+ }
+ },
+ "node_modules/@jest/core/node_modules/jest-regex-util": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.4.0.tgz",
+ "integrity": "sha512-WeCpMpNnqJYMQoOjm1nTtsgbR4XHAk1u00qDoNBQoykM280+/TmgA5Qh5giC1ecy6a5d4hbSsHzpBtu5yvlbEg==",
+ "dev": true,
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/@jest/core/node_modules/jest-serializer": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.4.0.tgz",
+ "integrity": "sha512-RDhpcn5f1JYTX2pvJAGDcnsNTnsV9bjYPU8xcV+xPwOXnUPOQwf4ZEuiU6G9H1UztH+OapMgu/ckEVwO87PwnQ==",
+ "dev": true,
+ "dependencies": {
+ "@types/node": "*",
+ "graceful-fs": "^4.2.4"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/@jest/core/node_modules/jest-util": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.4.2.tgz",
+ "integrity": "sha512-YuxxpXU6nlMan9qyLuxHaMMOzXAl5aGZWCSzben5DhLHemYQxCc4YK+4L3ZrCutT8GPQ+ui9k5D8rUJoDioMnA==",
+ "dev": true,
+ "dependencies": {
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.4",
+ "picomatch": "^2.2.3"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/@jest/core/node_modules/source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/@jest/core/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@jest/environment": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.4.6.tgz",
+ "integrity": "sha512-E6t+RXPfATEEGVidr84WngLNWZ8ffCPky8RqqRK6u1Bn0LK92INe0MDttyPl/JOzaq92BmDzOeuqk09TvM22Sg==",
+ "dev": true,
+ "dependencies": {
+ "@jest/fake-timers": "^27.4.6",
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "jest-mock": "^27.4.6"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/@jest/environment/node_modules/@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "dependencies": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/@jest/environment/node_modules/@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "dependencies": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "node_modules/@jest/environment/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/@jest/environment/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/@jest/environment/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@jest/environment/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@jest/fake-timers": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.4.6.tgz",
+ "integrity": "sha512-mfaethuYF8scV8ntPpiVGIHQgS0XIALbpY2jt2l7wb/bvq4Q5pDLk4EP4D7SAvYT1QrPOPVZAtbdGAOOyIgs7A==",
+ "dev": true,
+ "dependencies": {
+ "@jest/types": "^27.4.2",
+ "@sinonjs/fake-timers": "^8.0.1",
+ "@types/node": "*",
+ "jest-message-util": "^27.4.6",
+ "jest-mock": "^27.4.6",
+ "jest-util": "^27.4.2"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/@jest/fake-timers/node_modules/@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "dependencies": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/@jest/fake-timers/node_modules/@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "dependencies": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "node_modules/@jest/fake-timers/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/@jest/fake-timers/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/@jest/fake-timers/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@jest/fake-timers/node_modules/jest-util": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.4.2.tgz",
+ "integrity": "sha512-YuxxpXU6nlMan9qyLuxHaMMOzXAl5aGZWCSzben5DhLHemYQxCc4YK+4L3ZrCutT8GPQ+ui9k5D8rUJoDioMnA==",
+ "dev": true,
+ "dependencies": {
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.4",
+ "picomatch": "^2.2.3"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/@jest/fake-timers/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@jest/globals": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-27.4.6.tgz",
+ "integrity": "sha512-kAiwMGZ7UxrgPzu8Yv9uvWmXXxsy0GciNejlHvfPIfWkSxChzv6bgTS3YqBkGuHcis+ouMFI2696n2t+XYIeFw==",
+ "dev": true,
+ "dependencies": {
+ "@jest/environment": "^27.4.6",
+ "@jest/types": "^27.4.2",
+ "expect": "^27.4.6"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/@jest/globals/node_modules/@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "dependencies": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/@jest/globals/node_modules/@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "dependencies": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "node_modules/@jest/globals/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/@jest/globals/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/@jest/globals/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@jest/globals/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@jest/reporters": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-27.4.6.tgz",
+ "integrity": "sha512-+Zo9gV81R14+PSq4wzee4GC2mhAN9i9a7qgJWL90Gpx7fHYkWpTBvwWNZUXvJByYR9tAVBdc8VxDWqfJyIUrIQ==",
+ "dev": true,
+ "dependencies": {
+ "@bcoe/v8-coverage": "^0.2.3",
+ "@jest/console": "^27.4.6",
+ "@jest/test-result": "^27.4.6",
+ "@jest/transform": "^27.4.6",
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "collect-v8-coverage": "^1.0.0",
+ "exit": "^0.1.2",
+ "glob": "^7.1.2",
+ "graceful-fs": "^4.2.4",
+ "istanbul-lib-coverage": "^3.0.0",
+ "istanbul-lib-instrument": "^5.1.0",
+ "istanbul-lib-report": "^3.0.0",
+ "istanbul-lib-source-maps": "^4.0.0",
+ "istanbul-reports": "^3.1.3",
+ "jest-haste-map": "^27.4.6",
+ "jest-resolve": "^27.4.6",
+ "jest-util": "^27.4.2",
+ "jest-worker": "^27.4.6",
+ "slash": "^3.0.0",
+ "source-map": "^0.6.0",
+ "string-length": "^4.0.1",
+ "terminal-link": "^2.0.0",
+ "v8-to-istanbul": "^8.1.0"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ },
+ "peerDependencies": {
+ "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
+ },
+ "peerDependenciesMeta": {
+ "node-notifier": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@jest/reporters/node_modules/@jest/transform": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.4.6.tgz",
+ "integrity": "sha512-9MsufmJC8t5JTpWEQJ0OcOOAXaH5ioaIX6uHVBLBMoCZPfKKQF+EqP8kACAvCZ0Y1h2Zr3uOccg8re+Dr5jxyw==",
+ "dev": true,
+ "dependencies": {
+ "@babel/core": "^7.1.0",
+ "@jest/types": "^27.4.2",
+ "babel-plugin-istanbul": "^6.1.1",
+ "chalk": "^4.0.0",
+ "convert-source-map": "^1.4.0",
+ "fast-json-stable-stringify": "^2.0.0",
+ "graceful-fs": "^4.2.4",
+ "jest-haste-map": "^27.4.6",
+ "jest-regex-util": "^27.4.0",
+ "jest-util": "^27.4.2",
+ "micromatch": "^4.0.4",
+ "pirates": "^4.0.4",
+ "slash": "^3.0.0",
+ "source-map": "^0.6.1",
+ "write-file-atomic": "^3.0.0"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/@jest/reporters/node_modules/@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "dependencies": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/@jest/reporters/node_modules/@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "dependencies": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "node_modules/@jest/reporters/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/@jest/reporters/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/@jest/reporters/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@jest/reporters/node_modules/jest-haste-map": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.4.6.tgz",
+ "integrity": "sha512-0tNpgxg7BKurZeFkIOvGCkbmOHbLFf4LUQOxrQSMjvrQaQe3l6E8x6jYC1NuWkGo5WDdbr8FEzUxV2+LWNawKQ==",
+ "dev": true,
+ "dependencies": {
+ "@jest/types": "^27.4.2",
+ "@types/graceful-fs": "^4.1.2",
+ "@types/node": "*",
+ "anymatch": "^3.0.3",
+ "fb-watchman": "^2.0.0",
+ "graceful-fs": "^4.2.4",
+ "jest-regex-util": "^27.4.0",
+ "jest-serializer": "^27.4.0",
+ "jest-util": "^27.4.2",
+ "jest-worker": "^27.4.6",
+ "micromatch": "^4.0.4",
+ "walker": "^1.0.7"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ },
+ "optionalDependencies": {
+ "fsevents": "^2.3.2"
+ }
+ },
+ "node_modules/@jest/reporters/node_modules/jest-regex-util": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.4.0.tgz",
+ "integrity": "sha512-WeCpMpNnqJYMQoOjm1nTtsgbR4XHAk1u00qDoNBQoykM280+/TmgA5Qh5giC1ecy6a5d4hbSsHzpBtu5yvlbEg==",
+ "dev": true,
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/@jest/reporters/node_modules/jest-serializer": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.4.0.tgz",
+ "integrity": "sha512-RDhpcn5f1JYTX2pvJAGDcnsNTnsV9bjYPU8xcV+xPwOXnUPOQwf4ZEuiU6G9H1UztH+OapMgu/ckEVwO87PwnQ==",
+ "dev": true,
+ "dependencies": {
+ "@types/node": "*",
+ "graceful-fs": "^4.2.4"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/@jest/reporters/node_modules/jest-util": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.4.2.tgz",
+ "integrity": "sha512-YuxxpXU6nlMan9qyLuxHaMMOzXAl5aGZWCSzben5DhLHemYQxCc4YK+4L3ZrCutT8GPQ+ui9k5D8rUJoDioMnA==",
+ "dev": true,
+ "dependencies": {
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.4",
+ "picomatch": "^2.2.3"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/@jest/reporters/node_modules/source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/@jest/reporters/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@jest/source-map": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-27.4.0.tgz",
+ "integrity": "sha512-Ntjx9jzP26Bvhbm93z/AKcPRj/9wrkI88/gK60glXDx1q+IeI0rf7Lw2c89Ch6ofonB0On/iRDreQuQ6te9pgQ==",
+ "dev": true,
+ "dependencies": {
+ "callsites": "^3.0.0",
+ "graceful-fs": "^4.2.4",
+ "source-map": "^0.6.0"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/@jest/source-map/node_modules/source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/@jest/test-result": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.4.6.tgz",
+ "integrity": "sha512-fi9IGj3fkOrlMmhQqa/t9xum8jaJOOAi/lZlm6JXSc55rJMXKHxNDN1oCP39B0/DhNOa2OMupF9BcKZnNtXMOQ==",
+ "dev": true,
+ "dependencies": {
+ "@jest/console": "^27.4.6",
+ "@jest/types": "^27.4.2",
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "collect-v8-coverage": "^1.0.0"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/@jest/test-result/node_modules/@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "dependencies": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/@jest/test-result/node_modules/@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "dependencies": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "node_modules/@jest/test-result/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/@jest/test-result/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/@jest/test-result/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@jest/test-result/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@jest/test-sequencer": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.4.6.tgz",
+ "integrity": "sha512-3GL+nsf6E1PsyNsJuvPyIz+DwFuCtBdtvPpm/LMXVkBJbdFvQYCDpccYT56qq5BGniXWlE81n2qk1sdXfZebnw==",
+ "dev": true,
+ "dependencies": {
+ "@jest/test-result": "^27.4.6",
+ "graceful-fs": "^4.2.4",
+ "jest-haste-map": "^27.4.6",
+ "jest-runtime": "^27.4.6"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/@jest/test-sequencer/node_modules/@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "dependencies": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/@jest/test-sequencer/node_modules/@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "dependencies": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "node_modules/@jest/test-sequencer/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/@jest/test-sequencer/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/@jest/test-sequencer/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@jest/test-sequencer/node_modules/jest-haste-map": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.4.6.tgz",
+ "integrity": "sha512-0tNpgxg7BKurZeFkIOvGCkbmOHbLFf4LUQOxrQSMjvrQaQe3l6E8x6jYC1NuWkGo5WDdbr8FEzUxV2+LWNawKQ==",
+ "dev": true,
+ "dependencies": {
+ "@jest/types": "^27.4.2",
+ "@types/graceful-fs": "^4.1.2",
+ "@types/node": "*",
+ "anymatch": "^3.0.3",
+ "fb-watchman": "^2.0.0",
+ "graceful-fs": "^4.2.4",
+ "jest-regex-util": "^27.4.0",
+ "jest-serializer": "^27.4.0",
+ "jest-util": "^27.4.2",
+ "jest-worker": "^27.4.6",
+ "micromatch": "^4.0.4",
+ "walker": "^1.0.7"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ },
+ "optionalDependencies": {
+ "fsevents": "^2.3.2"
+ }
+ },
+ "node_modules/@jest/test-sequencer/node_modules/jest-regex-util": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.4.0.tgz",
+ "integrity": "sha512-WeCpMpNnqJYMQoOjm1nTtsgbR4XHAk1u00qDoNBQoykM280+/TmgA5Qh5giC1ecy6a5d4hbSsHzpBtu5yvlbEg==",
+ "dev": true,
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/@jest/test-sequencer/node_modules/jest-serializer": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.4.0.tgz",
+ "integrity": "sha512-RDhpcn5f1JYTX2pvJAGDcnsNTnsV9bjYPU8xcV+xPwOXnUPOQwf4ZEuiU6G9H1UztH+OapMgu/ckEVwO87PwnQ==",
+ "dev": true,
+ "dependencies": {
+ "@types/node": "*",
+ "graceful-fs": "^4.2.4"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/@jest/test-sequencer/node_modules/jest-util": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.4.2.tgz",
+ "integrity": "sha512-YuxxpXU6nlMan9qyLuxHaMMOzXAl5aGZWCSzben5DhLHemYQxCc4YK+4L3ZrCutT8GPQ+ui9k5D8rUJoDioMnA==",
+ "dev": true,
+ "dependencies": {
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.4",
+ "picomatch": "^2.2.3"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/@jest/test-sequencer/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@jest/transform": {
+ "version": "26.6.2",
+ "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-26.6.2.tgz",
+ "integrity": "sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==",
+ "dev": true,
+ "dependencies": {
+ "@babel/core": "^7.1.0",
+ "@jest/types": "^26.6.2",
+ "babel-plugin-istanbul": "^6.0.0",
+ "chalk": "^4.0.0",
+ "convert-source-map": "^1.4.0",
+ "fast-json-stable-stringify": "^2.0.0",
+ "graceful-fs": "^4.2.4",
+ "jest-haste-map": "^26.6.2",
+ "jest-regex-util": "^26.0.0",
+ "jest-util": "^26.6.2",
+ "micromatch": "^4.0.2",
+ "pirates": "^4.0.1",
+ "slash": "^3.0.0",
+ "source-map": "^0.6.1",
+ "write-file-atomic": "^3.0.0"
+ },
+ "engines": {
+ "node": ">= 10.14.2"
+ }
+ },
+ "node_modules/@jest/transform/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/@jest/transform/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/@jest/transform/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@jest/transform/node_modules/source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/@jest/transform/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@jest/types": {
+ "version": "26.6.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz",
+ "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==",
+ "dev": true,
+ "dependencies": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^15.0.0",
+ "chalk": "^4.0.0"
+ },
+ "engines": {
+ "node": ">= 10.14.2"
+ }
+ },
+ "node_modules/@jest/types/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/@jest/types/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/@jest/types/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@jest/types/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@mdx-js/loader": {
+ "version": "1.6.22",
+ "resolved": "https://registry.npmjs.org/@mdx-js/loader/-/loader-1.6.22.tgz",
+ "integrity": "sha512-9CjGwy595NaxAYp0hF9B/A0lH6C8Rms97e2JS9d3jVUtILn6pT5i5IV965ra3lIWc7Rs1GG1tBdVF7dCowYe6Q==",
+ "dev": true,
+ "dependencies": {
+ "@mdx-js/mdx": "1.6.22",
+ "@mdx-js/react": "1.6.22",
+ "loader-utils": "2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/@mdx-js/loader/node_modules/loader-utils": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz",
+ "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==",
+ "dev": true,
+ "dependencies": {
+ "big.js": "^5.2.2",
+ "emojis-list": "^3.0.0",
+ "json5": "^2.1.2"
+ },
+ "engines": {
+ "node": ">=8.9.0"
+ }
+ },
+ "node_modules/@mdx-js/mdx": {
+ "version": "1.6.22",
+ "resolved": "https://registry.npmjs.org/@mdx-js/mdx/-/mdx-1.6.22.tgz",
+ "integrity": "sha512-AMxuLxPz2j5/6TpF/XSdKpQP1NlG0z11dFOlq+2IP/lSgl11GY8ji6S/rgsViN/L0BDvHvUMruRb7ub+24LUYA==",
+ "dev": true,
+ "dependencies": {
+ "@babel/core": "7.12.9",
+ "@babel/plugin-syntax-jsx": "7.12.1",
+ "@babel/plugin-syntax-object-rest-spread": "7.8.3",
+ "@mdx-js/util": "1.6.22",
+ "babel-plugin-apply-mdx-type-prop": "1.6.22",
+ "babel-plugin-extract-import-names": "1.6.22",
+ "camelcase-css": "2.0.1",
+ "detab": "2.0.4",
+ "hast-util-raw": "6.0.1",
+ "lodash.uniq": "4.5.0",
+ "mdast-util-to-hast": "10.0.1",
+ "remark-footnotes": "2.0.0",
+ "remark-mdx": "1.6.22",
+ "remark-parse": "8.0.3",
+ "remark-squeeze-paragraphs": "4.0.0",
+ "style-to-object": "0.3.0",
+ "unified": "9.2.0",
+ "unist-builder": "2.0.3",
+ "unist-util-visit": "2.0.3"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/@mdx-js/mdx/node_modules/@babel/core": {
+ "version": "7.12.9",
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.12.9.tgz",
+ "integrity": "sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==",
+ "dev": true,
+ "dependencies": {
+ "@babel/code-frame": "^7.10.4",
+ "@babel/generator": "^7.12.5",
+ "@babel/helper-module-transforms": "^7.12.1",
+ "@babel/helpers": "^7.12.5",
+ "@babel/parser": "^7.12.7",
+ "@babel/template": "^7.12.7",
+ "@babel/traverse": "^7.12.9",
+ "@babel/types": "^7.12.7",
+ "convert-source-map": "^1.7.0",
+ "debug": "^4.1.0",
+ "gensync": "^1.0.0-beta.1",
+ "json5": "^2.1.2",
+ "lodash": "^4.17.19",
+ "resolve": "^1.3.2",
+ "semver": "^5.4.1",
+ "source-map": "^0.5.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/babel"
+ }
+ },
+ "node_modules/@mdx-js/mdx/node_modules/@babel/plugin-syntax-jsx": {
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.1.tgz",
+ "integrity": "sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.10.4"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@mdx-js/mdx/node_modules/bail": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/bail/-/bail-1.0.5.tgz",
+ "integrity": "sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==",
+ "dev": true,
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/@mdx-js/mdx/node_modules/ccount": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/ccount/-/ccount-1.1.0.tgz",
+ "integrity": "sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==",
+ "dev": true,
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/@mdx-js/mdx/node_modules/is-plain-obj": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz",
+ "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@mdx-js/mdx/node_modules/remark-footnotes": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/remark-footnotes/-/remark-footnotes-2.0.0.tgz",
+ "integrity": "sha512-3Clt8ZMH75Ayjp9q4CorNeyjwIxHFcTkaektplKGl2A1jNGEUey8cKL0ZC5vJwfcD5GFGsNLImLG/NGzWIzoMQ==",
+ "dev": true,
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/@mdx-js/mdx/node_modules/remark-parse": {
+ "version": "8.0.3",
+ "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-8.0.3.tgz",
+ "integrity": "sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q==",
+ "dev": true,
+ "dependencies": {
+ "ccount": "^1.0.0",
+ "collapse-white-space": "^1.0.2",
+ "is-alphabetical": "^1.0.0",
+ "is-decimal": "^1.0.0",
+ "is-whitespace-character": "^1.0.0",
+ "is-word-character": "^1.0.0",
+ "markdown-escapes": "^1.0.0",
+ "parse-entities": "^2.0.0",
+ "repeat-string": "^1.5.4",
+ "state-toggle": "^1.0.0",
+ "trim": "0.0.1",
+ "trim-trailing-lines": "^1.0.0",
+ "unherit": "^1.0.4",
+ "unist-util-remove-position": "^2.0.0",
+ "vfile-location": "^3.0.0",
+ "xtend": "^4.0.1"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/@mdx-js/mdx/node_modules/semver": {
+ "version": "5.7.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
+ "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
+ "dev": true,
+ "bin": {
+ "semver": "bin/semver"
+ }
+ },
+ "node_modules/@mdx-js/mdx/node_modules/trough": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/trough/-/trough-1.0.5.tgz",
+ "integrity": "sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==",
+ "dev": true,
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/@mdx-js/mdx/node_modules/unified": {
+ "version": "9.2.0",
+ "resolved": "https://registry.npmjs.org/unified/-/unified-9.2.0.tgz",
+ "integrity": "sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==",
+ "dev": true,
+ "dependencies": {
+ "bail": "^1.0.0",
+ "extend": "^3.0.0",
+ "is-buffer": "^2.0.0",
+ "is-plain-obj": "^2.0.0",
+ "trough": "^1.0.0",
+ "vfile": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/@mdx-js/mdx/node_modules/unist-util-visit": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz",
+ "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==",
+ "dev": true,
+ "dependencies": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0",
+ "unist-util-visit-parents": "^3.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/@mdx-js/mdx/node_modules/unist-util-visit-parents": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz",
+ "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==",
+ "dev": true,
+ "dependencies": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/@mdx-js/react": {
+ "version": "1.6.22",
+ "resolved": "https://registry.npmjs.org/@mdx-js/react/-/react-1.6.22.tgz",
+ "integrity": "sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==",
+ "dev": true,
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ },
+ "peerDependencies": {
+ "react": "^16.13.1 || ^17.0.0"
+ }
+ },
+ "node_modules/@mdx-js/util": {
+ "version": "1.6.22",
+ "resolved": "https://registry.npmjs.org/@mdx-js/util/-/util-1.6.22.tgz",
+ "integrity": "sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA==",
+ "dev": true,
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/@mrmlnc/readdir-enhanced": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz",
+ "integrity": "sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==",
+ "dev": true,
+ "dependencies": {
+ "call-me-maybe": "^1.0.1",
+ "glob-to-regexp": "^0.3.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/@mrmlnc/readdir-enhanced/node_modules/glob-to-regexp": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz",
+ "integrity": "sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs=",
+ "dev": true
+ },
+ "node_modules/@nodelib/fs.scandir": {
+ "version": "2.1.5",
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
+ "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
+ "dev": true,
+ "dependencies": {
+ "@nodelib/fs.stat": "2.0.5",
+ "run-parallel": "^1.1.9"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/@nodelib/fs.stat": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
+ "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
+ "dev": true,
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/@nodelib/fs.walk": {
+ "version": "1.2.8",
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
+ "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
+ "dev": true,
+ "dependencies": {
+ "@nodelib/fs.scandir": "2.1.5",
+ "fastq": "^1.6.0"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/@npmcli/fs": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-1.1.0.tgz",
+ "integrity": "sha512-VhP1qZLXcrXRIaPoqb4YA55JQxLNF3jNR4T55IdOJa3+IFJKNYHtPvtXx8slmeMavj37vCzCfrqQM1vWLsYKLA==",
+ "dev": true,
+ "dependencies": {
+ "@gar/promisify": "^1.0.1",
+ "semver": "^7.3.5"
+ },
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || >=16"
+ }
+ },
+ "node_modules/@npmcli/fs/node_modules/semver": {
+ "version": "7.3.5",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz",
+ "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==",
+ "dev": true,
+ "dependencies": {
+ "lru-cache": "^6.0.0"
+ },
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/@npmcli/move-file": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz",
+ "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==",
+ "dev": true,
+ "dependencies": {
+ "mkdirp": "^1.0.4",
+ "rimraf": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/@pmmmwh/react-refresh-webpack-plugin": {
+ "version": "0.5.4",
+ "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.4.tgz",
+ "integrity": "sha512-zZbZeHQDnoTlt2AF+diQT0wsSXpvWiaIOZwBRdltNFhG1+I3ozyaw7U/nBiUwyJ0D+zwdXp0E3bWOl38Ag2BMw==",
+ "dev": true,
+ "dependencies": {
+ "ansi-html-community": "^0.0.8",
+ "common-path-prefix": "^3.0.0",
+ "core-js-pure": "^3.8.1",
+ "error-stack-parser": "^2.0.6",
+ "find-up": "^5.0.0",
+ "html-entities": "^2.1.0",
+ "loader-utils": "^2.0.0",
+ "schema-utils": "^3.0.0",
+ "source-map": "^0.7.3"
+ },
+ "engines": {
+ "node": ">= 10.13"
+ },
+ "peerDependencies": {
+ "@types/webpack": "4.x || 5.x",
+ "react-refresh": ">=0.10.0 <1.0.0",
+ "sockjs-client": "^1.4.0",
+ "type-fest": ">=0.17.0 <3.0.0",
+ "webpack": ">=4.43.0 <6.0.0",
+ "webpack-dev-server": "3.x || 4.x",
+ "webpack-hot-middleware": "2.x",
+ "webpack-plugin-serve": "0.x || 1.x"
+ },
+ "peerDependenciesMeta": {
+ "@types/webpack": {
+ "optional": true
+ },
+ "sockjs-client": {
+ "optional": true
+ },
+ "type-fest": {
+ "optional": true
+ },
+ "webpack-dev-server": {
+ "optional": true
+ },
+ "webpack-hot-middleware": {
+ "optional": true
+ },
+ "webpack-plugin-serve": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/source-map": {
+ "version": "0.7.3",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz",
+ "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==",
+ "dev": true,
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/@popperjs/core": {
+ "version": "2.11.2",
+ "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.2.tgz",
+ "integrity": "sha512-92FRmppjjqz29VMJ2dn+xdyXZBrMlE42AV6Kq6BwjWV7CNUW1hs2FtxSNLQE+gJhaZ6AAmYuO9y8dshhcBl7vA==",
+ "dev": true,
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/popperjs"
+ }
+ },
+ "node_modules/@rollup/plugin-typescript": {
+ "version": "8.2.5",
+ "resolved": "https://registry.npmjs.org/@rollup/plugin-typescript/-/plugin-typescript-8.2.5.tgz",
+ "integrity": "sha512-QL/LvDol/PAGB2O0S7/+q2HpSUNodpw7z6nGn9BfoVCPOZ0r4EALrojFU29Bkoi2Hr2jgTocTejJ5GGWZfOxbQ==",
+ "dev": true,
+ "dependencies": {
+ "@rollup/pluginutils": "^3.1.0",
+ "resolve": "^1.17.0"
+ },
+ "engines": {
+ "node": ">=8.0.0"
+ },
+ "peerDependencies": {
+ "rollup": "^2.14.0",
+ "tslib": "*",
+ "typescript": ">=3.7.0"
+ }
+ },
+ "node_modules/@rollup/pluginutils": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz",
+ "integrity": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==",
+ "dev": true,
+ "dependencies": {
+ "@types/estree": "0.0.39",
+ "estree-walker": "^1.0.1",
+ "picomatch": "^2.2.2"
+ },
+ "engines": {
+ "node": ">= 8.0.0"
+ },
+ "peerDependencies": {
+ "rollup": "^1.20.0||^2.0.0"
+ }
+ },
+ "node_modules/@sinonjs/commons": {
+ "version": "1.8.3",
+ "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz",
+ "integrity": "sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==",
+ "dev": true,
+ "dependencies": {
+ "type-detect": "4.0.8"
+ }
+ },
+ "node_modules/@sinonjs/fake-timers": {
+ "version": "8.1.0",
+ "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz",
+ "integrity": "sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==",
+ "dev": true,
+ "dependencies": {
+ "@sinonjs/commons": "^1.7.0"
+ }
+ },
+ "node_modules/@storybook/addon-actions": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/addon-actions/-/addon-actions-6.4.9.tgz",
+ "integrity": "sha512-L1N66p/vr+wPUBfrH3qffjNAcWSS/wvuL370T7cWxALA9LLA8yY9U2EpITc5btuCC5QOxApCeyHkFnrBhNa94g==",
+ "dev": true,
+ "dependencies": {
+ "@storybook/addons": "6.4.9",
+ "@storybook/api": "6.4.9",
+ "@storybook/components": "6.4.9",
+ "@storybook/core-events": "6.4.9",
+ "@storybook/csf": "0.0.2--canary.87bc651.0",
+ "@storybook/theming": "6.4.9",
+ "core-js": "^3.8.2",
+ "fast-deep-equal": "^3.1.3",
+ "global": "^4.4.0",
+ "lodash": "^4.17.21",
+ "polished": "^4.0.5",
+ "prop-types": "^15.7.2",
+ "react-inspector": "^5.1.0",
+ "regenerator-runtime": "^0.13.7",
+ "telejson": "^5.3.2",
+ "ts-dedent": "^2.0.0",
+ "util-deprecate": "^1.0.2",
+ "uuid-browser": "^3.1.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0"
+ },
+ "peerDependenciesMeta": {
+ "react": {
+ "optional": true
+ },
+ "react-dom": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@storybook/addon-backgrounds": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/addon-backgrounds/-/addon-backgrounds-6.4.9.tgz",
+ "integrity": "sha512-/jqUZvk+x8TpDedyFnJamSYC91w/e8prj42xtgLG4+yBlb0UmewX7BAq9i/lhowhUjuLKaOX9E8E0AHftg8L6A==",
+ "dev": true,
+ "dependencies": {
+ "@storybook/addons": "6.4.9",
+ "@storybook/api": "6.4.9",
+ "@storybook/client-logger": "6.4.9",
+ "@storybook/components": "6.4.9",
+ "@storybook/core-events": "6.4.9",
+ "@storybook/csf": "0.0.2--canary.87bc651.0",
+ "@storybook/theming": "6.4.9",
+ "core-js": "^3.8.2",
+ "global": "^4.4.0",
+ "memoizerific": "^1.11.3",
+ "regenerator-runtime": "^0.13.7",
+ "ts-dedent": "^2.0.0",
+ "util-deprecate": "^1.0.2"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0"
+ },
+ "peerDependenciesMeta": {
+ "react": {
+ "optional": true
+ },
+ "react-dom": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@storybook/addon-controls": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/addon-controls/-/addon-controls-6.4.9.tgz",
+ "integrity": "sha512-2eqtiYugCAOw8MCv0HOfjaZRQ4lHydMYoKIFy/QOv6/mjcJeG9dF01dA30n3miErQ18BaVyAB5+7rrmuqMwXVA==",
+ "dev": true,
+ "dependencies": {
+ "@storybook/addons": "6.4.9",
+ "@storybook/api": "6.4.9",
+ "@storybook/client-logger": "6.4.9",
+ "@storybook/components": "6.4.9",
+ "@storybook/core-common": "6.4.9",
+ "@storybook/csf": "0.0.2--canary.87bc651.0",
+ "@storybook/node-logger": "6.4.9",
+ "@storybook/store": "6.4.9",
+ "@storybook/theming": "6.4.9",
+ "core-js": "^3.8.2",
+ "lodash": "^4.17.21",
+ "ts-dedent": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0"
+ },
+ "peerDependenciesMeta": {
+ "react": {
+ "optional": true
+ },
+ "react-dom": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@storybook/addon-docs": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/addon-docs/-/addon-docs-6.4.9.tgz",
+ "integrity": "sha512-sJvnbp6Z+e7B1+vDE8gZVhCg1eNotIa7bx9LYd1Y2QwJ4PEv9hE2YxnzmWt3NZJGtrn4gdGaMCk7pmksugHi7g==",
+ "dev": true,
+ "dependencies": {
+ "@babel/core": "^7.12.10",
+ "@babel/generator": "^7.12.11",
+ "@babel/parser": "^7.12.11",
+ "@babel/plugin-transform-react-jsx": "^7.12.12",
+ "@babel/preset-env": "^7.12.11",
+ "@jest/transform": "^26.6.2",
+ "@mdx-js/loader": "^1.6.22",
+ "@mdx-js/mdx": "^1.6.22",
+ "@mdx-js/react": "^1.6.22",
+ "@storybook/addons": "6.4.9",
+ "@storybook/api": "6.4.9",
+ "@storybook/builder-webpack4": "6.4.9",
+ "@storybook/client-logger": "6.4.9",
+ "@storybook/components": "6.4.9",
+ "@storybook/core": "6.4.9",
+ "@storybook/core-events": "6.4.9",
+ "@storybook/csf": "0.0.2--canary.87bc651.0",
+ "@storybook/csf-tools": "6.4.9",
+ "@storybook/node-logger": "6.4.9",
+ "@storybook/postinstall": "6.4.9",
+ "@storybook/preview-web": "6.4.9",
+ "@storybook/source-loader": "6.4.9",
+ "@storybook/store": "6.4.9",
+ "@storybook/theming": "6.4.9",
+ "acorn": "^7.4.1",
+ "acorn-jsx": "^5.3.1",
+ "acorn-walk": "^7.2.0",
+ "core-js": "^3.8.2",
+ "doctrine": "^3.0.0",
+ "escodegen": "^2.0.0",
+ "fast-deep-equal": "^3.1.3",
+ "global": "^4.4.0",
+ "html-tags": "^3.1.0",
+ "js-string-escape": "^1.0.1",
+ "loader-utils": "^2.0.0",
+ "lodash": "^4.17.21",
+ "nanoid": "^3.1.23",
+ "p-limit": "^3.1.0",
+ "prettier": "^2.2.1",
+ "prop-types": "^15.7.2",
+ "react-element-to-jsx-string": "^14.3.4",
+ "regenerator-runtime": "^0.13.7",
+ "remark-external-links": "^8.0.0",
+ "remark-slug": "^6.0.0",
+ "ts-dedent": "^2.0.0",
+ "util-deprecate": "^1.0.2"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "@storybook/angular": "6.4.9",
+ "@storybook/html": "6.4.9",
+ "@storybook/react": "6.4.9",
+ "@storybook/vue": "6.4.9",
+ "@storybook/vue3": "6.4.9",
+ "@storybook/web-components": "6.4.9",
+ "lit": "^2.0.0",
+ "lit-html": "^1.4.1 || ^2.0.0",
+ "react": "^16.8.0 || ^17.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0",
+ "svelte": "^3.31.2",
+ "sveltedoc-parser": "^4.1.0",
+ "vue": "^2.6.10 || ^3.0.0",
+ "webpack": "*"
+ },
+ "peerDependenciesMeta": {
+ "@storybook/angular": {
+ "optional": true
+ },
+ "@storybook/html": {
+ "optional": true
+ },
+ "@storybook/react": {
+ "optional": true
+ },
+ "@storybook/vue": {
+ "optional": true
+ },
+ "@storybook/vue3": {
+ "optional": true
+ },
+ "@storybook/web-components": {
+ "optional": true
+ },
+ "lit": {
+ "optional": true
+ },
+ "lit-html": {
+ "optional": true
+ },
+ "react": {
+ "optional": true
+ },
+ "react-dom": {
+ "optional": true
+ },
+ "svelte": {
+ "optional": true
+ },
+ "sveltedoc-parser": {
+ "optional": true
+ },
+ "vue": {
+ "optional": true
+ },
+ "webpack": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@storybook/addon-essentials": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/addon-essentials/-/addon-essentials-6.4.9.tgz",
+ "integrity": "sha512-3YOtGJsmS7A4aIaclnEqTgO+fUEX63pHq2CvqIKPGLVPgLmn6MnEhkkV2j30MfAkoe3oynLqFBvkCdYwzwJxNQ==",
+ "dev": true,
+ "dependencies": {
+ "@storybook/addon-actions": "6.4.9",
+ "@storybook/addon-backgrounds": "6.4.9",
+ "@storybook/addon-controls": "6.4.9",
+ "@storybook/addon-docs": "6.4.9",
+ "@storybook/addon-measure": "6.4.9",
+ "@storybook/addon-outline": "6.4.9",
+ "@storybook/addon-toolbars": "6.4.9",
+ "@storybook/addon-viewport": "6.4.9",
+ "@storybook/addons": "6.4.9",
+ "@storybook/api": "6.4.9",
+ "@storybook/node-logger": "6.4.9",
+ "core-js": "^3.8.2",
+ "regenerator-runtime": "^0.13.7",
+ "ts-dedent": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.9.6",
+ "@storybook/vue": "6.4.9",
+ "@storybook/web-components": "6.4.9",
+ "babel-loader": "^8.0.0",
+ "lit-html": "^1.4.1 || ^2.0.0-rc.3",
+ "react": "^16.8.0 || ^17.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0",
+ "webpack": "*"
+ },
+ "peerDependenciesMeta": {
+ "@storybook/vue": {
+ "optional": true
+ },
+ "@storybook/web-components": {
+ "optional": true
+ },
+ "lit-html": {
+ "optional": true
+ },
+ "react": {
+ "optional": true
+ },
+ "react-dom": {
+ "optional": true
+ },
+ "webpack": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@storybook/addon-links": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/addon-links/-/addon-links-6.4.9.tgz",
+ "integrity": "sha512-xXFz/bmw67u4+zPVqJdiJkCtGrO2wAhcsLc4QSTc2+Xgkvkk7ulcRguiujAy5bfinhPa6U1vpJrrg5GFGV+trA==",
+ "dev": true,
+ "dependencies": {
+ "@storybook/addons": "6.4.9",
+ "@storybook/client-logger": "6.4.9",
+ "@storybook/core-events": "6.4.9",
+ "@storybook/csf": "0.0.2--canary.87bc651.0",
+ "@storybook/router": "6.4.9",
+ "@types/qs": "^6.9.5",
+ "core-js": "^3.8.2",
+ "global": "^4.4.0",
+ "prop-types": "^15.7.2",
+ "qs": "^6.10.0",
+ "regenerator-runtime": "^0.13.7",
+ "ts-dedent": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0"
+ },
+ "peerDependenciesMeta": {
+ "react": {
+ "optional": true
+ },
+ "react-dom": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@storybook/addon-measure": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/addon-measure/-/addon-measure-6.4.9.tgz",
+ "integrity": "sha512-c7r98kZM0i7ZrNf0BZe/12BwTYGDLUnmyNcLhugquvezkm32R1SaqXF8K1bGkWkSuzBvt49lAXXPPGUh+ByWEQ==",
+ "dev": true,
+ "dependencies": {
+ "@storybook/addons": "6.4.9",
+ "@storybook/api": "6.4.9",
+ "@storybook/client-logger": "6.4.9",
+ "@storybook/components": "6.4.9",
+ "@storybook/core-events": "6.4.9",
+ "@storybook/csf": "0.0.2--canary.87bc651.0",
+ "core-js": "^3.8.2",
+ "global": "^4.4.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0"
+ },
+ "peerDependenciesMeta": {
+ "react": {
+ "optional": true
+ },
+ "react-dom": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@storybook/addon-outline": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/addon-outline/-/addon-outline-6.4.9.tgz",
+ "integrity": "sha512-pXXfqisYfdoxyJuSogNBOUiqIugv0sZGYDJXuwEgEDZ27bZD6fCQmsK3mqSmRzAfXwDqTKvWuu2SRbEk/cRRGA==",
+ "dev": true,
+ "dependencies": {
+ "@storybook/addons": "6.4.9",
+ "@storybook/api": "6.4.9",
+ "@storybook/client-logger": "6.4.9",
+ "@storybook/components": "6.4.9",
+ "@storybook/core-events": "6.4.9",
+ "@storybook/csf": "0.0.2--canary.87bc651.0",
+ "core-js": "^3.8.2",
+ "global": "^4.4.0",
+ "regenerator-runtime": "^0.13.7",
+ "ts-dedent": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0"
+ },
+ "peerDependenciesMeta": {
+ "react": {
+ "optional": true
+ },
+ "react-dom": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@storybook/addon-toolbars": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/addon-toolbars/-/addon-toolbars-6.4.9.tgz",
+ "integrity": "sha512-fep1lLDcyaQJdR8rC/lJTamiiJ8Ilio580d9aXDM651b7uHqhxM0dJvM9hObBU8dOj/R3hIAszgTvdTzYlL2cQ==",
+ "dev": true,
+ "dependencies": {
+ "@storybook/addons": "6.4.9",
+ "@storybook/api": "6.4.9",
+ "@storybook/components": "6.4.9",
+ "@storybook/theming": "6.4.9",
+ "core-js": "^3.8.2",
+ "regenerator-runtime": "^0.13.7"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0"
+ },
+ "peerDependenciesMeta": {
+ "react": {
+ "optional": true
+ },
+ "react-dom": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@storybook/addon-viewport": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/addon-viewport/-/addon-viewport-6.4.9.tgz",
+ "integrity": "sha512-iqDcfbOG3TClybDEIi+hOKq8PDKNldyAiqBeak4AfGp+lIZ4NvhHgS5RCNylMVKpOUMbGIeWiSFxQ/oglEN1zA==",
+ "dev": true,
+ "dependencies": {
+ "@storybook/addons": "6.4.9",
+ "@storybook/api": "6.4.9",
+ "@storybook/client-logger": "6.4.9",
+ "@storybook/components": "6.4.9",
+ "@storybook/core-events": "6.4.9",
+ "@storybook/theming": "6.4.9",
+ "core-js": "^3.8.2",
+ "global": "^4.4.0",
+ "memoizerific": "^1.11.3",
+ "prop-types": "^15.7.2",
+ "regenerator-runtime": "^0.13.7"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0"
+ },
+ "peerDependenciesMeta": {
+ "react": {
+ "optional": true
+ },
+ "react-dom": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@storybook/addons": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/addons/-/addons-6.4.9.tgz",
+ "integrity": "sha512-y+oiN2zd+pbRWwkf6aQj4tPDFn+rQkrv7fiVoMxsYub+kKyZ3CNOuTSJH+A1A+eBL6DmzocChUyO6jvZFuh6Dg==",
+ "dev": true,
+ "dependencies": {
+ "@storybook/api": "6.4.9",
+ "@storybook/channels": "6.4.9",
+ "@storybook/client-logger": "6.4.9",
+ "@storybook/core-events": "6.4.9",
+ "@storybook/csf": "0.0.2--canary.87bc651.0",
+ "@storybook/router": "6.4.9",
+ "@storybook/theming": "6.4.9",
+ "@types/webpack-env": "^1.16.0",
+ "core-js": "^3.8.2",
+ "global": "^4.4.0",
+ "regenerator-runtime": "^0.13.7"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0"
+ }
+ },
+ "node_modules/@storybook/api": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/api/-/api-6.4.9.tgz",
+ "integrity": "sha512-U+YKcDQg8xal9sE5eSMXB9vcqk8fD1pSyewyAjjbsW5hV0B3L3i4u7z/EAD9Ujbnor+Cvxq+XGvp+Qnc5Gd40A==",
+ "dev": true,
+ "dependencies": {
+ "@storybook/channels": "6.4.9",
+ "@storybook/client-logger": "6.4.9",
+ "@storybook/core-events": "6.4.9",
+ "@storybook/csf": "0.0.2--canary.87bc651.0",
+ "@storybook/router": "6.4.9",
+ "@storybook/semver": "^7.3.2",
+ "@storybook/theming": "6.4.9",
+ "core-js": "^3.8.2",
+ "fast-deep-equal": "^3.1.3",
+ "global": "^4.4.0",
+ "lodash": "^4.17.21",
+ "memoizerific": "^1.11.3",
+ "regenerator-runtime": "^0.13.7",
+ "store2": "^2.12.0",
+ "telejson": "^5.3.2",
+ "ts-dedent": "^2.0.0",
+ "util-deprecate": "^1.0.2"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0"
+ }
+ },
+ "node_modules/@storybook/builder-webpack4": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/builder-webpack4/-/builder-webpack4-6.4.9.tgz",
+ "integrity": "sha512-nDbXDd3A8dvalCiuBZuUT6/GQP14+fuxTj5g+AppCgV1gLO45lXWtX75Hc0IbZrIQte6tDg5xeFQamZSLPMcGg==",
+ "dev": true,
+ "dependencies": {
+ "@babel/core": "^7.12.10",
+ "@babel/plugin-proposal-class-properties": "^7.12.1",
+ "@babel/plugin-proposal-decorators": "^7.12.12",
+ "@babel/plugin-proposal-export-default-from": "^7.12.1",
+ "@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
+ "@babel/plugin-proposal-object-rest-spread": "^7.12.1",
+ "@babel/plugin-proposal-optional-chaining": "^7.12.7",
+ "@babel/plugin-proposal-private-methods": "^7.12.1",
+ "@babel/plugin-syntax-dynamic-import": "^7.8.3",
+ "@babel/plugin-transform-arrow-functions": "^7.12.1",
+ "@babel/plugin-transform-block-scoping": "^7.12.12",
+ "@babel/plugin-transform-classes": "^7.12.1",
+ "@babel/plugin-transform-destructuring": "^7.12.1",
+ "@babel/plugin-transform-for-of": "^7.12.1",
+ "@babel/plugin-transform-parameters": "^7.12.1",
+ "@babel/plugin-transform-shorthand-properties": "^7.12.1",
+ "@babel/plugin-transform-spread": "^7.12.1",
+ "@babel/plugin-transform-template-literals": "^7.12.1",
+ "@babel/preset-env": "^7.12.11",
+ "@babel/preset-react": "^7.12.10",
+ "@babel/preset-typescript": "^7.12.7",
+ "@storybook/addons": "6.4.9",
+ "@storybook/api": "6.4.9",
+ "@storybook/channel-postmessage": "6.4.9",
+ "@storybook/channels": "6.4.9",
+ "@storybook/client-api": "6.4.9",
+ "@storybook/client-logger": "6.4.9",
+ "@storybook/components": "6.4.9",
+ "@storybook/core-common": "6.4.9",
+ "@storybook/core-events": "6.4.9",
+ "@storybook/node-logger": "6.4.9",
+ "@storybook/preview-web": "6.4.9",
+ "@storybook/router": "6.4.9",
+ "@storybook/semver": "^7.3.2",
+ "@storybook/store": "6.4.9",
+ "@storybook/theming": "6.4.9",
+ "@storybook/ui": "6.4.9",
+ "@types/node": "^14.0.10",
+ "@types/webpack": "^4.41.26",
+ "autoprefixer": "^9.8.6",
+ "babel-loader": "^8.0.0",
+ "babel-plugin-macros": "^2.8.0",
+ "babel-plugin-polyfill-corejs3": "^0.1.0",
+ "case-sensitive-paths-webpack-plugin": "^2.3.0",
+ "core-js": "^3.8.2",
+ "css-loader": "^3.6.0",
+ "file-loader": "^6.2.0",
+ "find-up": "^5.0.0",
+ "fork-ts-checker-webpack-plugin": "^4.1.6",
+ "glob": "^7.1.6",
+ "glob-promise": "^3.4.0",
+ "global": "^4.4.0",
+ "html-webpack-plugin": "^4.0.0",
+ "pnp-webpack-plugin": "1.6.4",
+ "postcss": "^7.0.36",
+ "postcss-flexbugs-fixes": "^4.2.1",
+ "postcss-loader": "^4.2.0",
+ "raw-loader": "^4.0.2",
+ "react-dev-utils": "^11.0.4",
+ "stable": "^0.1.8",
+ "style-loader": "^1.3.0",
+ "terser-webpack-plugin": "^4.2.3",
+ "ts-dedent": "^2.0.0",
+ "url-loader": "^4.1.1",
+ "util-deprecate": "^1.0.2",
+ "webpack": "4",
+ "webpack-dev-middleware": "^3.7.3",
+ "webpack-filter-warnings-plugin": "^1.2.1",
+ "webpack-hot-middleware": "^2.25.1",
+ "webpack-virtual-modules": "^0.2.2"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0"
+ },
+ "peerDependenciesMeta": {
+ "typescript": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@storybook/builder-webpack4/node_modules/@babel/helper-define-polyfill-provider": {
+ "version": "0.1.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.1.5.tgz",
+ "integrity": "sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-compilation-targets": "^7.13.0",
+ "@babel/helper-module-imports": "^7.12.13",
+ "@babel/helper-plugin-utils": "^7.13.0",
+ "@babel/traverse": "^7.13.0",
+ "debug": "^4.1.1",
+ "lodash.debounce": "^4.0.8",
+ "resolve": "^1.14.2",
+ "semver": "^6.1.2"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.4.0-0"
+ }
+ },
+ "node_modules/@storybook/builder-webpack4/node_modules/@types/node": {
+ "version": "14.18.5",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.5.tgz",
+ "integrity": "sha512-LMy+vDDcQR48EZdEx5wRX1q/sEl6NdGuHXPnfeL8ixkwCOSZ2qnIyIZmcCbdX0MeRqHhAcHmX+haCbrS8Run+A==",
+ "dev": true
+ },
+ "node_modules/@storybook/builder-webpack4/node_modules/babel-plugin-polyfill-corejs3": {
+ "version": "0.1.7",
+ "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.1.7.tgz",
+ "integrity": "sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-define-polyfill-provider": "^0.1.5",
+ "core-js-compat": "^3.8.1"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@storybook/channel-postmessage": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/channel-postmessage/-/channel-postmessage-6.4.9.tgz",
+ "integrity": "sha512-0Oif4e6/oORv4oc2tHhIRts9faE/ID9BETn4uqIUWSl2CX1wYpKYDm04rEg3M6WvSzsi+6fzoSFvkr9xC5Ns2w==",
+ "dev": true,
+ "dependencies": {
+ "@storybook/channels": "6.4.9",
+ "@storybook/client-logger": "6.4.9",
+ "@storybook/core-events": "6.4.9",
+ "core-js": "^3.8.2",
+ "global": "^4.4.0",
+ "qs": "^6.10.0",
+ "telejson": "^5.3.2"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ }
+ },
+ "node_modules/@storybook/channel-websocket": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/channel-websocket/-/channel-websocket-6.4.9.tgz",
+ "integrity": "sha512-R1O5yrNtN+dIAghqMXUqoaH7XWBcrKi5miVRn7QelKG3qZwPL8HQa7gIPc/b6S2D6hD3kQdSuv/zTIjjMg7wyw==",
+ "dev": true,
+ "dependencies": {
+ "@storybook/channels": "6.4.9",
+ "@storybook/client-logger": "6.4.9",
+ "core-js": "^3.8.2",
+ "global": "^4.4.0",
+ "telejson": "^5.3.2"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ }
+ },
+ "node_modules/@storybook/channels": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-6.4.9.tgz",
+ "integrity": "sha512-DNW1qDg+1WFS2aMdGh658WJXh8xBXliO5KAn0786DKcWCsKjfsPPQg/QCHczHK0+s5SZyzQT5aOBb4kTRHELQA==",
+ "dev": true,
+ "dependencies": {
+ "core-js": "^3.8.2",
+ "ts-dedent": "^2.0.0",
+ "util-deprecate": "^1.0.2"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ }
+ },
+ "node_modules/@storybook/client-api": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/client-api/-/client-api-6.4.9.tgz",
+ "integrity": "sha512-1IljlTr+ea2pIr6oiPhygORtccOdEb7SqaVzWDfLCHOhUnJ2Ka5UY9ADqDa35jvSSdRdynfk9Yl5/msY0yY1yg==",
+ "dev": true,
+ "dependencies": {
+ "@storybook/addons": "6.4.9",
+ "@storybook/channel-postmessage": "6.4.9",
+ "@storybook/channels": "6.4.9",
+ "@storybook/client-logger": "6.4.9",
+ "@storybook/core-events": "6.4.9",
+ "@storybook/csf": "0.0.2--canary.87bc651.0",
+ "@storybook/store": "6.4.9",
+ "@types/qs": "^6.9.5",
+ "@types/webpack-env": "^1.16.0",
+ "core-js": "^3.8.2",
+ "fast-deep-equal": "^3.1.3",
+ "global": "^4.4.0",
+ "lodash": "^4.17.21",
+ "memoizerific": "^1.11.3",
+ "qs": "^6.10.0",
+ "regenerator-runtime": "^0.13.7",
+ "store2": "^2.12.0",
+ "synchronous-promise": "^2.0.15",
+ "ts-dedent": "^2.0.0",
+ "util-deprecate": "^1.0.2"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0"
+ }
+ },
+ "node_modules/@storybook/client-logger": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-6.4.9.tgz",
+ "integrity": "sha512-BVagmmHcuKDZ/XROADfN3tiolaDW2qG0iLmDhyV1gONnbGE6X5Qm19Jt2VYu3LvjKF1zMPSWm4mz7HtgdwKbuQ==",
+ "dev": true,
+ "dependencies": {
+ "core-js": "^3.8.2",
+ "global": "^4.4.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ }
+ },
+ "node_modules/@storybook/components": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/components/-/components-6.4.9.tgz",
+ "integrity": "sha512-uOUR97S6kjptkMCh15pYNM1vAqFXtpyneuonmBco5vADJb3ds0n2a8NeVd+myIbhIXn55x0OHKiSwBH/u7swCQ==",
+ "dev": true,
+ "dependencies": {
+ "@popperjs/core": "^2.6.0",
+ "@storybook/client-logger": "6.4.9",
+ "@storybook/csf": "0.0.2--canary.87bc651.0",
+ "@storybook/theming": "6.4.9",
+ "@types/color-convert": "^2.0.0",
+ "@types/overlayscrollbars": "^1.12.0",
+ "@types/react-syntax-highlighter": "11.0.5",
+ "color-convert": "^2.0.1",
+ "core-js": "^3.8.2",
+ "fast-deep-equal": "^3.1.3",
+ "global": "^4.4.0",
+ "lodash": "^4.17.21",
+ "markdown-to-jsx": "^7.1.3",
+ "memoizerific": "^1.11.3",
+ "overlayscrollbars": "^1.13.1",
+ "polished": "^4.0.5",
+ "prop-types": "^15.7.2",
+ "react-colorful": "^5.1.2",
+ "react-popper-tooltip": "^3.1.1",
+ "react-syntax-highlighter": "^13.5.3",
+ "react-textarea-autosize": "^8.3.0",
+ "regenerator-runtime": "^0.13.7",
+ "ts-dedent": "^2.0.0",
+ "util-deprecate": "^1.0.2"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0"
+ }
+ },
+ "node_modules/@storybook/core": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/core/-/core-6.4.9.tgz",
+ "integrity": "sha512-Mzhiy13loMSd3PCygK3t7HIT3X3L35iZmbe6+2xVbVmc/3ypCmq4PQALCUoDOGk37Ifrhop6bo6sl4s9YQ6UFw==",
+ "dev": true,
+ "dependencies": {
+ "@storybook/core-client": "6.4.9",
+ "@storybook/core-server": "6.4.9"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "@storybook/builder-webpack5": "6.4.9",
+ "react": "^16.8.0 || ^17.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0",
+ "webpack": "*"
+ },
+ "peerDependenciesMeta": {
+ "@storybook/builder-webpack5": {
+ "optional": true
+ },
+ "typescript": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@storybook/core-client": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/core-client/-/core-client-6.4.9.tgz",
+ "integrity": "sha512-LZSpTtvBlpcn+Ifh0jQXlm/8wva2zZ2v13yxYIxX6tAwQvmB54U0N4VdGVmtkiszEp7TQUAzA8Pcyp4GWE+UMA==",
+ "dev": true,
+ "dependencies": {
+ "@storybook/addons": "6.4.9",
+ "@storybook/channel-postmessage": "6.4.9",
+ "@storybook/channel-websocket": "6.4.9",
+ "@storybook/client-api": "6.4.9",
+ "@storybook/client-logger": "6.4.9",
+ "@storybook/core-events": "6.4.9",
+ "@storybook/csf": "0.0.2--canary.87bc651.0",
+ "@storybook/preview-web": "6.4.9",
+ "@storybook/store": "6.4.9",
+ "@storybook/ui": "6.4.9",
+ "airbnb-js-shims": "^2.2.1",
+ "ansi-to-html": "^0.6.11",
+ "core-js": "^3.8.2",
+ "global": "^4.4.0",
+ "lodash": "^4.17.21",
+ "qs": "^6.10.0",
+ "regenerator-runtime": "^0.13.7",
+ "ts-dedent": "^2.0.0",
+ "unfetch": "^4.2.0",
+ "util-deprecate": "^1.0.2"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0",
+ "webpack": "*"
+ },
+ "peerDependenciesMeta": {
+ "typescript": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@storybook/core-common": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/core-common/-/core-common-6.4.9.tgz",
+ "integrity": "sha512-wVHRfUGnj/Tv8nGjv128NDQ5Zp6c63rSXd1lYLzfZPTJmGOz4rpPPez2IZSnnDwbAWeqUSMekFVZPj4v6yuujQ==",
+ "dev": true,
+ "dependencies": {
+ "@babel/core": "^7.12.10",
+ "@babel/plugin-proposal-class-properties": "^7.12.1",
+ "@babel/plugin-proposal-decorators": "^7.12.12",
+ "@babel/plugin-proposal-export-default-from": "^7.12.1",
+ "@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
+ "@babel/plugin-proposal-object-rest-spread": "^7.12.1",
+ "@babel/plugin-proposal-optional-chaining": "^7.12.7",
+ "@babel/plugin-proposal-private-methods": "^7.12.1",
+ "@babel/plugin-syntax-dynamic-import": "^7.8.3",
+ "@babel/plugin-transform-arrow-functions": "^7.12.1",
+ "@babel/plugin-transform-block-scoping": "^7.12.12",
+ "@babel/plugin-transform-classes": "^7.12.1",
+ "@babel/plugin-transform-destructuring": "^7.12.1",
+ "@babel/plugin-transform-for-of": "^7.12.1",
+ "@babel/plugin-transform-parameters": "^7.12.1",
+ "@babel/plugin-transform-shorthand-properties": "^7.12.1",
+ "@babel/plugin-transform-spread": "^7.12.1",
+ "@babel/preset-env": "^7.12.11",
+ "@babel/preset-react": "^7.12.10",
+ "@babel/preset-typescript": "^7.12.7",
+ "@babel/register": "^7.12.1",
+ "@storybook/node-logger": "6.4.9",
+ "@storybook/semver": "^7.3.2",
+ "@types/node": "^14.0.10",
+ "@types/pretty-hrtime": "^1.0.0",
+ "babel-loader": "^8.0.0",
+ "babel-plugin-macros": "^3.0.1",
+ "babel-plugin-polyfill-corejs3": "^0.1.0",
+ "chalk": "^4.1.0",
+ "core-js": "^3.8.2",
+ "express": "^4.17.1",
+ "file-system-cache": "^1.0.5",
+ "find-up": "^5.0.0",
+ "fork-ts-checker-webpack-plugin": "^6.0.4",
+ "fs-extra": "^9.0.1",
+ "glob": "^7.1.6",
+ "handlebars": "^4.7.7",
+ "interpret": "^2.2.0",
+ "json5": "^2.1.3",
+ "lazy-universal-dotenv": "^3.0.1",
+ "picomatch": "^2.3.0",
+ "pkg-dir": "^5.0.0",
+ "pretty-hrtime": "^1.0.3",
+ "resolve-from": "^5.0.0",
+ "slash": "^3.0.0",
+ "telejson": "^5.3.2",
+ "ts-dedent": "^2.0.0",
+ "util-deprecate": "^1.0.2",
+ "webpack": "4"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0"
+ },
+ "peerDependenciesMeta": {
+ "typescript": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@storybook/core-common/node_modules/@babel/helper-define-polyfill-provider": {
+ "version": "0.1.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.1.5.tgz",
+ "integrity": "sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-compilation-targets": "^7.13.0",
+ "@babel/helper-module-imports": "^7.12.13",
+ "@babel/helper-plugin-utils": "^7.13.0",
+ "@babel/traverse": "^7.13.0",
+ "debug": "^4.1.1",
+ "lodash.debounce": "^4.0.8",
+ "resolve": "^1.14.2",
+ "semver": "^6.1.2"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.4.0-0"
+ }
+ },
+ "node_modules/@storybook/core-common/node_modules/@types/node": {
+ "version": "14.18.5",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.5.tgz",
+ "integrity": "sha512-LMy+vDDcQR48EZdEx5wRX1q/sEl6NdGuHXPnfeL8ixkwCOSZ2qnIyIZmcCbdX0MeRqHhAcHmX+haCbrS8Run+A==",
+ "dev": true
+ },
+ "node_modules/@storybook/core-common/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/@storybook/core-common/node_modules/babel-plugin-macros": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz",
+ "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==",
+ "dev": true,
+ "dependencies": {
+ "@babel/runtime": "^7.12.5",
+ "cosmiconfig": "^7.0.0",
+ "resolve": "^1.19.0"
+ },
+ "engines": {
+ "node": ">=10",
+ "npm": ">=6"
+ }
+ },
+ "node_modules/@storybook/core-common/node_modules/babel-plugin-macros/node_modules/cosmiconfig": {
+ "version": "7.0.1",
+ "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz",
+ "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==",
+ "dev": true,
+ "dependencies": {
+ "@types/parse-json": "^4.0.0",
+ "import-fresh": "^3.2.1",
+ "parse-json": "^5.0.0",
+ "path-type": "^4.0.0",
+ "yaml": "^1.10.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/@storybook/core-common/node_modules/babel-plugin-polyfill-corejs3": {
+ "version": "0.1.7",
+ "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.1.7.tgz",
+ "integrity": "sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-define-polyfill-provider": "^0.1.5",
+ "core-js-compat": "^3.8.1"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@storybook/core-common/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/@storybook/core-common/node_modules/fork-ts-checker-webpack-plugin": {
+ "version": "6.5.0",
+ "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.0.tgz",
+ "integrity": "sha512-cS178Y+xxtIjEUorcHddKS7yCMlrDPV31mt47blKKRfMd70Kxu5xruAFE2o9sDY6wVC5deuob/u/alD04YYHnw==",
+ "dev": true,
+ "dependencies": {
+ "@babel/code-frame": "^7.8.3",
+ "@types/json-schema": "^7.0.5",
+ "chalk": "^4.1.0",
+ "chokidar": "^3.4.2",
+ "cosmiconfig": "^6.0.0",
+ "deepmerge": "^4.2.2",
+ "fs-extra": "^9.0.0",
+ "glob": "^7.1.6",
+ "memfs": "^3.1.2",
+ "minimatch": "^3.0.4",
+ "schema-utils": "2.7.0",
+ "semver": "^7.3.2",
+ "tapable": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=10",
+ "yarn": ">=1.0.0"
+ },
+ "peerDependencies": {
+ "eslint": ">= 6",
+ "typescript": ">= 2.7",
+ "vue-template-compiler": "*",
+ "webpack": ">= 4"
+ },
+ "peerDependenciesMeta": {
+ "eslint": {
+ "optional": true
+ },
+ "vue-template-compiler": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@storybook/core-common/node_modules/fork-ts-checker-webpack-plugin/node_modules/semver": {
+ "version": "7.3.5",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz",
+ "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==",
+ "dev": true,
+ "dependencies": {
+ "lru-cache": "^6.0.0"
+ },
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/@storybook/core-common/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@storybook/core-common/node_modules/schema-utils": {
+ "version": "2.7.0",
+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz",
+ "integrity": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==",
+ "dev": true,
+ "dependencies": {
+ "@types/json-schema": "^7.0.4",
+ "ajv": "^6.12.2",
+ "ajv-keywords": "^3.4.1"
+ },
+ "engines": {
+ "node": ">= 8.9.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ }
+ },
+ "node_modules/@storybook/core-common/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@storybook/core-events": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-6.4.9.tgz",
+ "integrity": "sha512-YhU2zJr6wzvh5naYYuy/0UKNJ/SaXu73sIr0Tx60ur3bL08XkRg7eZ9vBhNBTlAa35oZqI0iiGCh0ljiX7yEVQ==",
+ "dev": true,
+ "dependencies": {
+ "core-js": "^3.8.2"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ }
+ },
+ "node_modules/@storybook/core-server": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/core-server/-/core-server-6.4.9.tgz",
+ "integrity": "sha512-Ht/e17/SNW9BgdvBsnKmqNrlZ6CpHeVsClEUnauMov8I5rxjvKBVmI/UsbJJIy6H6VLiL/RwrA3RvLoAoZE8dA==",
+ "dev": true,
+ "dependencies": {
+ "@discoveryjs/json-ext": "^0.5.3",
+ "@storybook/builder-webpack4": "6.4.9",
+ "@storybook/core-client": "6.4.9",
+ "@storybook/core-common": "6.4.9",
+ "@storybook/core-events": "6.4.9",
+ "@storybook/csf": "0.0.2--canary.87bc651.0",
+ "@storybook/csf-tools": "6.4.9",
+ "@storybook/manager-webpack4": "6.4.9",
+ "@storybook/node-logger": "6.4.9",
+ "@storybook/semver": "^7.3.2",
+ "@storybook/store": "6.4.9",
+ "@types/node": "^14.0.10",
+ "@types/node-fetch": "^2.5.7",
+ "@types/pretty-hrtime": "^1.0.0",
+ "@types/webpack": "^4.41.26",
+ "better-opn": "^2.1.1",
+ "boxen": "^5.1.2",
+ "chalk": "^4.1.0",
+ "cli-table3": "0.6.0",
+ "commander": "^6.2.1",
+ "compression": "^1.7.4",
+ "core-js": "^3.8.2",
+ "cpy": "^8.1.2",
+ "detect-port": "^1.3.0",
+ "express": "^4.17.1",
+ "file-system-cache": "^1.0.5",
+ "fs-extra": "^9.0.1",
+ "globby": "^11.0.2",
+ "ip": "^1.1.5",
+ "lodash": "^4.17.21",
+ "node-fetch": "^2.6.1",
+ "pretty-hrtime": "^1.0.3",
+ "prompts": "^2.4.0",
+ "regenerator-runtime": "^0.13.7",
+ "serve-favicon": "^2.5.0",
+ "slash": "^3.0.0",
+ "telejson": "^5.3.3",
+ "ts-dedent": "^2.0.0",
+ "util-deprecate": "^1.0.2",
+ "watchpack": "^2.2.0",
+ "webpack": "4",
+ "ws": "^8.2.3"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "@storybook/builder-webpack5": "6.4.9",
+ "@storybook/manager-webpack5": "6.4.9",
+ "react": "^16.8.0 || ^17.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@storybook/builder-webpack5": {
+ "optional": true
+ },
+ "@storybook/manager-webpack5": {
+ "optional": true
+ },
+ "typescript": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@storybook/core-server/node_modules/@types/node": {
+ "version": "14.18.5",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.5.tgz",
+ "integrity": "sha512-LMy+vDDcQR48EZdEx5wRX1q/sEl6NdGuHXPnfeL8ixkwCOSZ2qnIyIZmcCbdX0MeRqHhAcHmX+haCbrS8Run+A==",
+ "dev": true
+ },
+ "node_modules/@storybook/core-server/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/@storybook/core-server/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/@storybook/core-server/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@storybook/core-server/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@storybook/core-server/node_modules/ws": {
+ "version": "8.4.0",
+ "resolved": "https://registry.npmjs.org/ws/-/ws-8.4.0.tgz",
+ "integrity": "sha512-IHVsKe2pjajSUIl4KYMQOdlyliovpEPquKkqbwswulszzI7r0SfQrxnXdWAEqOlDCLrVSJzo+O1hAwdog2sKSQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=10.0.0"
+ },
+ "peerDependencies": {
+ "bufferutil": "^4.0.1",
+ "utf-8-validate": "^5.0.2"
+ },
+ "peerDependenciesMeta": {
+ "bufferutil": {
+ "optional": true
+ },
+ "utf-8-validate": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@storybook/csf": {
+ "version": "0.0.2--canary.87bc651.0",
+ "resolved": "https://registry.npmjs.org/@storybook/csf/-/csf-0.0.2--canary.87bc651.0.tgz",
+ "integrity": "sha512-ajk1Uxa+rBpFQHKrCcTmJyQBXZ5slfwHVEaKlkuFaW77it8RgbPJp/ccna3sgoi8oZ7FkkOyvv1Ve4SmwFqRqw==",
+ "dev": true,
+ "dependencies": {
+ "lodash": "^4.17.15"
+ }
+ },
+ "node_modules/@storybook/csf-tools": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/csf-tools/-/csf-tools-6.4.9.tgz",
+ "integrity": "sha512-zbgsx9vY5XOA9bBmyw+KyuRspFXAjEJ6I3d/6Z3G1kNBeOEj9i3DT7O99Rd/THfL/3mWl8DJ/7CJVPk1ZYxunA==",
+ "dev": true,
+ "dependencies": {
+ "@babel/core": "^7.12.10",
+ "@babel/generator": "^7.12.11",
+ "@babel/parser": "^7.12.11",
+ "@babel/plugin-transform-react-jsx": "^7.12.12",
+ "@babel/preset-env": "^7.12.11",
+ "@babel/traverse": "^7.12.11",
+ "@babel/types": "^7.12.11",
+ "@mdx-js/mdx": "^1.6.22",
+ "@storybook/csf": "0.0.2--canary.87bc651.0",
+ "core-js": "^3.8.2",
+ "fs-extra": "^9.0.1",
+ "global": "^4.4.0",
+ "js-string-escape": "^1.0.1",
+ "lodash": "^4.17.21",
+ "prettier": "^2.2.1",
+ "regenerator-runtime": "^0.13.7",
+ "ts-dedent": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ }
+ },
+ "node_modules/@storybook/manager-webpack4": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/manager-webpack4/-/manager-webpack4-6.4.9.tgz",
+ "integrity": "sha512-828x3rqMuzBNSb13MSDo2nchY7fuywh+8+Vk+fn00MvBYJjogd5RQFx5ocwhHzmwXbnESIerlGwe81AzMck8ng==",
+ "dev": true,
+ "dependencies": {
+ "@babel/core": "^7.12.10",
+ "@babel/plugin-transform-template-literals": "^7.12.1",
+ "@babel/preset-react": "^7.12.10",
+ "@storybook/addons": "6.4.9",
+ "@storybook/core-client": "6.4.9",
+ "@storybook/core-common": "6.4.9",
+ "@storybook/node-logger": "6.4.9",
+ "@storybook/theming": "6.4.9",
+ "@storybook/ui": "6.4.9",
+ "@types/node": "^14.0.10",
+ "@types/webpack": "^4.41.26",
+ "babel-loader": "^8.0.0",
+ "case-sensitive-paths-webpack-plugin": "^2.3.0",
+ "chalk": "^4.1.0",
+ "core-js": "^3.8.2",
+ "css-loader": "^3.6.0",
+ "express": "^4.17.1",
+ "file-loader": "^6.2.0",
+ "file-system-cache": "^1.0.5",
+ "find-up": "^5.0.0",
+ "fs-extra": "^9.0.1",
+ "html-webpack-plugin": "^4.0.0",
+ "node-fetch": "^2.6.1",
+ "pnp-webpack-plugin": "1.6.4",
+ "read-pkg-up": "^7.0.1",
+ "regenerator-runtime": "^0.13.7",
+ "resolve-from": "^5.0.0",
+ "style-loader": "^1.3.0",
+ "telejson": "^5.3.2",
+ "terser-webpack-plugin": "^4.2.3",
+ "ts-dedent": "^2.0.0",
+ "url-loader": "^4.1.1",
+ "util-deprecate": "^1.0.2",
+ "webpack": "4",
+ "webpack-dev-middleware": "^3.7.3",
+ "webpack-virtual-modules": "^0.2.2"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0"
+ },
+ "peerDependenciesMeta": {
+ "typescript": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@storybook/manager-webpack4/node_modules/@types/node": {
+ "version": "14.18.5",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.5.tgz",
+ "integrity": "sha512-LMy+vDDcQR48EZdEx5wRX1q/sEl6NdGuHXPnfeL8ixkwCOSZ2qnIyIZmcCbdX0MeRqHhAcHmX+haCbrS8Run+A==",
+ "dev": true
+ },
+ "node_modules/@storybook/manager-webpack4/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/@storybook/manager-webpack4/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/@storybook/manager-webpack4/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@storybook/manager-webpack4/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@storybook/node-logger": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-6.4.9.tgz",
+ "integrity": "sha512-giil8dA85poH+nslKHIS9tSxp4MP4ensOec7el6GwKiqzAQXITrm3b7gw61ETj39jAQeLIcQYGHLq1oqQo4/YQ==",
+ "dev": true,
+ "dependencies": {
+ "@types/npmlog": "^4.1.2",
+ "chalk": "^4.1.0",
+ "core-js": "^3.8.2",
+ "npmlog": "^5.0.1",
+ "pretty-hrtime": "^1.0.3"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ }
+ },
+ "node_modules/@storybook/node-logger/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/@storybook/node-logger/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/@storybook/node-logger/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@storybook/node-logger/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@storybook/postinstall": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/postinstall/-/postinstall-6.4.9.tgz",
+ "integrity": "sha512-LNI5ku+Q4DI7DD3Y8liYVgGPasp8r/5gzNLSJZ1ad03OW/mASjhSsOKp2eD8Jxud2T5JDe3/yKH9u/LP6SepBQ==",
+ "dev": true,
+ "dependencies": {
+ "core-js": "^3.8.2"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ }
+ },
+ "node_modules/@storybook/preview-web": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/preview-web/-/preview-web-6.4.9.tgz",
+ "integrity": "sha512-fMB/akK14oc+4FBkeVJBtZQdxikOraXQSVn6zoVR93WVDR7JVeV+oz8rxjuK3n6ZEWN87iKH946k4jLoZ95tdw==",
+ "dev": true,
+ "dependencies": {
+ "@storybook/addons": "6.4.9",
+ "@storybook/channel-postmessage": "6.4.9",
+ "@storybook/client-logger": "6.4.9",
+ "@storybook/core-events": "6.4.9",
+ "@storybook/csf": "0.0.2--canary.87bc651.0",
+ "@storybook/store": "6.4.9",
+ "ansi-to-html": "^0.6.11",
+ "core-js": "^3.8.2",
+ "global": "^4.4.0",
+ "lodash": "^4.17.21",
+ "qs": "^6.10.0",
+ "regenerator-runtime": "^0.13.7",
+ "synchronous-promise": "^2.0.15",
+ "ts-dedent": "^2.0.0",
+ "unfetch": "^4.2.0",
+ "util-deprecate": "^1.0.2"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0"
+ }
+ },
+ "node_modules/@storybook/react": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/react/-/react-6.4.9.tgz",
+ "integrity": "sha512-GVbCeii2dIKSD66pAdn9bY7mRoOzBE6ll+vRDW1n00FIvGfckmoIZtQHpurca7iNTAoufv8+t0L9i7IItdrUuw==",
+ "dev": true,
+ "dependencies": {
+ "@babel/preset-flow": "^7.12.1",
+ "@babel/preset-react": "^7.12.10",
+ "@pmmmwh/react-refresh-webpack-plugin": "^0.5.1",
+ "@storybook/addons": "6.4.9",
+ "@storybook/core": "6.4.9",
+ "@storybook/core-common": "6.4.9",
+ "@storybook/csf": "0.0.2--canary.87bc651.0",
+ "@storybook/node-logger": "6.4.9",
+ "@storybook/react-docgen-typescript-plugin": "1.0.2-canary.253f8c1.0",
+ "@storybook/semver": "^7.3.2",
+ "@storybook/store": "6.4.9",
+ "@types/webpack-env": "^1.16.0",
+ "babel-plugin-add-react-displayname": "^0.0.5",
+ "babel-plugin-named-asset-import": "^0.3.1",
+ "babel-plugin-react-docgen": "^4.2.1",
+ "core-js": "^3.8.2",
+ "global": "^4.4.0",
+ "lodash": "^4.17.21",
+ "prop-types": "^15.7.2",
+ "react-dev-utils": "^11.0.4",
+ "react-refresh": "^0.10.0",
+ "read-pkg-up": "^7.0.1",
+ "regenerator-runtime": "^0.13.7",
+ "ts-dedent": "^2.0.0",
+ "webpack": "4"
+ },
+ "bin": {
+ "build-storybook": "bin/build.js",
+ "start-storybook": "bin/index.js",
+ "storybook-server": "bin/index.js"
+ },
+ "engines": {
+ "node": ">=10.13.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.11.5",
+ "react": "^16.8.0 || ^17.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@babel/core": {
+ "optional": true
+ },
+ "typescript": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@storybook/react-docgen-typescript-plugin": {
+ "version": "1.0.2-canary.253f8c1.0",
+ "resolved": "https://registry.npmjs.org/@storybook/react-docgen-typescript-plugin/-/react-docgen-typescript-plugin-1.0.2-canary.253f8c1.0.tgz",
+ "integrity": "sha512-mmoRG/rNzAiTbh+vGP8d57dfcR2aP+5/Ll03KKFyfy5FqWFm/Gh7u27ikx1I3LmVMI8n6jh5SdWMkMKon7/tDw==",
+ "dev": true,
+ "dependencies": {
+ "debug": "^4.1.1",
+ "endent": "^2.0.1",
+ "find-cache-dir": "^3.3.1",
+ "flat-cache": "^3.0.4",
+ "micromatch": "^4.0.2",
+ "react-docgen-typescript": "^2.0.0",
+ "tslib": "^2.0.0"
+ },
+ "peerDependencies": {
+ "typescript": ">= 3.x",
+ "webpack": ">= 4"
+ }
+ },
+ "node_modules/@storybook/react-docgen-typescript-plugin/node_modules/find-cache-dir": {
+ "version": "3.3.2",
+ "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz",
+ "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==",
+ "dev": true,
+ "dependencies": {
+ "commondir": "^1.0.1",
+ "make-dir": "^3.0.2",
+ "pkg-dir": "^4.1.0"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/avajs/find-cache-dir?sponsor=1"
+ }
+ },
+ "node_modules/@storybook/react-docgen-typescript-plugin/node_modules/find-up": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
+ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
+ "dev": true,
+ "dependencies": {
+ "locate-path": "^5.0.0",
+ "path-exists": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@storybook/react-docgen-typescript-plugin/node_modules/locate-path": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
+ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
+ "dev": true,
+ "dependencies": {
+ "p-locate": "^4.1.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@storybook/react-docgen-typescript-plugin/node_modules/make-dir": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
+ "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
+ "dev": true,
+ "dependencies": {
+ "semver": "^6.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/@storybook/react-docgen-typescript-plugin/node_modules/p-limit": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
+ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
+ "dev": true,
+ "dependencies": {
+ "p-try": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/@storybook/react-docgen-typescript-plugin/node_modules/p-locate": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
+ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
+ "dev": true,
+ "dependencies": {
+ "p-limit": "^2.2.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@storybook/react-docgen-typescript-plugin/node_modules/pkg-dir": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
+ "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
+ "dev": true,
+ "dependencies": {
+ "find-up": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@storybook/router": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/router/-/router-6.4.9.tgz",
+ "integrity": "sha512-GT2KtVHo/mBjxDBFB5ZtVJVf8vC+3p5kRlQC4jao68caVp7H24ikPOkcY54VnQwwe4A1aXpGbJXUyTisEPFlhQ==",
+ "dev": true,
+ "dependencies": {
+ "@storybook/client-logger": "6.4.9",
+ "core-js": "^3.8.2",
+ "fast-deep-equal": "^3.1.3",
+ "global": "^4.4.0",
+ "history": "5.0.0",
+ "lodash": "^4.17.21",
+ "memoizerific": "^1.11.3",
+ "qs": "^6.10.0",
+ "react-router": "^6.0.0",
+ "react-router-dom": "^6.0.0",
+ "ts-dedent": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0"
+ }
+ },
+ "node_modules/@storybook/semver": {
+ "version": "7.3.2",
+ "resolved": "https://registry.npmjs.org/@storybook/semver/-/semver-7.3.2.tgz",
+ "integrity": "sha512-SWeszlsiPsMI0Ps0jVNtH64cI5c0UF3f7KgjVKJoNP30crQ6wUSddY2hsdeczZXEKVJGEn50Q60flcGsQGIcrg==",
+ "dev": true,
+ "dependencies": {
+ "core-js": "^3.6.5",
+ "find-up": "^4.1.0"
+ },
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/@storybook/semver/node_modules/find-up": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
+ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
+ "dev": true,
+ "dependencies": {
+ "locate-path": "^5.0.0",
+ "path-exists": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@storybook/semver/node_modules/locate-path": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
+ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
+ "dev": true,
+ "dependencies": {
+ "p-locate": "^4.1.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@storybook/semver/node_modules/p-limit": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
+ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
+ "dev": true,
+ "dependencies": {
+ "p-try": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/@storybook/semver/node_modules/p-locate": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
+ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
+ "dev": true,
+ "dependencies": {
+ "p-limit": "^2.2.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@storybook/source-loader": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/source-loader/-/source-loader-6.4.9.tgz",
+ "integrity": "sha512-J/Jpcc15hnWa2DB/EZ4gVJvdsY3b3CDIGW/NahuNXk36neS+g4lF3qqVNAEqQ1pPZ0O8gMgazyZPGm0MHwUWlw==",
+ "dev": true,
+ "dependencies": {
+ "@storybook/addons": "6.4.9",
+ "@storybook/client-logger": "6.4.9",
+ "@storybook/csf": "0.0.2--canary.87bc651.0",
+ "core-js": "^3.8.2",
+ "estraverse": "^5.2.0",
+ "global": "^4.4.0",
+ "loader-utils": "^2.0.0",
+ "lodash": "^4.17.21",
+ "prettier": "^2.2.1",
+ "regenerator-runtime": "^0.13.7"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0"
+ }
+ },
+ "node_modules/@storybook/store": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/store/-/store-6.4.9.tgz",
+ "integrity": "sha512-H30KfiM2XyGMJcLaOepCEUsU7S3C/f7t46s6Nhw0lc5w/6HTQc2jGV3GgG3lUAUAzEQoxmmu61w3N2a6eyRzmg==",
+ "dev": true,
+ "dependencies": {
+ "@storybook/addons": "6.4.9",
+ "@storybook/client-logger": "6.4.9",
+ "@storybook/core-events": "6.4.9",
+ "@storybook/csf": "0.0.2--canary.87bc651.0",
+ "core-js": "^3.8.2",
+ "fast-deep-equal": "^3.1.3",
+ "global": "^4.4.0",
+ "lodash": "^4.17.21",
+ "memoizerific": "^1.11.3",
+ "regenerator-runtime": "^0.13.7",
+ "slash": "^3.0.0",
+ "stable": "^0.1.8",
+ "synchronous-promise": "^2.0.15",
+ "ts-dedent": "^2.0.0",
+ "util-deprecate": "^1.0.2"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0"
+ }
+ },
+ "node_modules/@storybook/theming": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-6.4.9.tgz",
+ "integrity": "sha512-Do6GH6nKjxfnBg6djcIYAjss5FW9SRKASKxLYxX2RyWJBpz0m/8GfcGcRyORy0yFTk6jByA3Hs+WFH3GnEbWkw==",
+ "dev": true,
+ "dependencies": {
+ "@emotion/core": "^10.1.1",
+ "@emotion/is-prop-valid": "^0.8.6",
+ "@emotion/styled": "^10.0.27",
+ "@storybook/client-logger": "6.4.9",
+ "core-js": "^3.8.2",
+ "deep-object-diff": "^1.1.0",
+ "emotion-theming": "^10.0.27",
+ "global": "^4.4.0",
+ "memoizerific": "^1.11.3",
+ "polished": "^4.0.5",
+ "resolve-from": "^5.0.0",
+ "ts-dedent": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0"
+ }
+ },
+ "node_modules/@storybook/ui": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/ui/-/ui-6.4.9.tgz",
+ "integrity": "sha512-lJbsaMTH4SyhqUTmt+msSYI6fKSSfOnrzZVu6bQ73+MfRyGKh1ki2Nyhh+w8BiGEIOz02WlEpZC0y11FfgEgXw==",
+ "dev": true,
+ "dependencies": {
+ "@emotion/core": "^10.1.1",
+ "@storybook/addons": "6.4.9",
+ "@storybook/api": "6.4.9",
+ "@storybook/channels": "6.4.9",
+ "@storybook/client-logger": "6.4.9",
+ "@storybook/components": "6.4.9",
+ "@storybook/core-events": "6.4.9",
+ "@storybook/router": "6.4.9",
+ "@storybook/semver": "^7.3.2",
+ "@storybook/theming": "6.4.9",
+ "copy-to-clipboard": "^3.3.1",
+ "core-js": "^3.8.2",
+ "core-js-pure": "^3.8.2",
+ "downshift": "^6.0.15",
+ "emotion-theming": "^10.0.27",
+ "fuse.js": "^3.6.1",
+ "global": "^4.4.0",
+ "lodash": "^4.17.21",
+ "markdown-to-jsx": "^7.1.3",
+ "memoizerific": "^1.11.3",
+ "polished": "^4.0.5",
+ "qs": "^6.10.0",
+ "react-draggable": "^4.4.3",
+ "react-helmet-async": "^1.0.7",
+ "react-sizeme": "^3.0.1",
+ "regenerator-runtime": "^0.13.7",
+ "resolve-from": "^5.0.0",
+ "store2": "^2.12.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0"
+ }
+ },
+ "node_modules/@tootallnate/once": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz",
+ "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==",
+ "dev": true,
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/@types/babel__core": {
+ "version": "7.1.18",
+ "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.18.tgz",
+ "integrity": "sha512-S7unDjm/C7z2A2R9NzfKCK1I+BAALDtxEmsJBwlB3EzNfb929ykjL++1CK9LO++EIp2fQrC8O+BwjKvz6UeDyQ==",
+ "dev": true,
+ "dependencies": {
+ "@babel/parser": "^7.1.0",
+ "@babel/types": "^7.0.0",
+ "@types/babel__generator": "*",
+ "@types/babel__template": "*",
+ "@types/babel__traverse": "*"
+ }
+ },
+ "node_modules/@types/babel__generator": {
+ "version": "7.6.4",
+ "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz",
+ "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==",
+ "dev": true,
+ "dependencies": {
+ "@babel/types": "^7.0.0"
+ }
+ },
+ "node_modules/@types/babel__template": {
+ "version": "7.4.1",
+ "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz",
+ "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==",
+ "dev": true,
+ "dependencies": {
+ "@babel/parser": "^7.1.0",
+ "@babel/types": "^7.0.0"
+ }
+ },
+ "node_modules/@types/babel__traverse": {
+ "version": "7.14.2",
+ "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.14.2.tgz",
+ "integrity": "sha512-K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA==",
+ "dev": true,
+ "dependencies": {
+ "@babel/types": "^7.3.0"
+ }
+ },
+ "node_modules/@types/color-convert": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/@types/color-convert/-/color-convert-2.0.0.tgz",
+ "integrity": "sha512-m7GG7IKKGuJUXvkZ1qqG3ChccdIM/qBBo913z+Xft0nKCX4hAU/IxKwZBU4cpRZ7GS5kV4vOblUkILtSShCPXQ==",
+ "dev": true,
+ "dependencies": {
+ "@types/color-name": "*"
+ }
+ },
+ "node_modules/@types/color-name": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz",
+ "integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==",
+ "dev": true
+ },
+ "node_modules/@types/debug": {
+ "version": "4.1.7",
+ "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.7.tgz",
+ "integrity": "sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg==",
+ "dev": true,
+ "dependencies": {
+ "@types/ms": "*"
+ }
+ },
+ "node_modules/@types/estree": {
+ "version": "0.0.39",
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz",
+ "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==",
+ "dev": true
+ },
+ "node_modules/@types/glob": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz",
+ "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==",
+ "dev": true,
+ "dependencies": {
+ "@types/minimatch": "*",
+ "@types/node": "*"
+ }
+ },
+ "node_modules/@types/graceful-fs": {
+ "version": "4.1.5",
+ "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz",
+ "integrity": "sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==",
+ "dev": true,
+ "dependencies": {
+ "@types/node": "*"
+ }
+ },
+ "node_modules/@types/hast": {
+ "version": "2.3.4",
+ "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.4.tgz",
+ "integrity": "sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==",
+ "dev": true,
+ "dependencies": {
+ "@types/unist": "*"
+ }
+ },
+ "node_modules/@types/html-minifier-terser": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-5.1.2.tgz",
+ "integrity": "sha512-h4lTMgMJctJybDp8CQrxTUiiYmedihHWkjnF/8Pxseu2S6Nlfcy8kwboQ8yejh456rP2yWoEVm1sS/FVsfM48w==",
+ "dev": true
+ },
+ "node_modules/@types/is-function": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/@types/is-function/-/is-function-1.0.1.tgz",
+ "integrity": "sha512-A79HEEiwXTFtfY+Bcbo58M2GRYzCr9itHWzbzHVFNEYCcoU/MMGwYYf721gBrnhpj1s6RGVVha/IgNFnR0Iw/Q==",
+ "dev": true
+ },
+ "node_modules/@types/istanbul-lib-coverage": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz",
+ "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==",
+ "dev": true
+ },
+ "node_modules/@types/istanbul-lib-report": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz",
+ "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==",
+ "dev": true,
+ "dependencies": {
+ "@types/istanbul-lib-coverage": "*"
+ }
+ },
+ "node_modules/@types/istanbul-reports": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz",
+ "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==",
+ "dev": true,
+ "dependencies": {
+ "@types/istanbul-lib-report": "*"
+ }
+ },
+ "node_modules/@types/jest": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/@types/jest/-/jest-27.4.0.tgz",
+ "integrity": "sha512-gHl8XuC1RZ8H2j5sHv/JqsaxXkDDM9iDOgu0Wp8sjs4u/snb2PVehyWXJPr+ORA0RPpgw231mnutWI1+0hgjIQ==",
+ "dev": true,
+ "dependencies": {
+ "jest-diff": "^27.0.0",
+ "pretty-format": "^27.0.0"
+ }
+ },
+ "node_modules/@types/json-schema": {
+ "version": "7.0.9",
+ "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.9.tgz",
+ "integrity": "sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ==",
+ "dev": true
+ },
+ "node_modules/@types/katex": {
+ "version": "0.11.1",
+ "resolved": "https://registry.npmjs.org/@types/katex/-/katex-0.11.1.tgz",
+ "integrity": "sha512-DUlIj2nk0YnJdlWgsFuVKcX27MLW0KbKmGVoUHmFr+74FYYNUDAaj9ZqTADvsbE8rfxuVmSFc7KczYn5Y09ozg==",
+ "dev": true
+ },
+ "node_modules/@types/mdast": {
+ "version": "3.0.10",
+ "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.10.tgz",
+ "integrity": "sha512-W864tg/Osz1+9f4lrGTZpCSO5/z4608eUp19tbozkq2HJK6i3z1kT0H9tlADXuYIb1YYOBByU4Jsqkk75q48qA==",
+ "dev": true,
+ "dependencies": {
+ "@types/unist": "*"
+ }
+ },
+ "node_modules/@types/minimatch": {
+ "version": "3.0.5",
+ "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz",
+ "integrity": "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==",
+ "dev": true
+ },
+ "node_modules/@types/ms": {
+ "version": "0.7.31",
+ "resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.31.tgz",
+ "integrity": "sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==",
+ "dev": true
+ },
+ "node_modules/@types/node": {
+ "version": "17.0.8",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.8.tgz",
+ "integrity": "sha512-YofkM6fGv4gDJq78g4j0mMuGMkZVxZDgtU0JRdx6FgiJDG+0fY0GKVolOV8WqVmEhLCXkQRjwDdKyPxJp/uucg=="
+ },
+ "node_modules/@types/node-fetch": {
+ "version": "2.5.12",
+ "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.5.12.tgz",
+ "integrity": "sha512-MKgC4dlq4kKNa/mYrwpKfzQMB5X3ee5U6fSprkKpToBqBmX4nFZL9cW5jl6sWn+xpRJ7ypWh2yyqqr8UUCstSw==",
+ "dev": true,
+ "dependencies": {
+ "@types/node": "*",
+ "form-data": "^3.0.0"
+ }
+ },
+ "node_modules/@types/normalize-package-data": {
+ "version": "2.4.1",
+ "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz",
+ "integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==",
+ "dev": true
+ },
+ "node_modules/@types/npmlog": {
+ "version": "4.1.4",
+ "resolved": "https://registry.npmjs.org/@types/npmlog/-/npmlog-4.1.4.tgz",
+ "integrity": "sha512-WKG4gTr8przEZBiJ5r3s8ZIAoMXNbOgQ+j/d5O4X3x6kZJRLNvyUJuUK/KoG3+8BaOHPhp2m7WC6JKKeovDSzQ==",
+ "dev": true
+ },
+ "node_modules/@types/overlayscrollbars": {
+ "version": "1.12.1",
+ "resolved": "https://registry.npmjs.org/@types/overlayscrollbars/-/overlayscrollbars-1.12.1.tgz",
+ "integrity": "sha512-V25YHbSoKQN35UasHf0EKD9U2vcmexRSp78qa8UglxFH8H3D+adEa9zGZwrqpH4TdvqeMrgMqVqsLB4woAryrQ==",
+ "dev": true
+ },
+ "node_modules/@types/parse-json": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz",
+ "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==",
+ "dev": true
+ },
+ "node_modules/@types/parse5": {
+ "version": "5.0.3",
+ "resolved": "https://registry.npmjs.org/@types/parse5/-/parse5-5.0.3.tgz",
+ "integrity": "sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw==",
+ "dev": true
+ },
+ "node_modules/@types/prettier": {
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.4.2.tgz",
+ "integrity": "sha512-ekoj4qOQYp7CvjX8ZDBgN86w3MqQhLE1hczEJbEIjgFEumDy+na/4AJAbLXfgEWFNB2pKadM5rPFtuSGMWK7xA==",
+ "dev": true
+ },
+ "node_modules/@types/pretty-hrtime": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/@types/pretty-hrtime/-/pretty-hrtime-1.0.1.tgz",
+ "integrity": "sha512-VjID5MJb1eGKthz2qUerWT8+R4b9N+CHvGCzg9fn4kWZgaF9AhdYikQio3R7wV8YY1NsQKPaCwKz1Yff+aHNUQ==",
+ "dev": true
+ },
+ "node_modules/@types/prop-types": {
+ "version": "15.7.4",
+ "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.4.tgz",
+ "integrity": "sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ==",
+ "dev": true
+ },
+ "node_modules/@types/qs": {
+ "version": "6.9.7",
+ "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz",
+ "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==",
+ "dev": true
+ },
+ "node_modules/@types/react": {
+ "version": "17.0.38",
+ "resolved": "https://registry.npmjs.org/@types/react/-/react-17.0.38.tgz",
+ "integrity": "sha512-SI92X1IA+FMnP3qM5m4QReluXzhcmovhZnLNm3pyeQlooi02qI7sLiepEYqT678uNiyc25XfCqxREFpy3W7YhQ==",
+ "dev": true,
+ "dependencies": {
+ "@types/prop-types": "*",
+ "@types/scheduler": "*",
+ "csstype": "^3.0.2"
+ }
+ },
+ "node_modules/@types/react-syntax-highlighter": {
+ "version": "11.0.5",
+ "resolved": "https://registry.npmjs.org/@types/react-syntax-highlighter/-/react-syntax-highlighter-11.0.5.tgz",
+ "integrity": "sha512-VIOi9i2Oj5XsmWWoB72p3KlZoEbdRAcechJa8Ztebw7bDl2YmR+odxIqhtJGp1q2EozHs02US+gzxJ9nuf56qg==",
+ "dev": true,
+ "dependencies": {
+ "@types/react": "*"
+ }
+ },
+ "node_modules/@types/react/node_modules/csstype": {
+ "version": "3.0.10",
+ "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.10.tgz",
+ "integrity": "sha512-2u44ZG2OcNUO9HDp/Jl8C07x6pU/eTR3ncV91SiK3dhG9TWvRVsCoJw14Ckx5DgWkzGA3waZWO3d7pgqpUI/XA==",
+ "dev": true
+ },
+ "node_modules/@types/scheduler": {
+ "version": "0.16.2",
+ "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz",
+ "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==",
+ "dev": true
+ },
+ "node_modules/@types/source-list-map": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.2.tgz",
+ "integrity": "sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==",
+ "dev": true
+ },
+ "node_modules/@types/stack-utils": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz",
+ "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==",
+ "dev": true
+ },
+ "node_modules/@types/tapable": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.8.tgz",
+ "integrity": "sha512-ipixuVrh2OdNmauvtT51o3d8z12p6LtFW9in7U79der/kwejjdNchQC5UMn5u/KxNoM7VHHOs/l8KS8uHxhODQ==",
+ "dev": true
+ },
+ "node_modules/@types/uglify-js": {
+ "version": "3.13.1",
+ "resolved": "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.13.1.tgz",
+ "integrity": "sha512-O3MmRAk6ZuAKa9CHgg0Pr0+lUOqoMLpc9AS4R8ano2auvsg7IE8syF3Xh/NPr26TWklxYcqoEEFdzLLs1fV9PQ==",
+ "dev": true,
+ "dependencies": {
+ "source-map": "^0.6.1"
+ }
+ },
+ "node_modules/@types/uglify-js/node_modules/source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/@types/unist": {
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.6.tgz",
+ "integrity": "sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ=="
+ },
+ "node_modules/@types/webpack": {
+ "version": "4.41.32",
+ "resolved": "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.32.tgz",
+ "integrity": "sha512-cb+0ioil/7oz5//7tZUSwbrSAN/NWHrQylz5cW8G0dWTcF/g+/dSdMlKVZspBYuMAN1+WnwHrkxiRrLcwd0Heg==",
+ "dev": true,
+ "dependencies": {
+ "@types/node": "*",
+ "@types/tapable": "^1",
+ "@types/uglify-js": "*",
+ "@types/webpack-sources": "*",
+ "anymatch": "^3.0.0",
+ "source-map": "^0.6.0"
+ }
+ },
+ "node_modules/@types/webpack-env": {
+ "version": "1.16.3",
+ "resolved": "https://registry.npmjs.org/@types/webpack-env/-/webpack-env-1.16.3.tgz",
+ "integrity": "sha512-9gtOPPkfyNoEqCQgx4qJKkuNm/x0R2hKR7fdl7zvTJyHnIisuE/LfvXOsYWL0o3qq6uiBnKZNNNzi3l0y/X+xw==",
+ "dev": true
+ },
+ "node_modules/@types/webpack-sources": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-3.2.0.tgz",
+ "integrity": "sha512-Ft7YH3lEVRQ6ls8k4Ff1oB4jN6oy/XmU6tQISKdhfh+1mR+viZFphS6WL0IrtDOzvefmJg5a0s7ZQoRXwqTEFg==",
+ "dev": true,
+ "dependencies": {
+ "@types/node": "*",
+ "@types/source-list-map": "*",
+ "source-map": "^0.7.3"
+ }
+ },
+ "node_modules/@types/webpack-sources/node_modules/source-map": {
+ "version": "0.7.3",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz",
+ "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==",
+ "dev": true,
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/@types/webpack/node_modules/source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/@types/yargs": {
+ "version": "15.0.14",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.14.tgz",
+ "integrity": "sha512-yEJzHoxf6SyQGhBhIYGXQDSCkJjB6HohDShto7m8vaKg9Yp0Yn8+71J9eakh2bnPg6BfsH9PRMhiRTZnd4eXGQ==",
+ "dev": true,
+ "dependencies": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "node_modules/@types/yargs-parser": {
+ "version": "20.2.1",
+ "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-20.2.1.tgz",
+ "integrity": "sha512-7tFImggNeNBVMsn0vLrpn1H1uPrUBdnARPTpZoitY37ZrdJREzf7I16tMrlK3hen349gr1NYh8CmZQa7CTG6Aw==",
+ "dev": true
+ },
+ "node_modules/@webassemblyjs/ast": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.9.0.tgz",
+ "integrity": "sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==",
+ "dev": true,
+ "dependencies": {
+ "@webassemblyjs/helper-module-context": "1.9.0",
+ "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
+ "@webassemblyjs/wast-parser": "1.9.0"
+ }
+ },
+ "node_modules/@webassemblyjs/floating-point-hex-parser": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz",
+ "integrity": "sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==",
+ "dev": true
+ },
+ "node_modules/@webassemblyjs/helper-api-error": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz",
+ "integrity": "sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==",
+ "dev": true
+ },
+ "node_modules/@webassemblyjs/helper-buffer": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz",
+ "integrity": "sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==",
+ "dev": true
+ },
+ "node_modules/@webassemblyjs/helper-code-frame": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz",
+ "integrity": "sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==",
+ "dev": true,
+ "dependencies": {
+ "@webassemblyjs/wast-printer": "1.9.0"
+ }
+ },
+ "node_modules/@webassemblyjs/helper-fsm": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz",
+ "integrity": "sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==",
+ "dev": true
+ },
+ "node_modules/@webassemblyjs/helper-module-context": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz",
+ "integrity": "sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==",
+ "dev": true,
+ "dependencies": {
+ "@webassemblyjs/ast": "1.9.0"
+ }
+ },
+ "node_modules/@webassemblyjs/helper-wasm-bytecode": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz",
+ "integrity": "sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==",
+ "dev": true
+ },
+ "node_modules/@webassemblyjs/helper-wasm-section": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz",
+ "integrity": "sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==",
+ "dev": true,
+ "dependencies": {
+ "@webassemblyjs/ast": "1.9.0",
+ "@webassemblyjs/helper-buffer": "1.9.0",
+ "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
+ "@webassemblyjs/wasm-gen": "1.9.0"
+ }
+ },
+ "node_modules/@webassemblyjs/ieee754": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz",
+ "integrity": "sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==",
+ "dev": true,
+ "dependencies": {
+ "@xtuc/ieee754": "^1.2.0"
+ }
+ },
+ "node_modules/@webassemblyjs/leb128": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.9.0.tgz",
+ "integrity": "sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==",
+ "dev": true,
+ "dependencies": {
+ "@xtuc/long": "4.2.2"
+ }
+ },
+ "node_modules/@webassemblyjs/utf8": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.9.0.tgz",
+ "integrity": "sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==",
+ "dev": true
+ },
+ "node_modules/@webassemblyjs/wasm-edit": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz",
+ "integrity": "sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==",
+ "dev": true,
+ "dependencies": {
+ "@webassemblyjs/ast": "1.9.0",
+ "@webassemblyjs/helper-buffer": "1.9.0",
+ "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
+ "@webassemblyjs/helper-wasm-section": "1.9.0",
+ "@webassemblyjs/wasm-gen": "1.9.0",
+ "@webassemblyjs/wasm-opt": "1.9.0",
+ "@webassemblyjs/wasm-parser": "1.9.0",
+ "@webassemblyjs/wast-printer": "1.9.0"
+ }
+ },
+ "node_modules/@webassemblyjs/wasm-gen": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz",
+ "integrity": "sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==",
+ "dev": true,
+ "dependencies": {
+ "@webassemblyjs/ast": "1.9.0",
+ "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
+ "@webassemblyjs/ieee754": "1.9.0",
+ "@webassemblyjs/leb128": "1.9.0",
+ "@webassemblyjs/utf8": "1.9.0"
+ }
+ },
+ "node_modules/@webassemblyjs/wasm-opt": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz",
+ "integrity": "sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==",
+ "dev": true,
+ "dependencies": {
+ "@webassemblyjs/ast": "1.9.0",
+ "@webassemblyjs/helper-buffer": "1.9.0",
+ "@webassemblyjs/wasm-gen": "1.9.0",
+ "@webassemblyjs/wasm-parser": "1.9.0"
+ }
+ },
+ "node_modules/@webassemblyjs/wasm-parser": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz",
+ "integrity": "sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==",
+ "dev": true,
+ "dependencies": {
+ "@webassemblyjs/ast": "1.9.0",
+ "@webassemblyjs/helper-api-error": "1.9.0",
+ "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
+ "@webassemblyjs/ieee754": "1.9.0",
+ "@webassemblyjs/leb128": "1.9.0",
+ "@webassemblyjs/utf8": "1.9.0"
+ }
+ },
+ "node_modules/@webassemblyjs/wast-parser": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz",
+ "integrity": "sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==",
+ "dev": true,
+ "dependencies": {
+ "@webassemblyjs/ast": "1.9.0",
+ "@webassemblyjs/floating-point-hex-parser": "1.9.0",
+ "@webassemblyjs/helper-api-error": "1.9.0",
+ "@webassemblyjs/helper-code-frame": "1.9.0",
+ "@webassemblyjs/helper-fsm": "1.9.0",
+ "@xtuc/long": "4.2.2"
+ }
+ },
+ "node_modules/@webassemblyjs/wast-printer": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz",
+ "integrity": "sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==",
+ "dev": true,
+ "dependencies": {
+ "@webassemblyjs/ast": "1.9.0",
+ "@webassemblyjs/wast-parser": "1.9.0",
+ "@xtuc/long": "4.2.2"
+ }
+ },
+ "node_modules/@xtuc/ieee754": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz",
+ "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==",
+ "dev": true
+ },
+ "node_modules/@xtuc/long": {
+ "version": "4.2.2",
+ "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz",
+ "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==",
+ "dev": true
+ },
+ "node_modules/abab": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz",
+ "integrity": "sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==",
+ "dev": true
+ },
+ "node_modules/accepts": {
+ "version": "1.3.7",
+ "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz",
+ "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==",
+ "dev": true,
+ "dependencies": {
+ "mime-types": "~2.1.24",
+ "negotiator": "0.6.2"
+ },
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/acorn": {
+ "version": "7.4.1",
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz",
+ "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==",
+ "dev": true,
+ "bin": {
+ "acorn": "bin/acorn"
+ },
+ "engines": {
+ "node": ">=0.4.0"
+ }
+ },
+ "node_modules/acorn-globals": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz",
+ "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==",
+ "dev": true,
+ "dependencies": {
+ "acorn": "^7.1.1",
+ "acorn-walk": "^7.1.1"
+ }
+ },
+ "node_modules/acorn-jsx": {
+ "version": "5.3.2",
+ "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
+ "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
+ "dev": true,
+ "peerDependencies": {
+ "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
+ }
+ },
+ "node_modules/acorn-walk": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz",
+ "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.4.0"
+ }
+ },
+ "node_modules/address": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/address/-/address-1.1.2.tgz",
+ "integrity": "sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.12.0"
+ }
+ },
+ "node_modules/agent-base": {
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
+ "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
+ "dev": true,
+ "dependencies": {
+ "debug": "4"
+ },
+ "engines": {
+ "node": ">= 6.0.0"
+ }
+ },
+ "node_modules/aggregate-error": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz",
+ "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==",
+ "dev": true,
+ "dependencies": {
+ "clean-stack": "^2.0.0",
+ "indent-string": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/airbnb-js-shims": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/airbnb-js-shims/-/airbnb-js-shims-2.2.1.tgz",
+ "integrity": "sha512-wJNXPH66U2xjgo1Zwyjf9EydvJ2Si94+vSdk6EERcBfB2VZkeltpqIats0cqIZMLCXP3zcyaUKGYQeIBT6XjsQ==",
+ "dev": true,
+ "dependencies": {
+ "array-includes": "^3.0.3",
+ "array.prototype.flat": "^1.2.1",
+ "array.prototype.flatmap": "^1.2.1",
+ "es5-shim": "^4.5.13",
+ "es6-shim": "^0.35.5",
+ "function.prototype.name": "^1.1.0",
+ "globalthis": "^1.0.0",
+ "object.entries": "^1.1.0",
+ "object.fromentries": "^2.0.0 || ^1.0.0",
+ "object.getownpropertydescriptors": "^2.0.3",
+ "object.values": "^1.1.0",
+ "promise.allsettled": "^1.0.0",
+ "promise.prototype.finally": "^3.1.0",
+ "string.prototype.matchall": "^4.0.0 || ^3.0.1",
+ "string.prototype.padend": "^3.0.0",
+ "string.prototype.padstart": "^3.0.0",
+ "symbol.prototype.description": "^1.0.0"
+ }
+ },
+ "node_modules/ajv": {
+ "version": "6.12.6",
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
+ "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
+ "dev": true,
+ "dependencies": {
+ "fast-deep-equal": "^3.1.1",
+ "fast-json-stable-stringify": "^2.0.0",
+ "json-schema-traverse": "^0.4.1",
+ "uri-js": "^4.2.2"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/epoberezkin"
+ }
+ },
+ "node_modules/ajv-errors": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz",
+ "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==",
+ "dev": true,
+ "peerDependencies": {
+ "ajv": ">=5.0.0"
+ }
+ },
+ "node_modules/ajv-keywords": {
+ "version": "3.5.2",
+ "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
+ "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==",
+ "dev": true,
+ "peerDependencies": {
+ "ajv": "^6.9.1"
+ }
+ },
+ "node_modules/ansi-align": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz",
+ "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==",
+ "dev": true,
+ "dependencies": {
+ "string-width": "^4.1.0"
+ }
+ },
+ "node_modules/ansi-colors": {
+ "version": "3.2.4",
+ "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz",
+ "integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==",
+ "dev": true,
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/ansi-escapes": {
+ "version": "4.3.2",
+ "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz",
+ "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==",
+ "dev": true,
+ "dependencies": {
+ "type-fest": "^0.21.3"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/ansi-escapes/node_modules/type-fest": {
+ "version": "0.21.3",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz",
+ "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==",
+ "dev": true,
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/ansi-html-community": {
+ "version": "0.0.8",
+ "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz",
+ "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==",
+ "dev": true,
+ "engines": [
+ "node >= 0.8.0"
+ ],
+ "bin": {
+ "ansi-html": "bin/ansi-html"
+ }
+ },
+ "node_modules/ansi-regex": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/ansi-styles": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
+ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "dev": true,
+ "dependencies": {
+ "color-convert": "^1.9.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/ansi-styles/node_modules/color-convert": {
+ "version": "1.9.3",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
+ "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
+ "dev": true,
+ "dependencies": {
+ "color-name": "1.1.3"
+ }
+ },
+ "node_modules/ansi-styles/node_modules/color-name": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
+ "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=",
+ "dev": true
+ },
+ "node_modules/ansi-to-html": {
+ "version": "0.6.15",
+ "resolved": "https://registry.npmjs.org/ansi-to-html/-/ansi-to-html-0.6.15.tgz",
+ "integrity": "sha512-28ijx2aHJGdzbs+O5SNQF65r6rrKYnkuwTYm8lZlChuoJ9P1vVzIpWO20sQTqTPDXYp6NFwk326vApTtLVFXpQ==",
+ "dev": true,
+ "dependencies": {
+ "entities": "^2.0.0"
+ },
+ "bin": {
+ "ansi-to-html": "bin/ansi-to-html"
+ },
+ "engines": {
+ "node": ">=8.0.0"
+ }
+ },
+ "node_modules/anymatch": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz",
+ "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==",
+ "dev": true,
+ "dependencies": {
+ "normalize-path": "^3.0.0",
+ "picomatch": "^2.0.4"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/app-root-dir": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/app-root-dir/-/app-root-dir-1.0.2.tgz",
+ "integrity": "sha1-OBh+wt6nV3//Az/8sSFyaS/24Rg=",
+ "dev": true
+ },
+ "node_modules/aproba": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz",
+ "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==",
+ "dev": true
+ },
+ "node_modules/are-we-there-yet": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz",
+ "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==",
+ "dev": true,
+ "dependencies": {
+ "delegates": "^1.0.0",
+ "readable-stream": "^3.6.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/are-we-there-yet/node_modules/readable-stream": {
+ "version": "3.6.0",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
+ "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
+ "dev": true,
+ "dependencies": {
+ "inherits": "^2.0.3",
+ "string_decoder": "^1.1.1",
+ "util-deprecate": "^1.0.1"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/argparse": {
+ "version": "1.0.10",
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
+ "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
+ "dev": true,
+ "dependencies": {
+ "sprintf-js": "~1.0.2"
+ }
+ },
+ "node_modules/arr-diff": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz",
+ "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/arr-flatten": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz",
+ "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/arr-union": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz",
+ "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/array-flatten": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
+ "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=",
+ "dev": true
+ },
+ "node_modules/array-includes": {
+ "version": "3.1.4",
+ "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.4.tgz",
+ "integrity": "sha512-ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.19.1",
+ "get-intrinsic": "^1.1.1",
+ "is-string": "^1.0.7"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/array-union": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz",
+ "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/array-uniq": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz",
+ "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/array-unique": {
+ "version": "0.3.2",
+ "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz",
+ "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/array.prototype.flat": {
+ "version": "1.2.5",
+ "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.2.5.tgz",
+ "integrity": "sha512-KaYU+S+ndVqyUnignHftkwc58o3uVU1jzczILJ1tN2YaIZpFIKBiP/x/j97E5MVPsaCloPbqWLB/8qCTVvT2qg==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.19.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/array.prototype.flatmap": {
+ "version": "1.2.5",
+ "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.2.5.tgz",
+ "integrity": "sha512-08u6rVyi1Lj7oqWbS9nUxliETrtIROT4XGTA4D/LWGten6E3ocm7cy9SIrmNHOL5XVbVuckUp3X6Xyg8/zpvHA==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.0",
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.19.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/array.prototype.map": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/array.prototype.map/-/array.prototype.map-1.0.4.tgz",
+ "integrity": "sha512-Qds9QnX7A0qISY7JT5WuJO0NJPE9CMlC6JzHQfhpqAAQQzufVRoeH7EzUY5GcPTx72voG8LV/5eo+b8Qi8hmhA==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.19.0",
+ "es-array-method-boxes-properly": "^1.0.0",
+ "is-string": "^1.0.7"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/arrify": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz",
+ "integrity": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/asn1.js": {
+ "version": "5.4.1",
+ "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz",
+ "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==",
+ "dev": true,
+ "dependencies": {
+ "bn.js": "^4.0.0",
+ "inherits": "^2.0.1",
+ "minimalistic-assert": "^1.0.0",
+ "safer-buffer": "^2.1.0"
+ }
+ },
+ "node_modules/asn1.js/node_modules/bn.js": {
+ "version": "4.12.0",
+ "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz",
+ "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==",
+ "dev": true
+ },
+ "node_modules/assert": {
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz",
+ "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==",
+ "dev": true,
+ "dependencies": {
+ "object-assign": "^4.1.1",
+ "util": "0.10.3"
+ }
+ },
+ "node_modules/assert/node_modules/inherits": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz",
+ "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=",
+ "dev": true
+ },
+ "node_modules/assert/node_modules/util": {
+ "version": "0.10.3",
+ "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz",
+ "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=",
+ "dev": true,
+ "dependencies": {
+ "inherits": "2.0.1"
+ }
+ },
+ "node_modules/assign-symbols": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz",
+ "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/ast-types": {
+ "version": "0.14.2",
+ "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.14.2.tgz",
+ "integrity": "sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==",
+ "dev": true,
+ "dependencies": {
+ "tslib": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/async-each": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz",
+ "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==",
+ "dev": true,
+ "optional": true
+ },
+ "node_modules/asynckit": {
+ "version": "0.4.0",
+ "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
+ "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=",
+ "dev": true
+ },
+ "node_modules/at-least-node": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz",
+ "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==",
+ "dev": true,
+ "engines": {
+ "node": ">= 4.0.0"
+ }
+ },
+ "node_modules/atob": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz",
+ "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==",
+ "dev": true,
+ "bin": {
+ "atob": "bin/atob.js"
+ },
+ "engines": {
+ "node": ">= 4.5.0"
+ }
+ },
+ "node_modules/autoprefixer": {
+ "version": "9.8.8",
+ "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.8.tgz",
+ "integrity": "sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==",
+ "dev": true,
+ "dependencies": {
+ "browserslist": "^4.12.0",
+ "caniuse-lite": "^1.0.30001109",
+ "normalize-range": "^0.1.2",
+ "num2fraction": "^1.2.2",
+ "picocolors": "^0.2.1",
+ "postcss": "^7.0.32",
+ "postcss-value-parser": "^4.1.0"
+ },
+ "bin": {
+ "autoprefixer": "bin/autoprefixer"
+ },
+ "funding": {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/autoprefixer"
+ }
+ },
+ "node_modules/babel-jest": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-27.4.6.tgz",
+ "integrity": "sha512-qZL0JT0HS1L+lOuH+xC2DVASR3nunZi/ozGhpgauJHgmI7f8rudxf6hUjEHympdQ/J64CdKmPkgfJ+A3U6QCrg==",
+ "dev": true,
+ "dependencies": {
+ "@jest/transform": "^27.4.6",
+ "@jest/types": "^27.4.2",
+ "@types/babel__core": "^7.1.14",
+ "babel-plugin-istanbul": "^6.1.1",
+ "babel-preset-jest": "^27.4.0",
+ "chalk": "^4.0.0",
+ "graceful-fs": "^4.2.4",
+ "slash": "^3.0.0"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.8.0"
+ }
+ },
+ "node_modules/babel-jest/node_modules/@jest/transform": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.4.6.tgz",
+ "integrity": "sha512-9MsufmJC8t5JTpWEQJ0OcOOAXaH5ioaIX6uHVBLBMoCZPfKKQF+EqP8kACAvCZ0Y1h2Zr3uOccg8re+Dr5jxyw==",
+ "dev": true,
+ "dependencies": {
+ "@babel/core": "^7.1.0",
+ "@jest/types": "^27.4.2",
+ "babel-plugin-istanbul": "^6.1.1",
+ "chalk": "^4.0.0",
+ "convert-source-map": "^1.4.0",
+ "fast-json-stable-stringify": "^2.0.0",
+ "graceful-fs": "^4.2.4",
+ "jest-haste-map": "^27.4.6",
+ "jest-regex-util": "^27.4.0",
+ "jest-util": "^27.4.2",
+ "micromatch": "^4.0.4",
+ "pirates": "^4.0.4",
+ "slash": "^3.0.0",
+ "source-map": "^0.6.1",
+ "write-file-atomic": "^3.0.0"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/babel-jest/node_modules/@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "dependencies": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/babel-jest/node_modules/@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "dependencies": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "node_modules/babel-jest/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/babel-jest/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/babel-jest/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/babel-jest/node_modules/jest-haste-map": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.4.6.tgz",
+ "integrity": "sha512-0tNpgxg7BKurZeFkIOvGCkbmOHbLFf4LUQOxrQSMjvrQaQe3l6E8x6jYC1NuWkGo5WDdbr8FEzUxV2+LWNawKQ==",
+ "dev": true,
+ "dependencies": {
+ "@jest/types": "^27.4.2",
+ "@types/graceful-fs": "^4.1.2",
+ "@types/node": "*",
+ "anymatch": "^3.0.3",
+ "fb-watchman": "^2.0.0",
+ "graceful-fs": "^4.2.4",
+ "jest-regex-util": "^27.4.0",
+ "jest-serializer": "^27.4.0",
+ "jest-util": "^27.4.2",
+ "jest-worker": "^27.4.6",
+ "micromatch": "^4.0.4",
+ "walker": "^1.0.7"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ },
+ "optionalDependencies": {
+ "fsevents": "^2.3.2"
+ }
+ },
+ "node_modules/babel-jest/node_modules/jest-regex-util": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.4.0.tgz",
+ "integrity": "sha512-WeCpMpNnqJYMQoOjm1nTtsgbR4XHAk1u00qDoNBQoykM280+/TmgA5Qh5giC1ecy6a5d4hbSsHzpBtu5yvlbEg==",
+ "dev": true,
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/babel-jest/node_modules/jest-serializer": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.4.0.tgz",
+ "integrity": "sha512-RDhpcn5f1JYTX2pvJAGDcnsNTnsV9bjYPU8xcV+xPwOXnUPOQwf4ZEuiU6G9H1UztH+OapMgu/ckEVwO87PwnQ==",
+ "dev": true,
+ "dependencies": {
+ "@types/node": "*",
+ "graceful-fs": "^4.2.4"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/babel-jest/node_modules/jest-util": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.4.2.tgz",
+ "integrity": "sha512-YuxxpXU6nlMan9qyLuxHaMMOzXAl5aGZWCSzben5DhLHemYQxCc4YK+4L3ZrCutT8GPQ+ui9k5D8rUJoDioMnA==",
+ "dev": true,
+ "dependencies": {
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.4",
+ "picomatch": "^2.2.3"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/babel-jest/node_modules/source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/babel-jest/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/babel-loader": {
+ "version": "8.2.3",
+ "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.3.tgz",
+ "integrity": "sha512-n4Zeta8NC3QAsuyiizu0GkmRcQ6clkV9WFUnUf1iXP//IeSKbWjofW3UHyZVwlOB4y039YQKefawyTn64Zwbuw==",
+ "dev": true,
+ "dependencies": {
+ "find-cache-dir": "^3.3.1",
+ "loader-utils": "^1.4.0",
+ "make-dir": "^3.1.0",
+ "schema-utils": "^2.6.5"
+ },
+ "engines": {
+ "node": ">= 8.9"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0",
+ "webpack": ">=2"
+ }
+ },
+ "node_modules/babel-loader/node_modules/find-cache-dir": {
+ "version": "3.3.2",
+ "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz",
+ "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==",
+ "dev": true,
+ "dependencies": {
+ "commondir": "^1.0.1",
+ "make-dir": "^3.0.2",
+ "pkg-dir": "^4.1.0"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/avajs/find-cache-dir?sponsor=1"
+ }
+ },
+ "node_modules/babel-loader/node_modules/find-up": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
+ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
+ "dev": true,
+ "dependencies": {
+ "locate-path": "^5.0.0",
+ "path-exists": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/babel-loader/node_modules/json5": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz",
+ "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==",
+ "dev": true,
+ "dependencies": {
+ "minimist": "^1.2.0"
+ },
+ "bin": {
+ "json5": "lib/cli.js"
+ }
+ },
+ "node_modules/babel-loader/node_modules/loader-utils": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz",
+ "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==",
+ "dev": true,
+ "dependencies": {
+ "big.js": "^5.2.2",
+ "emojis-list": "^3.0.0",
+ "json5": "^1.0.1"
+ },
+ "engines": {
+ "node": ">=4.0.0"
+ }
+ },
+ "node_modules/babel-loader/node_modules/locate-path": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
+ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
+ "dev": true,
+ "dependencies": {
+ "p-locate": "^4.1.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/babel-loader/node_modules/make-dir": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
+ "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
+ "dev": true,
+ "dependencies": {
+ "semver": "^6.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/babel-loader/node_modules/p-limit": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
+ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
+ "dev": true,
+ "dependencies": {
+ "p-try": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/babel-loader/node_modules/p-locate": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
+ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
+ "dev": true,
+ "dependencies": {
+ "p-limit": "^2.2.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/babel-loader/node_modules/pkg-dir": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
+ "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
+ "dev": true,
+ "dependencies": {
+ "find-up": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/babel-loader/node_modules/schema-utils": {
+ "version": "2.7.1",
+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz",
+ "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==",
+ "dev": true,
+ "dependencies": {
+ "@types/json-schema": "^7.0.5",
+ "ajv": "^6.12.4",
+ "ajv-keywords": "^3.5.2"
+ },
+ "engines": {
+ "node": ">= 8.9.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ }
+ },
+ "node_modules/babel-plugin-add-react-displayname": {
+ "version": "0.0.5",
+ "resolved": "https://registry.npmjs.org/babel-plugin-add-react-displayname/-/babel-plugin-add-react-displayname-0.0.5.tgz",
+ "integrity": "sha1-M51M3be2X9YtHfnbn+BN4TQSK9U=",
+ "dev": true
+ },
+ "node_modules/babel-plugin-apply-mdx-type-prop": {
+ "version": "1.6.22",
+ "resolved": "https://registry.npmjs.org/babel-plugin-apply-mdx-type-prop/-/babel-plugin-apply-mdx-type-prop-1.6.22.tgz",
+ "integrity": "sha512-VefL+8o+F/DfK24lPZMtJctrCVOfgbqLAGZSkxwhazQv4VxPg3Za/i40fu22KR2m8eEda+IfSOlPLUSIiLcnCQ==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "7.10.4",
+ "@mdx-js/util": "1.6.22"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.11.6"
+ }
+ },
+ "node_modules/babel-plugin-apply-mdx-type-prop/node_modules/@babel/helper-plugin-utils": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
+ "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
+ "dev": true
+ },
+ "node_modules/babel-plugin-dynamic-import-node": {
+ "version": "2.3.3",
+ "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz",
+ "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==",
+ "dev": true,
+ "dependencies": {
+ "object.assign": "^4.1.0"
+ }
+ },
+ "node_modules/babel-plugin-emotion": {
+ "version": "10.2.2",
+ "resolved": "https://registry.npmjs.org/babel-plugin-emotion/-/babel-plugin-emotion-10.2.2.tgz",
+ "integrity": "sha512-SMSkGoqTbTyUTDeuVuPIWifPdUGkTk1Kf9BWRiXIOIcuyMfsdp2EjeiiFvOzX8NOBvEh/ypKYvUh2rkgAJMCLA==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-module-imports": "^7.0.0",
+ "@emotion/hash": "0.8.0",
+ "@emotion/memoize": "0.7.4",
+ "@emotion/serialize": "^0.11.16",
+ "babel-plugin-macros": "^2.0.0",
+ "babel-plugin-syntax-jsx": "^6.18.0",
+ "convert-source-map": "^1.5.0",
+ "escape-string-regexp": "^1.0.5",
+ "find-root": "^1.1.0",
+ "source-map": "^0.5.7"
+ }
+ },
+ "node_modules/babel-plugin-extract-import-names": {
+ "version": "1.6.22",
+ "resolved": "https://registry.npmjs.org/babel-plugin-extract-import-names/-/babel-plugin-extract-import-names-1.6.22.tgz",
+ "integrity": "sha512-yJ9BsJaISua7d8zNT7oRG1ZLBJCIdZ4PZqmH8qa9N5AK01ifk3fnkc98AXhtzE7UkfCsEumvoQWgoYLhOnJ7jQ==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "7.10.4"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/babel-plugin-extract-import-names/node_modules/@babel/helper-plugin-utils": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
+ "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
+ "dev": true
+ },
+ "node_modules/babel-plugin-istanbul": {
+ "version": "6.1.1",
+ "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz",
+ "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.0.0",
+ "@istanbuljs/load-nyc-config": "^1.0.0",
+ "@istanbuljs/schema": "^0.1.2",
+ "istanbul-lib-instrument": "^5.0.4",
+ "test-exclude": "^6.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/babel-plugin-jest-hoist": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.4.0.tgz",
+ "integrity": "sha512-Jcu7qS4OX5kTWBc45Hz7BMmgXuJqRnhatqpUhnzGC3OBYpOmf2tv6jFNwZpwM7wU7MUuv2r9IPS/ZlYOuburVw==",
+ "dev": true,
+ "dependencies": {
+ "@babel/template": "^7.3.3",
+ "@babel/types": "^7.3.3",
+ "@types/babel__core": "^7.0.0",
+ "@types/babel__traverse": "^7.0.6"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/babel-plugin-macros": {
+ "version": "2.8.0",
+ "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz",
+ "integrity": "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==",
+ "dev": true,
+ "dependencies": {
+ "@babel/runtime": "^7.7.2",
+ "cosmiconfig": "^6.0.0",
+ "resolve": "^1.12.0"
+ }
+ },
+ "node_modules/babel-plugin-named-asset-import": {
+ "version": "0.3.8",
+ "resolved": "https://registry.npmjs.org/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.8.tgz",
+ "integrity": "sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==",
+ "dev": true,
+ "peerDependencies": {
+ "@babel/core": "^7.1.0"
+ }
+ },
+ "node_modules/babel-plugin-polyfill-corejs2": {
+ "version": "0.2.3",
+ "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.2.3.tgz",
+ "integrity": "sha512-NDZ0auNRzmAfE1oDDPW2JhzIMXUk+FFe2ICejmt5T4ocKgiQx3e0VCRx9NCAidcMtL2RUZaWtXnmjTCkx0tcbA==",
+ "dev": true,
+ "dependencies": {
+ "@babel/compat-data": "^7.13.11",
+ "@babel/helper-define-polyfill-provider": "^0.2.4",
+ "semver": "^6.1.1"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/babel-plugin-polyfill-corejs3": {
+ "version": "0.2.5",
+ "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.5.tgz",
+ "integrity": "sha512-ninF5MQNwAX9Z7c9ED+H2pGt1mXdP4TqzlHKyPIYmJIYz0N+++uwdM7RnJukklhzJ54Q84vA4ZJkgs7lu5vqcw==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-define-polyfill-provider": "^0.2.2",
+ "core-js-compat": "^3.16.2"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/babel-plugin-polyfill-regenerator": {
+ "version": "0.2.3",
+ "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.2.3.tgz",
+ "integrity": "sha512-JVE78oRZPKFIeUqFGrSORNzQnrDwZR16oiWeGM8ZyjBn2XAT5OjP+wXx5ESuo33nUsFUEJYjtklnsKbxW5L+7g==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-define-polyfill-provider": "^0.2.4"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/babel-plugin-react-docgen": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/babel-plugin-react-docgen/-/babel-plugin-react-docgen-4.2.1.tgz",
+ "integrity": "sha512-UQ0NmGHj/HAqi5Bew8WvNfCk8wSsmdgNd8ZdMjBCICtyCJCq9LiqgqvjCYe570/Wg7AQArSq1VQ60Dd/CHN7mQ==",
+ "dev": true,
+ "dependencies": {
+ "ast-types": "^0.14.2",
+ "lodash": "^4.17.15",
+ "react-docgen": "^5.0.0"
+ }
+ },
+ "node_modules/babel-plugin-syntax-jsx": {
+ "version": "6.18.0",
+ "resolved": "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz",
+ "integrity": "sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=",
+ "dev": true
+ },
+ "node_modules/babel-preset-current-node-syntax": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz",
+ "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==",
+ "dev": true,
+ "dependencies": {
+ "@babel/plugin-syntax-async-generators": "^7.8.4",
+ "@babel/plugin-syntax-bigint": "^7.8.3",
+ "@babel/plugin-syntax-class-properties": "^7.8.3",
+ "@babel/plugin-syntax-import-meta": "^7.8.3",
+ "@babel/plugin-syntax-json-strings": "^7.8.3",
+ "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3",
+ "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",
+ "@babel/plugin-syntax-numeric-separator": "^7.8.3",
+ "@babel/plugin-syntax-object-rest-spread": "^7.8.3",
+ "@babel/plugin-syntax-optional-catch-binding": "^7.8.3",
+ "@babel/plugin-syntax-optional-chaining": "^7.8.3",
+ "@babel/plugin-syntax-top-level-await": "^7.8.3"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
+ }
+ },
+ "node_modules/babel-preset-jest": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.4.0.tgz",
+ "integrity": "sha512-NK4jGYpnBvNxcGo7/ZpZJr51jCGT+3bwwpVIDY2oNfTxJJldRtB4VAcYdgp1loDE50ODuTu+yBjpMAswv5tlpg==",
+ "dev": true,
+ "dependencies": {
+ "babel-plugin-jest-hoist": "^27.4.0",
+ "babel-preset-current-node-syntax": "^1.0.0"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
+ }
+ },
+ "node_modules/bail": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz",
+ "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==",
+ "dev": true,
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/balanced-match": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
+ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
+ "dev": true
+ },
+ "node_modules/base": {
+ "version": "0.11.2",
+ "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz",
+ "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==",
+ "dev": true,
+ "dependencies": {
+ "cache-base": "^1.0.1",
+ "class-utils": "^0.3.5",
+ "component-emitter": "^1.2.1",
+ "define-property": "^1.0.0",
+ "isobject": "^3.0.1",
+ "mixin-deep": "^1.2.0",
+ "pascalcase": "^0.1.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/base/node_modules/define-property": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
+ "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
+ "dev": true,
+ "dependencies": {
+ "is-descriptor": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/base64-js": {
+ "version": "1.5.1",
+ "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
+ "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ]
+ },
+ "node_modules/batch-processor": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/batch-processor/-/batch-processor-1.0.0.tgz",
+ "integrity": "sha1-dclcMrdI4IUNEMKxaPa9vpiRrOg=",
+ "dev": true
+ },
+ "node_modules/better-opn": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/better-opn/-/better-opn-2.1.1.tgz",
+ "integrity": "sha512-kIPXZS5qwyKiX/HcRvDYfmBQUa8XP17I0mYZZ0y4UhpYOSvtsLHDYqmomS+Mj20aDvD3knEiQ0ecQy2nhio3yA==",
+ "dev": true,
+ "dependencies": {
+ "open": "^7.0.3"
+ },
+ "engines": {
+ "node": ">8.0.0"
+ }
+ },
+ "node_modules/big.js": {
+ "version": "5.2.2",
+ "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz",
+ "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==",
+ "dev": true,
+ "engines": {
+ "node": "*"
+ }
+ },
+ "node_modules/binary-extensions": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz",
+ "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/bindings": {
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz",
+ "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "file-uri-to-path": "1.0.0"
+ }
+ },
+ "node_modules/bluebird": {
+ "version": "3.7.2",
+ "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz",
+ "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==",
+ "dev": true
+ },
+ "node_modules/bn.js": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.0.tgz",
+ "integrity": "sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw==",
+ "dev": true
+ },
+ "node_modules/body-parser": {
+ "version": "1.19.1",
+ "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.1.tgz",
+ "integrity": "sha512-8ljfQi5eBk8EJfECMrgqNGWPEY5jWP+1IzkzkGdFFEwFQZZyaZ21UqdaHktgiMlH0xLHqIFtE/u2OYE5dOtViA==",
+ "dev": true,
+ "dependencies": {
+ "bytes": "3.1.1",
+ "content-type": "~1.0.4",
+ "debug": "2.6.9",
+ "depd": "~1.1.2",
+ "http-errors": "1.8.1",
+ "iconv-lite": "0.4.24",
+ "on-finished": "~2.3.0",
+ "qs": "6.9.6",
+ "raw-body": "2.4.2",
+ "type-is": "~1.6.18"
+ },
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/body-parser/node_modules/bytes": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.1.tgz",
+ "integrity": "sha512-dWe4nWO/ruEOY7HkUJ5gFt1DCFV9zPRoJr8pV0/ASQermOZjtq8jMjOprC0Kd10GLN+l7xaUPvxzJFWtxGu8Fg==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/body-parser/node_modules/debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "dev": true,
+ "dependencies": {
+ "ms": "2.0.0"
+ }
+ },
+ "node_modules/body-parser/node_modules/ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ },
+ "node_modules/body-parser/node_modules/qs": {
+ "version": "6.9.6",
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.9.6.tgz",
+ "integrity": "sha512-TIRk4aqYLNoJUbd+g2lEdz5kLWIuTMRagAXxl78Q0RiVjAOugHmeKNGdd3cwo/ktpf9aL9epCfFqWDEKysUlLQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/boolbase": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz",
+ "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=",
+ "dev": true
+ },
+ "node_modules/boxen": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/boxen/-/boxen-5.1.2.tgz",
+ "integrity": "sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==",
+ "dev": true,
+ "dependencies": {
+ "ansi-align": "^3.0.0",
+ "camelcase": "^6.2.0",
+ "chalk": "^4.1.0",
+ "cli-boxes": "^2.2.1",
+ "string-width": "^4.2.2",
+ "type-fest": "^0.20.2",
+ "widest-line": "^3.1.0",
+ "wrap-ansi": "^7.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/boxen/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/boxen/node_modules/camelcase": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz",
+ "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==",
+ "dev": true,
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/boxen/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/boxen/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/boxen/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/brace-expansion": {
+ "version": "1.1.11",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
+ "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
+ "dev": true,
+ "dependencies": {
+ "balanced-match": "^1.0.0",
+ "concat-map": "0.0.1"
+ }
+ },
+ "node_modules/braces": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
+ "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
+ "dev": true,
+ "dependencies": {
+ "fill-range": "^7.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/brorand": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz",
+ "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=",
+ "dev": true
+ },
+ "node_modules/browser-process-hrtime": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz",
+ "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==",
+ "dev": true
+ },
+ "node_modules/browserify-aes": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz",
+ "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==",
+ "dev": true,
+ "dependencies": {
+ "buffer-xor": "^1.0.3",
+ "cipher-base": "^1.0.0",
+ "create-hash": "^1.1.0",
+ "evp_bytestokey": "^1.0.3",
+ "inherits": "^2.0.1",
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "node_modules/browserify-cipher": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz",
+ "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==",
+ "dev": true,
+ "dependencies": {
+ "browserify-aes": "^1.0.4",
+ "browserify-des": "^1.0.0",
+ "evp_bytestokey": "^1.0.0"
+ }
+ },
+ "node_modules/browserify-des": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz",
+ "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==",
+ "dev": true,
+ "dependencies": {
+ "cipher-base": "^1.0.1",
+ "des.js": "^1.0.0",
+ "inherits": "^2.0.1",
+ "safe-buffer": "^5.1.2"
+ }
+ },
+ "node_modules/browserify-rsa": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz",
+ "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==",
+ "dev": true,
+ "dependencies": {
+ "bn.js": "^5.0.0",
+ "randombytes": "^2.0.1"
+ }
+ },
+ "node_modules/browserify-sign": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz",
+ "integrity": "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==",
+ "dev": true,
+ "dependencies": {
+ "bn.js": "^5.1.1",
+ "browserify-rsa": "^4.0.1",
+ "create-hash": "^1.2.0",
+ "create-hmac": "^1.1.7",
+ "elliptic": "^6.5.3",
+ "inherits": "^2.0.4",
+ "parse-asn1": "^5.1.5",
+ "readable-stream": "^3.6.0",
+ "safe-buffer": "^5.2.0"
+ }
+ },
+ "node_modules/browserify-sign/node_modules/readable-stream": {
+ "version": "3.6.0",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
+ "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
+ "dev": true,
+ "dependencies": {
+ "inherits": "^2.0.3",
+ "string_decoder": "^1.1.1",
+ "util-deprecate": "^1.0.1"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/browserify-sign/node_modules/safe-buffer": {
+ "version": "5.2.1",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
+ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ]
+ },
+ "node_modules/browserify-zlib": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz",
+ "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==",
+ "dev": true,
+ "dependencies": {
+ "pako": "~1.0.5"
+ }
+ },
+ "node_modules/browserslist": {
+ "version": "4.19.1",
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.19.1.tgz",
+ "integrity": "sha512-u2tbbG5PdKRTUoctO3NBD8FQ5HdPh1ZXPHzp1rwaa5jTc+RV9/+RlWiAIKmjRPQF+xbGM9Kklj5bZQFa2s/38A==",
+ "dev": true,
+ "dependencies": {
+ "caniuse-lite": "^1.0.30001286",
+ "electron-to-chromium": "^1.4.17",
+ "escalade": "^3.1.1",
+ "node-releases": "^2.0.1",
+ "picocolors": "^1.0.0"
+ },
+ "bin": {
+ "browserslist": "cli.js"
+ },
+ "engines": {
+ "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/browserslist"
+ }
+ },
+ "node_modules/browserslist/node_modules/picocolors": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz",
+ "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==",
+ "dev": true
+ },
+ "node_modules/bser": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz",
+ "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==",
+ "dev": true,
+ "dependencies": {
+ "node-int64": "^0.4.0"
+ }
+ },
+ "node_modules/buffer": {
+ "version": "4.9.2",
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz",
+ "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==",
+ "dev": true,
+ "dependencies": {
+ "base64-js": "^1.0.2",
+ "ieee754": "^1.1.4",
+ "isarray": "^1.0.0"
+ }
+ },
+ "node_modules/buffer-from": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz",
+ "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==",
+ "dev": true
+ },
+ "node_modules/buffer-xor": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz",
+ "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=",
+ "dev": true
+ },
+ "node_modules/buffer/node_modules/isarray": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
+ "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
+ "dev": true
+ },
+ "node_modules/builtin-status-codes": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz",
+ "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=",
+ "dev": true
+ },
+ "node_modules/bytes": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz",
+ "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/c8": {
+ "version": "7.11.0",
+ "resolved": "https://registry.npmjs.org/c8/-/c8-7.11.0.tgz",
+ "integrity": "sha512-XqPyj1uvlHMr+Y1IeRndC2X5P7iJzJlEJwBpCdBbq2JocXOgJfr+JVfJkyNMGROke5LfKrhSFXGFXnwnRJAUJw==",
+ "dev": true,
+ "dependencies": {
+ "@bcoe/v8-coverage": "^0.2.3",
+ "@istanbuljs/schema": "^0.1.2",
+ "find-up": "^5.0.0",
+ "foreground-child": "^2.0.0",
+ "istanbul-lib-coverage": "^3.0.1",
+ "istanbul-lib-report": "^3.0.0",
+ "istanbul-reports": "^3.0.2",
+ "rimraf": "^3.0.0",
+ "test-exclude": "^6.0.0",
+ "v8-to-istanbul": "^8.0.0",
+ "yargs": "^16.2.0",
+ "yargs-parser": "^20.2.7"
+ },
+ "bin": {
+ "c8": "bin/c8.js"
+ },
+ "engines": {
+ "node": ">=10.12.0"
+ }
+ },
+ "node_modules/cacache": {
+ "version": "15.3.0",
+ "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz",
+ "integrity": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==",
+ "dev": true,
+ "dependencies": {
+ "@npmcli/fs": "^1.0.0",
+ "@npmcli/move-file": "^1.0.1",
+ "chownr": "^2.0.0",
+ "fs-minipass": "^2.0.0",
+ "glob": "^7.1.4",
+ "infer-owner": "^1.0.4",
+ "lru-cache": "^6.0.0",
+ "minipass": "^3.1.1",
+ "minipass-collect": "^1.0.2",
+ "minipass-flush": "^1.0.5",
+ "minipass-pipeline": "^1.2.2",
+ "mkdirp": "^1.0.3",
+ "p-map": "^4.0.0",
+ "promise-inflight": "^1.0.1",
+ "rimraf": "^3.0.2",
+ "ssri": "^8.0.1",
+ "tar": "^6.0.2",
+ "unique-filename": "^1.1.1"
+ },
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/cacache/node_modules/p-map": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz",
+ "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==",
+ "dev": true,
+ "dependencies": {
+ "aggregate-error": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/cache-base": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz",
+ "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==",
+ "dev": true,
+ "dependencies": {
+ "collection-visit": "^1.0.0",
+ "component-emitter": "^1.2.1",
+ "get-value": "^2.0.6",
+ "has-value": "^1.0.0",
+ "isobject": "^3.0.1",
+ "set-value": "^2.0.0",
+ "to-object-path": "^0.3.0",
+ "union-value": "^1.0.0",
+ "unset-value": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/call-bind": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz",
+ "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==",
+ "dev": true,
+ "dependencies": {
+ "function-bind": "^1.1.1",
+ "get-intrinsic": "^1.0.2"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/call-me-maybe": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.1.tgz",
+ "integrity": "sha1-JtII6onje1y95gJQoV8DHBak1ms=",
+ "dev": true
+ },
+ "node_modules/callsites": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
+ "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/camel-case": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz",
+ "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==",
+ "dev": true,
+ "dependencies": {
+ "pascal-case": "^3.1.2",
+ "tslib": "^2.0.3"
+ }
+ },
+ "node_modules/camelcase": {
+ "version": "5.3.1",
+ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
+ "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==",
+ "dev": true,
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/camelcase-css": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz",
+ "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==",
+ "dev": true,
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/caniuse-lite": {
+ "version": "1.0.30001298",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001298.tgz",
+ "integrity": "sha512-AcKqikjMLlvghZL/vfTHorlQsLDhGRalYf1+GmWCf5SCMziSGjRYQW/JEksj14NaYHIR6KIhrFAy0HV5C25UzQ==",
+ "dev": true,
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/browserslist"
+ }
+ },
+ "node_modules/capture-exit": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz",
+ "integrity": "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==",
+ "dev": true,
+ "dependencies": {
+ "rsvp": "^4.8.4"
+ },
+ "engines": {
+ "node": "6.* || 8.* || >= 10.*"
+ }
+ },
+ "node_modules/case-sensitive-paths-webpack-plugin": {
+ "version": "2.4.0",
+ "resolved": "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.4.0.tgz",
+ "integrity": "sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==",
+ "dev": true,
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/ccount": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz",
+ "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==",
+ "dev": true,
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/chalk": {
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
+ "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
+ "dev": true,
+ "dependencies": {
+ "ansi-styles": "^3.2.1",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^5.3.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/char-regex": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz",
+ "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==",
+ "dev": true,
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/character-entities": {
+ "version": "1.2.4",
+ "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-1.2.4.tgz",
+ "integrity": "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==",
+ "dev": true,
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/character-entities-legacy": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz",
+ "integrity": "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==",
+ "dev": true,
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/character-reference-invalid": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz",
+ "integrity": "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==",
+ "dev": true,
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/chokidar": {
+ "version": "3.5.2",
+ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz",
+ "integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==",
+ "dev": true,
+ "dependencies": {
+ "anymatch": "~3.1.2",
+ "braces": "~3.0.2",
+ "glob-parent": "~5.1.2",
+ "is-binary-path": "~2.1.0",
+ "is-glob": "~4.0.1",
+ "normalize-path": "~3.0.0",
+ "readdirp": "~3.6.0"
+ },
+ "engines": {
+ "node": ">= 8.10.0"
+ },
+ "optionalDependencies": {
+ "fsevents": "~2.3.2"
+ }
+ },
+ "node_modules/chownr": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz",
+ "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/chrome-trace-event": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz",
+ "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==",
+ "dev": true,
+ "engines": {
+ "node": ">=6.0"
+ }
+ },
+ "node_modules/ci-info": {
+ "version": "3.3.0",
+ "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.3.0.tgz",
+ "integrity": "sha512-riT/3vI5YpVH6/qomlDnJow6TBee2PBKSEpx3O32EGPYbWGIRsIlGRms3Sm74wYE1JMo8RnO04Hb12+v1J5ICw==",
+ "dev": true
+ },
+ "node_modules/cipher-base": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz",
+ "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==",
+ "dev": true,
+ "dependencies": {
+ "inherits": "^2.0.1",
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "node_modules/cjs-module-lexer": {
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz",
+ "integrity": "sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==",
+ "dev": true
+ },
+ "node_modules/class-utils": {
+ "version": "0.3.6",
+ "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz",
+ "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==",
+ "dev": true,
+ "dependencies": {
+ "arr-union": "^3.1.0",
+ "define-property": "^0.2.5",
+ "isobject": "^3.0.0",
+ "static-extend": "^0.1.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/class-utils/node_modules/define-property": {
+ "version": "0.2.5",
+ "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
+ "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
+ "dev": true,
+ "dependencies": {
+ "is-descriptor": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/class-utils/node_modules/is-accessor-descriptor": {
+ "version": "0.1.6",
+ "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz",
+ "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=",
+ "dev": true,
+ "dependencies": {
+ "kind-of": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/class-utils/node_modules/is-accessor-descriptor/node_modules/kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "dependencies": {
+ "is-buffer": "^1.1.5"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/class-utils/node_modules/is-buffer": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
+ "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==",
+ "dev": true
+ },
+ "node_modules/class-utils/node_modules/is-data-descriptor": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz",
+ "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=",
+ "dev": true,
+ "dependencies": {
+ "kind-of": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/class-utils/node_modules/is-data-descriptor/node_modules/kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "dependencies": {
+ "is-buffer": "^1.1.5"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/class-utils/node_modules/is-descriptor": {
+ "version": "0.1.6",
+ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz",
+ "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==",
+ "dev": true,
+ "dependencies": {
+ "is-accessor-descriptor": "^0.1.6",
+ "is-data-descriptor": "^0.1.4",
+ "kind-of": "^5.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/class-utils/node_modules/kind-of": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
+ "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/clean-css": {
+ "version": "4.2.4",
+ "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.4.tgz",
+ "integrity": "sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==",
+ "dev": true,
+ "dependencies": {
+ "source-map": "~0.6.0"
+ },
+ "engines": {
+ "node": ">= 4.0"
+ }
+ },
+ "node_modules/clean-css/node_modules/source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/clean-stack": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz",
+ "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==",
+ "dev": true,
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/cli-boxes": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz",
+ "integrity": "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==",
+ "dev": true,
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/cli-table3": {
+ "version": "0.6.0",
+ "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.0.tgz",
+ "integrity": "sha512-gnB85c3MGC7Nm9I/FkiasNBOKjOiO1RNuXXarQms37q4QMpWdlbBgD/VnOStA2faG1dpXMv31RFApjX1/QdgWQ==",
+ "dev": true,
+ "dependencies": {
+ "object-assign": "^4.1.0",
+ "string-width": "^4.2.0"
+ },
+ "engines": {
+ "node": "10.* || >= 12.*"
+ },
+ "optionalDependencies": {
+ "colors": "^1.1.2"
+ }
+ },
+ "node_modules/cliui": {
+ "version": "7.0.4",
+ "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz",
+ "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==",
+ "dev": true,
+ "dependencies": {
+ "string-width": "^4.2.0",
+ "strip-ansi": "^6.0.0",
+ "wrap-ansi": "^7.0.0"
+ }
+ },
+ "node_modules/clone-deep": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz",
+ "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==",
+ "dev": true,
+ "dependencies": {
+ "is-plain-object": "^2.0.4",
+ "kind-of": "^6.0.2",
+ "shallow-clone": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/clsx": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.1.1.tgz",
+ "integrity": "sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA==",
+ "dev": true,
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/co": {
+ "version": "4.6.0",
+ "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz",
+ "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=",
+ "dev": true,
+ "engines": {
+ "iojs": ">= 1.0.0",
+ "node": ">= 0.12.0"
+ }
+ },
+ "node_modules/collapse-white-space": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/collapse-white-space/-/collapse-white-space-1.0.6.tgz",
+ "integrity": "sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==",
+ "dev": true,
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/collect-v8-coverage": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz",
+ "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==",
+ "dev": true
+ },
+ "node_modules/collection-visit": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz",
+ "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=",
+ "dev": true,
+ "dependencies": {
+ "map-visit": "^1.0.0",
+ "object-visit": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dev": true,
+ "dependencies": {
+ "color-name": "~1.1.4"
+ },
+ "engines": {
+ "node": ">=7.0.0"
+ }
+ },
+ "node_modules/color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "dev": true
+ },
+ "node_modules/color-support": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz",
+ "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==",
+ "dev": true,
+ "bin": {
+ "color-support": "bin.js"
+ }
+ },
+ "node_modules/colors": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz",
+ "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==",
+ "dev": true,
+ "optional": true,
+ "engines": {
+ "node": ">=0.1.90"
+ }
+ },
+ "node_modules/combined-stream": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
+ "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
+ "dev": true,
+ "dependencies": {
+ "delayed-stream": "~1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/comma-separated-tokens": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-1.0.8.tgz",
+ "integrity": "sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==",
+ "dev": true,
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/commander": {
+ "version": "6.2.1",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz",
+ "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==",
+ "dev": true,
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/common-path-prefix": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz",
+ "integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==",
+ "dev": true
+ },
+ "node_modules/commondir": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz",
+ "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=",
+ "dev": true
+ },
+ "node_modules/component-emitter": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz",
+ "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==",
+ "dev": true
+ },
+ "node_modules/compressible": {
+ "version": "2.0.18",
+ "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz",
+ "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==",
+ "dev": true,
+ "dependencies": {
+ "mime-db": ">= 1.43.0 < 2"
+ },
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/compression": {
+ "version": "1.7.4",
+ "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz",
+ "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==",
+ "dev": true,
+ "dependencies": {
+ "accepts": "~1.3.5",
+ "bytes": "3.0.0",
+ "compressible": "~2.0.16",
+ "debug": "2.6.9",
+ "on-headers": "~1.0.2",
+ "safe-buffer": "5.1.2",
+ "vary": "~1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/compression/node_modules/debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "dev": true,
+ "dependencies": {
+ "ms": "2.0.0"
+ }
+ },
+ "node_modules/compression/node_modules/ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ },
+ "node_modules/compute-scroll-into-view": {
+ "version": "1.0.17",
+ "resolved": "https://registry.npmjs.org/compute-scroll-into-view/-/compute-scroll-into-view-1.0.17.tgz",
+ "integrity": "sha512-j4dx+Fb0URmzbwwMUrhqWM2BEWHdFGx+qZ9qqASHRPqvTYdqvWnHg0H1hIbcyLnvgnoNAVMlwkepyqM3DaIFUg==",
+ "dev": true
+ },
+ "node_modules/concat-map": {
+ "version": "0.0.1",
+ "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
+ "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=",
+ "dev": true
+ },
+ "node_modules/concat-stream": {
+ "version": "1.6.2",
+ "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz",
+ "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==",
+ "dev": true,
+ "engines": [
+ "node >= 0.8"
+ ],
+ "dependencies": {
+ "buffer-from": "^1.0.0",
+ "inherits": "^2.0.3",
+ "readable-stream": "^2.2.2",
+ "typedarray": "^0.0.6"
+ }
+ },
+ "node_modules/console-browserify": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz",
+ "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==",
+ "dev": true
+ },
+ "node_modules/console-control-strings": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz",
+ "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=",
+ "dev": true
+ },
+ "node_modules/constants-browserify": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz",
+ "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=",
+ "dev": true
+ },
+ "node_modules/content-disposition": {
+ "version": "0.5.4",
+ "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz",
+ "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==",
+ "dev": true,
+ "dependencies": {
+ "safe-buffer": "5.2.1"
+ },
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/content-disposition/node_modules/safe-buffer": {
+ "version": "5.2.1",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
+ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ]
+ },
+ "node_modules/content-type": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz",
+ "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/convert-source-map": {
+ "version": "1.8.0",
+ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz",
+ "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==",
+ "dev": true,
+ "dependencies": {
+ "safe-buffer": "~5.1.1"
+ }
+ },
+ "node_modules/cookie": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.1.tgz",
+ "integrity": "sha512-ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/cookie-signature": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz",
+ "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=",
+ "dev": true
+ },
+ "node_modules/copy-concurrently": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz",
+ "integrity": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==",
+ "dev": true,
+ "dependencies": {
+ "aproba": "^1.1.1",
+ "fs-write-stream-atomic": "^1.0.8",
+ "iferr": "^0.1.5",
+ "mkdirp": "^0.5.1",
+ "rimraf": "^2.5.4",
+ "run-queue": "^1.0.0"
+ }
+ },
+ "node_modules/copy-concurrently/node_modules/aproba": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz",
+ "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==",
+ "dev": true
+ },
+ "node_modules/copy-concurrently/node_modules/mkdirp": {
+ "version": "0.5.5",
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz",
+ "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==",
+ "dev": true,
+ "dependencies": {
+ "minimist": "^1.2.5"
+ },
+ "bin": {
+ "mkdirp": "bin/cmd.js"
+ }
+ },
+ "node_modules/copy-concurrently/node_modules/rimraf": {
+ "version": "2.7.1",
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz",
+ "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==",
+ "dev": true,
+ "dependencies": {
+ "glob": "^7.1.3"
+ },
+ "bin": {
+ "rimraf": "bin.js"
+ }
+ },
+ "node_modules/copy-descriptor": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz",
+ "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/copy-to-clipboard": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/copy-to-clipboard/-/copy-to-clipboard-3.3.1.tgz",
+ "integrity": "sha512-i13qo6kIHTTpCm8/Wup+0b1mVWETvu2kIMzKoK8FpkLkFxlt0znUAHcMzox+T8sPlqtZXq3CulEjQHsYiGFJUw==",
+ "dev": true,
+ "dependencies": {
+ "toggle-selection": "^1.0.6"
+ }
+ },
+ "node_modules/core-js": {
+ "version": "3.20.2",
+ "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.20.2.tgz",
+ "integrity": "sha512-nuqhq11DcOAbFBV4zCbKeGbKQsUDRqTX0oqx7AttUBuqe3h20ixsE039QHelbL6P4h+9kytVqyEtyZ6gsiwEYw==",
+ "dev": true,
+ "hasInstallScript": true,
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/core-js"
+ }
+ },
+ "node_modules/core-js-compat": {
+ "version": "3.20.2",
+ "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.20.2.tgz",
+ "integrity": "sha512-qZEzVQ+5Qh6cROaTPFLNS4lkvQ6mBzE3R6A6EEpssj7Zr2egMHgsy4XapdifqJDGC9CBiNv7s+ejI96rLNQFdg==",
+ "dev": true,
+ "dependencies": {
+ "browserslist": "^4.19.1",
+ "semver": "7.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/core-js"
+ }
+ },
+ "node_modules/core-js-compat/node_modules/semver": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz",
+ "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==",
+ "dev": true,
+ "bin": {
+ "semver": "bin/semver.js"
+ }
+ },
+ "node_modules/core-js-pure": {
+ "version": "3.20.2",
+ "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.20.2.tgz",
+ "integrity": "sha512-CmWHvSKn2vNL6p6StNp1EmMIfVY/pqn3JLAjfZQ8WZGPOlGoO92EkX9/Mk81i6GxvoPXjUqEQnpM3rJ5QxxIOg==",
+ "dev": true,
+ "hasInstallScript": true,
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/core-js"
+ }
+ },
+ "node_modules/core-util-is": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz",
+ "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ=="
+ },
+ "node_modules/cosmiconfig": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz",
+ "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==",
+ "dev": true,
+ "dependencies": {
+ "@types/parse-json": "^4.0.0",
+ "import-fresh": "^3.1.0",
+ "parse-json": "^5.0.0",
+ "path-type": "^4.0.0",
+ "yaml": "^1.7.2"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/cp-file": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/cp-file/-/cp-file-7.0.0.tgz",
+ "integrity": "sha512-0Cbj7gyvFVApzpK/uhCtQ/9kE9UnYpxMzaq5nQQC/Dh4iaj5fxp7iEFIullrYwzj8nf0qnsI1Qsx34hAeAebvw==",
+ "dev": true,
+ "dependencies": {
+ "graceful-fs": "^4.1.2",
+ "make-dir": "^3.0.0",
+ "nested-error-stacks": "^2.0.0",
+ "p-event": "^4.1.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/cp-file/node_modules/make-dir": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
+ "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
+ "dev": true,
+ "dependencies": {
+ "semver": "^6.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/cpy": {
+ "version": "8.1.2",
+ "resolved": "https://registry.npmjs.org/cpy/-/cpy-8.1.2.tgz",
+ "integrity": "sha512-dmC4mUesv0OYH2kNFEidtf/skUwv4zePmGeepjyyJ0qTo5+8KhA1o99oIAwVVLzQMAeDJml74d6wPPKb6EZUTg==",
+ "dev": true,
+ "dependencies": {
+ "arrify": "^2.0.1",
+ "cp-file": "^7.0.0",
+ "globby": "^9.2.0",
+ "has-glob": "^1.0.0",
+ "junk": "^3.1.0",
+ "nested-error-stacks": "^2.1.0",
+ "p-all": "^2.1.0",
+ "p-filter": "^2.1.0",
+ "p-map": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/cpy/node_modules/@nodelib/fs.stat": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz",
+ "integrity": "sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==",
+ "dev": true,
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/cpy/node_modules/array-union": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz",
+ "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=",
+ "dev": true,
+ "dependencies": {
+ "array-uniq": "^1.0.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/cpy/node_modules/braces": {
+ "version": "2.3.2",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
+ "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==",
+ "dev": true,
+ "dependencies": {
+ "arr-flatten": "^1.1.0",
+ "array-unique": "^0.3.2",
+ "extend-shallow": "^2.0.1",
+ "fill-range": "^4.0.0",
+ "isobject": "^3.0.1",
+ "repeat-element": "^1.1.2",
+ "snapdragon": "^0.8.1",
+ "snapdragon-node": "^2.0.1",
+ "split-string": "^3.0.2",
+ "to-regex": "^3.0.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/cpy/node_modules/braces/node_modules/extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+ "dev": true,
+ "dependencies": {
+ "is-extendable": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/cpy/node_modules/dir-glob": {
+ "version": "2.2.2",
+ "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-2.2.2.tgz",
+ "integrity": "sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==",
+ "dev": true,
+ "dependencies": {
+ "path-type": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/cpy/node_modules/fast-glob": {
+ "version": "2.2.7",
+ "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-2.2.7.tgz",
+ "integrity": "sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==",
+ "dev": true,
+ "dependencies": {
+ "@mrmlnc/readdir-enhanced": "^2.2.1",
+ "@nodelib/fs.stat": "^1.1.2",
+ "glob-parent": "^3.1.0",
+ "is-glob": "^4.0.0",
+ "merge2": "^1.2.3",
+ "micromatch": "^3.1.10"
+ },
+ "engines": {
+ "node": ">=4.0.0"
+ }
+ },
+ "node_modules/cpy/node_modules/fill-range": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz",
+ "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=",
+ "dev": true,
+ "dependencies": {
+ "extend-shallow": "^2.0.1",
+ "is-number": "^3.0.0",
+ "repeat-string": "^1.6.1",
+ "to-regex-range": "^2.1.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/cpy/node_modules/fill-range/node_modules/extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+ "dev": true,
+ "dependencies": {
+ "is-extendable": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/cpy/node_modules/glob-parent": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz",
+ "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=",
+ "dev": true,
+ "dependencies": {
+ "is-glob": "^3.1.0",
+ "path-dirname": "^1.0.0"
+ }
+ },
+ "node_modules/cpy/node_modules/glob-parent/node_modules/is-glob": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz",
+ "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=",
+ "dev": true,
+ "dependencies": {
+ "is-extglob": "^2.1.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/cpy/node_modules/globby": {
+ "version": "9.2.0",
+ "resolved": "https://registry.npmjs.org/globby/-/globby-9.2.0.tgz",
+ "integrity": "sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg==",
+ "dev": true,
+ "dependencies": {
+ "@types/glob": "^7.1.1",
+ "array-union": "^1.0.2",
+ "dir-glob": "^2.2.2",
+ "fast-glob": "^2.2.6",
+ "glob": "^7.1.3",
+ "ignore": "^4.0.3",
+ "pify": "^4.0.1",
+ "slash": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/cpy/node_modules/ignore": {
+ "version": "4.0.6",
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz",
+ "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==",
+ "dev": true,
+ "engines": {
+ "node": ">= 4"
+ }
+ },
+ "node_modules/cpy/node_modules/is-buffer": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
+ "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==",
+ "dev": true
+ },
+ "node_modules/cpy/node_modules/is-extendable": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+ "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/cpy/node_modules/is-number": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz",
+ "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=",
+ "dev": true,
+ "dependencies": {
+ "kind-of": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/cpy/node_modules/is-number/node_modules/kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "dependencies": {
+ "is-buffer": "^1.1.5"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/cpy/node_modules/micromatch": {
+ "version": "3.1.10",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
+ "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
+ "dev": true,
+ "dependencies": {
+ "arr-diff": "^4.0.0",
+ "array-unique": "^0.3.2",
+ "braces": "^2.3.1",
+ "define-property": "^2.0.2",
+ "extend-shallow": "^3.0.2",
+ "extglob": "^2.0.4",
+ "fragment-cache": "^0.2.1",
+ "kind-of": "^6.0.2",
+ "nanomatch": "^1.2.9",
+ "object.pick": "^1.3.0",
+ "regex-not": "^1.0.0",
+ "snapdragon": "^0.8.1",
+ "to-regex": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/cpy/node_modules/path-type": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz",
+ "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==",
+ "dev": true,
+ "dependencies": {
+ "pify": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/cpy/node_modules/path-type/node_modules/pify": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz",
+ "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=",
+ "dev": true,
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/cpy/node_modules/slash": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz",
+ "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==",
+ "dev": true,
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/cpy/node_modules/to-regex-range": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz",
+ "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=",
+ "dev": true,
+ "dependencies": {
+ "is-number": "^3.0.0",
+ "repeat-string": "^1.6.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/create-ecdh": {
+ "version": "4.0.4",
+ "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz",
+ "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==",
+ "dev": true,
+ "dependencies": {
+ "bn.js": "^4.1.0",
+ "elliptic": "^6.5.3"
+ }
+ },
+ "node_modules/create-ecdh/node_modules/bn.js": {
+ "version": "4.12.0",
+ "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz",
+ "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==",
+ "dev": true
+ },
+ "node_modules/create-hash": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz",
+ "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==",
+ "dev": true,
+ "dependencies": {
+ "cipher-base": "^1.0.1",
+ "inherits": "^2.0.1",
+ "md5.js": "^1.3.4",
+ "ripemd160": "^2.0.1",
+ "sha.js": "^2.4.0"
+ }
+ },
+ "node_modules/create-hmac": {
+ "version": "1.1.7",
+ "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz",
+ "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==",
+ "dev": true,
+ "dependencies": {
+ "cipher-base": "^1.0.3",
+ "create-hash": "^1.1.0",
+ "inherits": "^2.0.1",
+ "ripemd160": "^2.0.0",
+ "safe-buffer": "^5.0.1",
+ "sha.js": "^2.4.8"
+ }
+ },
+ "node_modules/cross-spawn": {
+ "version": "7.0.3",
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
+ "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
+ "dev": true,
+ "dependencies": {
+ "path-key": "^3.1.0",
+ "shebang-command": "^2.0.0",
+ "which": "^2.0.1"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/crypto-browserify": {
+ "version": "3.12.0",
+ "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz",
+ "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==",
+ "dev": true,
+ "dependencies": {
+ "browserify-cipher": "^1.0.0",
+ "browserify-sign": "^4.0.0",
+ "create-ecdh": "^4.0.0",
+ "create-hash": "^1.1.0",
+ "create-hmac": "^1.1.0",
+ "diffie-hellman": "^5.0.0",
+ "inherits": "^2.0.1",
+ "pbkdf2": "^3.0.3",
+ "public-encrypt": "^4.0.0",
+ "randombytes": "^2.0.0",
+ "randomfill": "^1.0.3"
+ },
+ "engines": {
+ "node": "*"
+ }
+ },
+ "node_modules/css-loader": {
+ "version": "3.6.0",
+ "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-3.6.0.tgz",
+ "integrity": "sha512-M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ==",
+ "dev": true,
+ "dependencies": {
+ "camelcase": "^5.3.1",
+ "cssesc": "^3.0.0",
+ "icss-utils": "^4.1.1",
+ "loader-utils": "^1.2.3",
+ "normalize-path": "^3.0.0",
+ "postcss": "^7.0.32",
+ "postcss-modules-extract-imports": "^2.0.0",
+ "postcss-modules-local-by-default": "^3.0.2",
+ "postcss-modules-scope": "^2.2.0",
+ "postcss-modules-values": "^3.0.0",
+ "postcss-value-parser": "^4.1.0",
+ "schema-utils": "^2.7.0",
+ "semver": "^6.3.0"
+ },
+ "engines": {
+ "node": ">= 8.9.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ },
+ "peerDependencies": {
+ "webpack": "^4.0.0 || ^5.0.0"
+ }
+ },
+ "node_modules/css-loader/node_modules/json5": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz",
+ "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==",
+ "dev": true,
+ "dependencies": {
+ "minimist": "^1.2.0"
+ },
+ "bin": {
+ "json5": "lib/cli.js"
+ }
+ },
+ "node_modules/css-loader/node_modules/loader-utils": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz",
+ "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==",
+ "dev": true,
+ "dependencies": {
+ "big.js": "^5.2.2",
+ "emojis-list": "^3.0.0",
+ "json5": "^1.0.1"
+ },
+ "engines": {
+ "node": ">=4.0.0"
+ }
+ },
+ "node_modules/css-loader/node_modules/schema-utils": {
+ "version": "2.7.1",
+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz",
+ "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==",
+ "dev": true,
+ "dependencies": {
+ "@types/json-schema": "^7.0.5",
+ "ajv": "^6.12.4",
+ "ajv-keywords": "^3.5.2"
+ },
+ "engines": {
+ "node": ">= 8.9.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ }
+ },
+ "node_modules/css-select": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.2.1.tgz",
+ "integrity": "sha512-/aUslKhzkTNCQUB2qTX84lVmfia9NyjP3WpDGtj/WxhwBzWBYUV3DgUpurHTme8UTPcPlAD1DJ+b0nN/t50zDQ==",
+ "dev": true,
+ "dependencies": {
+ "boolbase": "^1.0.0",
+ "css-what": "^5.1.0",
+ "domhandler": "^4.3.0",
+ "domutils": "^2.8.0",
+ "nth-check": "^2.0.1"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/fb55"
+ }
+ },
+ "node_modules/css-what": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/css-what/-/css-what-5.1.0.tgz",
+ "integrity": "sha512-arSMRWIIFY0hV8pIxZMEfmMI47Wj3R/aWpZDDxWYCPEiOMv6tfOrnpDtgxBYPEQD4V0Y/958+1TdC3iWTFcUPw==",
+ "dev": true,
+ "engines": {
+ "node": ">= 6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/fb55"
+ }
+ },
+ "node_modules/cssesc": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
+ "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
+ "dev": true,
+ "bin": {
+ "cssesc": "bin/cssesc"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/cssom": {
+ "version": "0.4.4",
+ "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz",
+ "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==",
+ "dev": true
+ },
+ "node_modules/cssstyle": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz",
+ "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==",
+ "dev": true,
+ "dependencies": {
+ "cssom": "~0.3.6"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/cssstyle/node_modules/cssom": {
+ "version": "0.3.8",
+ "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz",
+ "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==",
+ "dev": true
+ },
+ "node_modules/csstype": {
+ "version": "2.6.19",
+ "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.19.tgz",
+ "integrity": "sha512-ZVxXaNy28/k3kJg0Fou5MiYpp88j7H9hLZp8PDC3jV0WFjfH5E9xHb56L0W59cPbKbcHXeP4qyT8PrHp8t6LcQ==",
+ "dev": true
+ },
+ "node_modules/cyclist": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz",
+ "integrity": "sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk=",
+ "dev": true
+ },
+ "node_modules/data-urls": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz",
+ "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==",
+ "dev": true,
+ "dependencies": {
+ "abab": "^2.0.3",
+ "whatwg-mimetype": "^2.3.0",
+ "whatwg-url": "^8.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/debug": {
+ "version": "4.3.3",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz",
+ "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==",
+ "dev": true,
+ "dependencies": {
+ "ms": "2.1.2"
+ },
+ "engines": {
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/decimal.js": {
+ "version": "10.3.1",
+ "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.3.1.tgz",
+ "integrity": "sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ==",
+ "dev": true
+ },
+ "node_modules/decode-named-character-reference": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.0.1.tgz",
+ "integrity": "sha512-YV/0HQHreRwKb7uBopyIkLG17jG6Sv2qUchk9qSoVJ2f+flwRsPNBO0hAnjt6mTNYUT+vw9Gy2ihXg4sUWPi2w==",
+ "dev": true,
+ "dependencies": {
+ "character-entities": "^2.0.0"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/decode-named-character-reference/node_modules/character-entities": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.1.tgz",
+ "integrity": "sha512-OzmutCf2Kmc+6DrFrrPS8/tDh2+DpnrfzdICHWhcVC9eOd0N1PXmQEE1a8iM4IziIAG+8tmTq3K+oo0ubH6RRQ==",
+ "dev": true,
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/decode-uri-component": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz",
+ "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10"
+ }
+ },
+ "node_modules/dedent": {
+ "version": "0.7.0",
+ "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz",
+ "integrity": "sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=",
+ "dev": true
+ },
+ "node_modules/deep-is": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
+ "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
+ "dev": true
+ },
+ "node_modules/deep-object-diff": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/deep-object-diff/-/deep-object-diff-1.1.0.tgz",
+ "integrity": "sha512-b+QLs5vHgS+IoSNcUE4n9HP2NwcHj7aqnJWsjPtuG75Rh5TOaGt0OjAYInh77d5T16V5cRDC+Pw/6ZZZiETBGw==",
+ "dev": true
+ },
+ "node_modules/deepmerge": {
+ "version": "4.2.2",
+ "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz",
+ "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/define-properties": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz",
+ "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==",
+ "dev": true,
+ "dependencies": {
+ "object-keys": "^1.0.12"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/define-property": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz",
+ "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==",
+ "dev": true,
+ "dependencies": {
+ "is-descriptor": "^1.0.2",
+ "isobject": "^3.0.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/delayed-stream": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
+ "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=",
+ "dev": true,
+ "engines": {
+ "node": ">=0.4.0"
+ }
+ },
+ "node_modules/delegates": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz",
+ "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=",
+ "dev": true
+ },
+ "node_modules/depd": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz",
+ "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/dequal": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.2.tgz",
+ "integrity": "sha512-q9K8BlJVxK7hQYqa6XISGmBZbtQQWVXSrRrWreHC94rMt1QL/Impruc+7p2CYSYuVIUr+YCt6hjrs1kkdJRTug==",
+ "dev": true,
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/des.js": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz",
+ "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==",
+ "dev": true,
+ "dependencies": {
+ "inherits": "^2.0.1",
+ "minimalistic-assert": "^1.0.0"
+ }
+ },
+ "node_modules/destroy": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz",
+ "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=",
+ "dev": true
+ },
+ "node_modules/detab": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/detab/-/detab-2.0.4.tgz",
+ "integrity": "sha512-8zdsQA5bIkoRECvCrNKPla84lyoR7DSAyf7p0YgXzBO9PDJx8KntPUay7NS6yp+KdxdVtiE5SpHKtbp2ZQyA9g==",
+ "dev": true,
+ "dependencies": {
+ "repeat-string": "^1.5.4"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/detect-newline": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz",
+ "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/detect-port": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/detect-port/-/detect-port-1.3.0.tgz",
+ "integrity": "sha512-E+B1gzkl2gqxt1IhUzwjrxBKRqx1UzC3WLONHinn8S3T6lwV/agVCyitiFOsGJ/eYuEUBvD71MZHy3Pv1G9doQ==",
+ "dev": true,
+ "dependencies": {
+ "address": "^1.0.1",
+ "debug": "^2.6.0"
+ },
+ "bin": {
+ "detect": "bin/detect-port",
+ "detect-port": "bin/detect-port"
+ },
+ "engines": {
+ "node": ">= 4.2.1"
+ }
+ },
+ "node_modules/detect-port-alt": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/detect-port-alt/-/detect-port-alt-1.1.6.tgz",
+ "integrity": "sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==",
+ "dev": true,
+ "dependencies": {
+ "address": "^1.0.1",
+ "debug": "^2.6.0"
+ },
+ "bin": {
+ "detect": "bin/detect-port",
+ "detect-port": "bin/detect-port"
+ },
+ "engines": {
+ "node": ">= 4.2.1"
+ }
+ },
+ "node_modules/detect-port-alt/node_modules/debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "dev": true,
+ "dependencies": {
+ "ms": "2.0.0"
+ }
+ },
+ "node_modules/detect-port-alt/node_modules/ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ },
+ "node_modules/detect-port/node_modules/debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "dev": true,
+ "dependencies": {
+ "ms": "2.0.0"
+ }
+ },
+ "node_modules/detect-port/node_modules/ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ },
+ "node_modules/diff": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/diff/-/diff-5.0.0.tgz",
+ "integrity": "sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.3.1"
+ }
+ },
+ "node_modules/diff-sequences": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.4.0.tgz",
+ "integrity": "sha512-YqiQzkrsmHMH5uuh8OdQFU9/ZpADnwzml8z0O5HvRNda+5UZsaX/xN+AAxfR2hWq1Y7HZnAzO9J5lJXOuDz2Ww==",
+ "dev": true,
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/diffie-hellman": {
+ "version": "5.0.3",
+ "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz",
+ "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==",
+ "dev": true,
+ "dependencies": {
+ "bn.js": "^4.1.0",
+ "miller-rabin": "^4.0.0",
+ "randombytes": "^2.0.0"
+ }
+ },
+ "node_modules/diffie-hellman/node_modules/bn.js": {
+ "version": "4.12.0",
+ "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz",
+ "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==",
+ "dev": true
+ },
+ "node_modules/dir-glob": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz",
+ "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==",
+ "dev": true,
+ "dependencies": {
+ "path-type": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/doctrine": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
+ "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==",
+ "dev": true,
+ "dependencies": {
+ "esutils": "^2.0.2"
+ },
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/docx": {
+ "version": "7.3.0",
+ "resolved": "https://registry.npmjs.org/docx/-/docx-7.3.0.tgz",
+ "integrity": "sha512-OkSGlDNWMRFY07OEhUTx1ouuzYi8s1b67JDI6m5/5ek4xoshtP+/Rx8eRdY8LbhvpFkngvUantvTsxY4XW8Heg==",
+ "dependencies": {
+ "@types/node": "^17.0.0",
+ "jszip": "^3.1.5",
+ "nanoid": "^3.1.20",
+ "xml": "^1.0.1",
+ "xml-js": "^1.6.8"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/dom-converter": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz",
+ "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==",
+ "dev": true,
+ "dependencies": {
+ "utila": "~0.4"
+ }
+ },
+ "node_modules/dom-serializer": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.3.2.tgz",
+ "integrity": "sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig==",
+ "dev": true,
+ "dependencies": {
+ "domelementtype": "^2.0.1",
+ "domhandler": "^4.2.0",
+ "entities": "^2.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1"
+ }
+ },
+ "node_modules/dom-walk": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.2.tgz",
+ "integrity": "sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==",
+ "dev": true
+ },
+ "node_modules/domain-browser": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz",
+ "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.4",
+ "npm": ">=1.2"
+ }
+ },
+ "node_modules/domelementtype": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.2.0.tgz",
+ "integrity": "sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/fb55"
+ }
+ ]
+ },
+ "node_modules/domexception": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz",
+ "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==",
+ "dev": true,
+ "dependencies": {
+ "webidl-conversions": "^5.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/domexception/node_modules/webidl-conversions": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz",
+ "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/domhandler": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.0.tgz",
+ "integrity": "sha512-fC0aXNQXqKSFTr2wDNZDhsEYjCiYsDWl3D01kwt25hm1YIPyDGHvvi3rw+PLqHAl/m71MaiF7d5zvBr0p5UB2g==",
+ "dev": true,
+ "dependencies": {
+ "domelementtype": "^2.2.0"
+ },
+ "engines": {
+ "node": ">= 4"
+ },
+ "funding": {
+ "url": "https://github.com/fb55/domhandler?sponsor=1"
+ }
+ },
+ "node_modules/domutils": {
+ "version": "2.8.0",
+ "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz",
+ "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==",
+ "dev": true,
+ "dependencies": {
+ "dom-serializer": "^1.0.1",
+ "domelementtype": "^2.2.0",
+ "domhandler": "^4.2.0"
+ },
+ "funding": {
+ "url": "https://github.com/fb55/domutils?sponsor=1"
+ }
+ },
+ "node_modules/dot-case": {
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz",
+ "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==",
+ "dev": true,
+ "dependencies": {
+ "no-case": "^3.0.4",
+ "tslib": "^2.0.3"
+ }
+ },
+ "node_modules/dotenv": {
+ "version": "8.6.0",
+ "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.6.0.tgz",
+ "integrity": "sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==",
+ "dev": true,
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/dotenv-expand": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz",
+ "integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==",
+ "dev": true
+ },
+ "node_modules/downshift": {
+ "version": "6.1.7",
+ "resolved": "https://registry.npmjs.org/downshift/-/downshift-6.1.7.tgz",
+ "integrity": "sha512-cVprZg/9Lvj/uhYRxELzlu1aezRcgPWBjTvspiGTVEU64gF5pRdSRKFVLcxqsZC637cLAGMbL40JavEfWnqgNg==",
+ "dev": true,
+ "dependencies": {
+ "@babel/runtime": "^7.14.8",
+ "compute-scroll-into-view": "^1.0.17",
+ "prop-types": "^15.7.2",
+ "react-is": "^17.0.2",
+ "tslib": "^2.3.0"
+ },
+ "peerDependencies": {
+ "react": ">=16.12.0"
+ }
+ },
+ "node_modules/duplexer": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz",
+ "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==",
+ "dev": true
+ },
+ "node_modules/duplexify": {
+ "version": "3.7.1",
+ "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz",
+ "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==",
+ "dev": true,
+ "dependencies": {
+ "end-of-stream": "^1.0.0",
+ "inherits": "^2.0.1",
+ "readable-stream": "^2.0.0",
+ "stream-shift": "^1.0.0"
+ }
+ },
+ "node_modules/ee-first": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
+ "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=",
+ "dev": true
+ },
+ "node_modules/electron-to-chromium": {
+ "version": "1.4.38",
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.38.tgz",
+ "integrity": "sha512-WhHt3sZazKj0KK/UpgsbGQnUUoFeAHVishzHFExMxagpZgjiGYSC9S0ZlbhCfSH2L2i+2A1yyqOIliTctMx7KQ==",
+ "dev": true
+ },
+ "node_modules/element-resize-detector": {
+ "version": "1.2.4",
+ "resolved": "https://registry.npmjs.org/element-resize-detector/-/element-resize-detector-1.2.4.tgz",
+ "integrity": "sha512-Fl5Ftk6WwXE0wqCgNoseKWndjzZlDCwuPTcoVZfCP9R3EHQF8qUtr3YUPNETegRBOKqQKPW3n4kiIWngGi8tKg==",
+ "dev": true,
+ "dependencies": {
+ "batch-processor": "1.0.0"
+ }
+ },
+ "node_modules/elliptic": {
+ "version": "6.5.4",
+ "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz",
+ "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==",
+ "dev": true,
+ "dependencies": {
+ "bn.js": "^4.11.9",
+ "brorand": "^1.1.0",
+ "hash.js": "^1.0.0",
+ "hmac-drbg": "^1.0.1",
+ "inherits": "^2.0.4",
+ "minimalistic-assert": "^1.0.1",
+ "minimalistic-crypto-utils": "^1.0.1"
+ }
+ },
+ "node_modules/elliptic/node_modules/bn.js": {
+ "version": "4.12.0",
+ "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz",
+ "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==",
+ "dev": true
+ },
+ "node_modules/emittery": {
+ "version": "0.8.1",
+ "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.8.1.tgz",
+ "integrity": "sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==",
+ "dev": true,
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sindresorhus/emittery?sponsor=1"
+ }
+ },
+ "node_modules/emoji-regex": {
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
+ "dev": true
+ },
+ "node_modules/emojis-list": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz",
+ "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==",
+ "dev": true,
+ "engines": {
+ "node": ">= 4"
+ }
+ },
+ "node_modules/emotion-theming": {
+ "version": "10.3.0",
+ "resolved": "https://registry.npmjs.org/emotion-theming/-/emotion-theming-10.3.0.tgz",
+ "integrity": "sha512-mXiD2Oj7N9b6+h/dC6oLf9hwxbtKHQjoIqtodEyL8CpkN4F3V4IK/BT4D0C7zSs4BBFOu4UlPJbvvBLa88SGEA==",
+ "dev": true,
+ "dependencies": {
+ "@babel/runtime": "^7.5.5",
+ "@emotion/weak-memoize": "0.2.5",
+ "hoist-non-react-statics": "^3.3.0"
+ },
+ "peerDependencies": {
+ "@emotion/core": "^10.0.27",
+ "react": ">=16.3.0"
+ }
+ },
+ "node_modules/encodeurl": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
+ "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/end-of-stream": {
+ "version": "1.4.4",
+ "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz",
+ "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==",
+ "dev": true,
+ "dependencies": {
+ "once": "^1.4.0"
+ }
+ },
+ "node_modules/endent": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/endent/-/endent-2.1.0.tgz",
+ "integrity": "sha512-r8VyPX7XL8U01Xgnb1CjZ3XV+z90cXIJ9JPE/R9SEC9vpw2P6CfsRPJmp20DppC5N7ZAMCmjYkJIa744Iyg96w==",
+ "dev": true,
+ "dependencies": {
+ "dedent": "^0.7.0",
+ "fast-json-parse": "^1.0.3",
+ "objectorarray": "^1.0.5"
+ }
+ },
+ "node_modules/enhanced-resolve": {
+ "version": "4.5.0",
+ "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz",
+ "integrity": "sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==",
+ "dev": true,
+ "dependencies": {
+ "graceful-fs": "^4.1.2",
+ "memory-fs": "^0.5.0",
+ "tapable": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/enhanced-resolve/node_modules/memory-fs": {
+ "version": "0.5.0",
+ "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz",
+ "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==",
+ "dev": true,
+ "dependencies": {
+ "errno": "^0.1.3",
+ "readable-stream": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=4.3.0 <5.0.0 || >=5.10"
+ }
+ },
+ "node_modules/entities": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz",
+ "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==",
+ "dev": true,
+ "funding": {
+ "url": "https://github.com/fb55/entities?sponsor=1"
+ }
+ },
+ "node_modules/errno": {
+ "version": "0.1.8",
+ "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz",
+ "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==",
+ "dev": true,
+ "dependencies": {
+ "prr": "~1.0.1"
+ },
+ "bin": {
+ "errno": "cli.js"
+ }
+ },
+ "node_modules/error-ex": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
+ "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
+ "dev": true,
+ "dependencies": {
+ "is-arrayish": "^0.2.1"
+ }
+ },
+ "node_modules/error-stack-parser": {
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.0.6.tgz",
+ "integrity": "sha512-d51brTeqC+BHlwF0BhPtcYgF5nlzf9ZZ0ZIUQNZpc9ZB9qw5IJ2diTrBY9jlCJkTLITYPjmiX6OWCwH+fuyNgQ==",
+ "dev": true,
+ "dependencies": {
+ "stackframe": "^1.1.1"
+ }
+ },
+ "node_modules/es-abstract": {
+ "version": "1.19.1",
+ "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.1.tgz",
+ "integrity": "sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.2",
+ "es-to-primitive": "^1.2.1",
+ "function-bind": "^1.1.1",
+ "get-intrinsic": "^1.1.1",
+ "get-symbol-description": "^1.0.0",
+ "has": "^1.0.3",
+ "has-symbols": "^1.0.2",
+ "internal-slot": "^1.0.3",
+ "is-callable": "^1.2.4",
+ "is-negative-zero": "^2.0.1",
+ "is-regex": "^1.1.4",
+ "is-shared-array-buffer": "^1.0.1",
+ "is-string": "^1.0.7",
+ "is-weakref": "^1.0.1",
+ "object-inspect": "^1.11.0",
+ "object-keys": "^1.1.1",
+ "object.assign": "^4.1.2",
+ "string.prototype.trimend": "^1.0.4",
+ "string.prototype.trimstart": "^1.0.4",
+ "unbox-primitive": "^1.0.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/es-array-method-boxes-properly": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz",
+ "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==",
+ "dev": true
+ },
+ "node_modules/es-get-iterator": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.2.tgz",
+ "integrity": "sha512-+DTO8GYwbMCwbywjimwZMHp8AuYXOS2JZFWoi2AlPOS3ebnII9w/NLpNZtA7A0YLaVDw+O7KFCeoIV7OPvM7hQ==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.2",
+ "get-intrinsic": "^1.1.0",
+ "has-symbols": "^1.0.1",
+ "is-arguments": "^1.1.0",
+ "is-map": "^2.0.2",
+ "is-set": "^2.0.2",
+ "is-string": "^1.0.5",
+ "isarray": "^2.0.5"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/es-to-primitive": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
+ "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
+ "dev": true,
+ "dependencies": {
+ "is-callable": "^1.1.4",
+ "is-date-object": "^1.0.1",
+ "is-symbol": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/es5-shim": {
+ "version": "4.6.4",
+ "resolved": "https://registry.npmjs.org/es5-shim/-/es5-shim-4.6.4.tgz",
+ "integrity": "sha512-Z0f7OUYZ8JfqT12d3Tgh2ErxIH5Shaz97GE8qyDG9quxb2Hmh2vvFHlOFjx6lzyD0CRgvJfnNYcisjdbRp7MPw==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.4.0"
+ }
+ },
+ "node_modules/es6-shim": {
+ "version": "0.35.6",
+ "resolved": "https://registry.npmjs.org/es6-shim/-/es6-shim-0.35.6.tgz",
+ "integrity": "sha512-EmTr31wppcaIAgblChZiuN/l9Y7DPyw8Xtbg7fIVngn6zMW+IEBJDJngeKC3x6wr0V/vcA2wqeFnaw1bFJbDdA==",
+ "dev": true
+ },
+ "node_modules/escalade": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz",
+ "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==",
+ "dev": true,
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/escape-html": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
+ "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=",
+ "dev": true
+ },
+ "node_modules/escape-string-regexp": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
+ "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=",
+ "dev": true,
+ "engines": {
+ "node": ">=0.8.0"
+ }
+ },
+ "node_modules/escodegen": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz",
+ "integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==",
+ "dev": true,
+ "dependencies": {
+ "esprima": "^4.0.1",
+ "estraverse": "^5.2.0",
+ "esutils": "^2.0.2",
+ "optionator": "^0.8.1"
+ },
+ "bin": {
+ "escodegen": "bin/escodegen.js",
+ "esgenerate": "bin/esgenerate.js"
+ },
+ "engines": {
+ "node": ">=6.0"
+ },
+ "optionalDependencies": {
+ "source-map": "~0.6.1"
+ }
+ },
+ "node_modules/escodegen/node_modules/source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true,
+ "optional": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/eslint-scope": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz",
+ "integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==",
+ "dev": true,
+ "dependencies": {
+ "esrecurse": "^4.1.0",
+ "estraverse": "^4.1.1"
+ },
+ "engines": {
+ "node": ">=4.0.0"
+ }
+ },
+ "node_modules/eslint-scope/node_modules/estraverse": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
+ "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
+ "dev": true,
+ "engines": {
+ "node": ">=4.0"
+ }
+ },
+ "node_modules/esprima": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
+ "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
+ "dev": true,
+ "bin": {
+ "esparse": "bin/esparse.js",
+ "esvalidate": "bin/esvalidate.js"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/esrecurse": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
+ "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
+ "dev": true,
+ "dependencies": {
+ "estraverse": "^5.2.0"
+ },
+ "engines": {
+ "node": ">=4.0"
+ }
+ },
+ "node_modules/estraverse": {
+ "version": "5.3.0",
+ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
+ "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
+ "dev": true,
+ "engines": {
+ "node": ">=4.0"
+ }
+ },
+ "node_modules/estree-to-babel": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/estree-to-babel/-/estree-to-babel-3.2.1.tgz",
+ "integrity": "sha512-YNF+mZ/Wu2FU/gvmzuWtYc8rloubL7wfXCTgouFrnjGVXPA/EeYYA7pupXWrb3Iv1cTBeSSxxJIbK23l4MRNqg==",
+ "dev": true,
+ "dependencies": {
+ "@babel/traverse": "^7.1.6",
+ "@babel/types": "^7.2.0",
+ "c8": "^7.6.0"
+ },
+ "engines": {
+ "node": ">=8.3.0"
+ }
+ },
+ "node_modules/estree-walker": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz",
+ "integrity": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==",
+ "dev": true
+ },
+ "node_modules/esutils": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
+ "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/etag": {
+ "version": "1.8.1",
+ "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
+ "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/events": {
+ "version": "3.3.0",
+ "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz",
+ "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.8.x"
+ }
+ },
+ "node_modules/evp_bytestokey": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz",
+ "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==",
+ "dev": true,
+ "dependencies": {
+ "md5.js": "^1.3.4",
+ "safe-buffer": "^5.1.1"
+ }
+ },
+ "node_modules/exec-sh": {
+ "version": "0.3.6",
+ "resolved": "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.6.tgz",
+ "integrity": "sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w==",
+ "dev": true
+ },
+ "node_modules/execa": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz",
+ "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==",
+ "dev": true,
+ "dependencies": {
+ "cross-spawn": "^7.0.3",
+ "get-stream": "^6.0.0",
+ "human-signals": "^2.1.0",
+ "is-stream": "^2.0.0",
+ "merge-stream": "^2.0.0",
+ "npm-run-path": "^4.0.1",
+ "onetime": "^5.1.2",
+ "signal-exit": "^3.0.3",
+ "strip-final-newline": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sindresorhus/execa?sponsor=1"
+ }
+ },
+ "node_modules/exit": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz",
+ "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/expand-brackets": {
+ "version": "2.1.4",
+ "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz",
+ "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=",
+ "dev": true,
+ "dependencies": {
+ "debug": "^2.3.3",
+ "define-property": "^0.2.5",
+ "extend-shallow": "^2.0.1",
+ "posix-character-classes": "^0.1.0",
+ "regex-not": "^1.0.0",
+ "snapdragon": "^0.8.1",
+ "to-regex": "^3.0.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/expand-brackets/node_modules/debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "dev": true,
+ "dependencies": {
+ "ms": "2.0.0"
+ }
+ },
+ "node_modules/expand-brackets/node_modules/define-property": {
+ "version": "0.2.5",
+ "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
+ "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
+ "dev": true,
+ "dependencies": {
+ "is-descriptor": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/expand-brackets/node_modules/extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+ "dev": true,
+ "dependencies": {
+ "is-extendable": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/expand-brackets/node_modules/is-accessor-descriptor": {
+ "version": "0.1.6",
+ "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz",
+ "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=",
+ "dev": true,
+ "dependencies": {
+ "kind-of": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/expand-brackets/node_modules/is-accessor-descriptor/node_modules/kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "dependencies": {
+ "is-buffer": "^1.1.5"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/expand-brackets/node_modules/is-buffer": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
+ "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==",
+ "dev": true
+ },
+ "node_modules/expand-brackets/node_modules/is-data-descriptor": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz",
+ "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=",
+ "dev": true,
+ "dependencies": {
+ "kind-of": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/expand-brackets/node_modules/is-data-descriptor/node_modules/kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "dependencies": {
+ "is-buffer": "^1.1.5"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/expand-brackets/node_modules/is-descriptor": {
+ "version": "0.1.6",
+ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz",
+ "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==",
+ "dev": true,
+ "dependencies": {
+ "is-accessor-descriptor": "^0.1.6",
+ "is-data-descriptor": "^0.1.4",
+ "kind-of": "^5.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/expand-brackets/node_modules/is-extendable": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+ "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/expand-brackets/node_modules/kind-of": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
+ "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/expand-brackets/node_modules/ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ },
+ "node_modules/expect": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/expect/-/expect-27.4.6.tgz",
+ "integrity": "sha512-1M/0kAALIaj5LaG66sFJTbRsWTADnylly82cu4bspI0nl+pgP4E6Bh/aqdHlTUjul06K7xQnnrAoqfxVU0+/ag==",
+ "dev": true,
+ "dependencies": {
+ "@jest/types": "^27.4.2",
+ "jest-get-type": "^27.4.0",
+ "jest-matcher-utils": "^27.4.6",
+ "jest-message-util": "^27.4.6"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/expect/node_modules/@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "dependencies": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/expect/node_modules/@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "dependencies": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "node_modules/expect/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/expect/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/expect/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/expect/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/express": {
+ "version": "4.17.2",
+ "resolved": "https://registry.npmjs.org/express/-/express-4.17.2.tgz",
+ "integrity": "sha512-oxlxJxcQlYwqPWKVJJtvQiwHgosH/LrLSPA+H4UxpyvSS6jC5aH+5MoHFM+KABgTOt0APue4w66Ha8jCUo9QGg==",
+ "dev": true,
+ "dependencies": {
+ "accepts": "~1.3.7",
+ "array-flatten": "1.1.1",
+ "body-parser": "1.19.1",
+ "content-disposition": "0.5.4",
+ "content-type": "~1.0.4",
+ "cookie": "0.4.1",
+ "cookie-signature": "1.0.6",
+ "debug": "2.6.9",
+ "depd": "~1.1.2",
+ "encodeurl": "~1.0.2",
+ "escape-html": "~1.0.3",
+ "etag": "~1.8.1",
+ "finalhandler": "~1.1.2",
+ "fresh": "0.5.2",
+ "merge-descriptors": "1.0.1",
+ "methods": "~1.1.2",
+ "on-finished": "~2.3.0",
+ "parseurl": "~1.3.3",
+ "path-to-regexp": "0.1.7",
+ "proxy-addr": "~2.0.7",
+ "qs": "6.9.6",
+ "range-parser": "~1.2.1",
+ "safe-buffer": "5.2.1",
+ "send": "0.17.2",
+ "serve-static": "1.14.2",
+ "setprototypeof": "1.2.0",
+ "statuses": "~1.5.0",
+ "type-is": "~1.6.18",
+ "utils-merge": "1.0.1",
+ "vary": "~1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.10.0"
+ }
+ },
+ "node_modules/express/node_modules/debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "dev": true,
+ "dependencies": {
+ "ms": "2.0.0"
+ }
+ },
+ "node_modules/express/node_modules/ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ },
+ "node_modules/express/node_modules/qs": {
+ "version": "6.9.6",
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.9.6.tgz",
+ "integrity": "sha512-TIRk4aqYLNoJUbd+g2lEdz5kLWIuTMRagAXxl78Q0RiVjAOugHmeKNGdd3cwo/ktpf9aL9epCfFqWDEKysUlLQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/express/node_modules/safe-buffer": {
+ "version": "5.2.1",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
+ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ]
+ },
+ "node_modules/extend": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
+ "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
+ "dev": true
+ },
+ "node_modules/extend-shallow": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz",
+ "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=",
+ "dev": true,
+ "dependencies": {
+ "assign-symbols": "^1.0.0",
+ "is-extendable": "^1.0.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/extglob": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz",
+ "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==",
+ "dev": true,
+ "dependencies": {
+ "array-unique": "^0.3.2",
+ "define-property": "^1.0.0",
+ "expand-brackets": "^2.1.4",
+ "extend-shallow": "^2.0.1",
+ "fragment-cache": "^0.2.1",
+ "regex-not": "^1.0.0",
+ "snapdragon": "^0.8.1",
+ "to-regex": "^3.0.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/extglob/node_modules/define-property": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
+ "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
+ "dev": true,
+ "dependencies": {
+ "is-descriptor": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/extglob/node_modules/extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+ "dev": true,
+ "dependencies": {
+ "is-extendable": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/extglob/node_modules/is-extendable": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+ "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/fast-deep-equal": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
+ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
+ "dev": true
+ },
+ "node_modules/fast-glob": {
+ "version": "3.2.9",
+ "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.9.tgz",
+ "integrity": "sha512-MBwILhhD92sziIrMQwpqcuGERF+BH99ei2a3XsGJuqEKcSycAL+w0HWokFenZXona+kjFr82Lf71eTxNRC06XQ==",
+ "dev": true,
+ "dependencies": {
+ "@nodelib/fs.stat": "^2.0.2",
+ "@nodelib/fs.walk": "^1.2.3",
+ "glob-parent": "^5.1.2",
+ "merge2": "^1.3.0",
+ "micromatch": "^4.0.4"
+ },
+ "engines": {
+ "node": ">=8.6.0"
+ }
+ },
+ "node_modules/fast-json-parse": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/fast-json-parse/-/fast-json-parse-1.0.3.tgz",
+ "integrity": "sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==",
+ "dev": true
+ },
+ "node_modules/fast-json-stable-stringify": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
+ "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
+ "dev": true
+ },
+ "node_modules/fast-levenshtein": {
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
+ "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=",
+ "dev": true
+ },
+ "node_modules/fastq": {
+ "version": "1.13.0",
+ "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz",
+ "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==",
+ "dev": true,
+ "dependencies": {
+ "reusify": "^1.0.4"
+ }
+ },
+ "node_modules/fault": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/fault/-/fault-1.0.4.tgz",
+ "integrity": "sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==",
+ "dev": true,
+ "dependencies": {
+ "format": "^0.2.0"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/fb-watchman": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz",
+ "integrity": "sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==",
+ "dev": true,
+ "dependencies": {
+ "bser": "2.1.1"
+ }
+ },
+ "node_modules/figgy-pudding": {
+ "version": "3.5.2",
+ "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.2.tgz",
+ "integrity": "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==",
+ "dev": true
+ },
+ "node_modules/file-loader": {
+ "version": "6.2.0",
+ "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz",
+ "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==",
+ "dev": true,
+ "dependencies": {
+ "loader-utils": "^2.0.0",
+ "schema-utils": "^3.0.0"
+ },
+ "engines": {
+ "node": ">= 10.13.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ },
+ "peerDependencies": {
+ "webpack": "^4.0.0 || ^5.0.0"
+ }
+ },
+ "node_modules/file-saver": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/file-saver/-/file-saver-2.0.5.tgz",
+ "integrity": "sha512-P9bmyZ3h/PRG+Nzga+rbdI4OEpNDzAVyy74uVO9ATgzLK6VtAsYybF/+TOCvrc0MO793d6+42lLyZTw7/ArVzA==",
+ "dev": true
+ },
+ "node_modules/file-system-cache": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/file-system-cache/-/file-system-cache-1.0.5.tgz",
+ "integrity": "sha1-hCWbNqK7uNPW6xAh0xMv/mTP/08=",
+ "dev": true,
+ "dependencies": {
+ "bluebird": "^3.3.5",
+ "fs-extra": "^0.30.0",
+ "ramda": "^0.21.0"
+ }
+ },
+ "node_modules/file-system-cache/node_modules/fs-extra": {
+ "version": "0.30.0",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-0.30.0.tgz",
+ "integrity": "sha1-8jP/zAjU2n1DLapEl3aYnbHfk/A=",
+ "dev": true,
+ "dependencies": {
+ "graceful-fs": "^4.1.2",
+ "jsonfile": "^2.1.0",
+ "klaw": "^1.0.0",
+ "path-is-absolute": "^1.0.0",
+ "rimraf": "^2.2.8"
+ }
+ },
+ "node_modules/file-system-cache/node_modules/jsonfile": {
+ "version": "2.4.0",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz",
+ "integrity": "sha1-NzaitCi4e72gzIO1P6PWM6NcKug=",
+ "dev": true,
+ "optionalDependencies": {
+ "graceful-fs": "^4.1.6"
+ }
+ },
+ "node_modules/file-system-cache/node_modules/rimraf": {
+ "version": "2.7.1",
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz",
+ "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==",
+ "dev": true,
+ "dependencies": {
+ "glob": "^7.1.3"
+ },
+ "bin": {
+ "rimraf": "bin.js"
+ }
+ },
+ "node_modules/file-uri-to-path": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz",
+ "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==",
+ "dev": true,
+ "optional": true
+ },
+ "node_modules/filesize": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/filesize/-/filesize-6.1.0.tgz",
+ "integrity": "sha512-LpCHtPQ3sFx67z+uh2HnSyWSLLu5Jxo21795uRDuar/EOuYWXib5EmPaGIBuSnRqH2IODiKA2k5re/K9OnN/Yg==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.4.0"
+ }
+ },
+ "node_modules/fill-range": {
+ "version": "7.0.1",
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
+ "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
+ "dev": true,
+ "dependencies": {
+ "to-regex-range": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/finalhandler": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz",
+ "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==",
+ "dev": true,
+ "dependencies": {
+ "debug": "2.6.9",
+ "encodeurl": "~1.0.2",
+ "escape-html": "~1.0.3",
+ "on-finished": "~2.3.0",
+ "parseurl": "~1.3.3",
+ "statuses": "~1.5.0",
+ "unpipe": "~1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/finalhandler/node_modules/debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "dev": true,
+ "dependencies": {
+ "ms": "2.0.0"
+ }
+ },
+ "node_modules/finalhandler/node_modules/ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ },
+ "node_modules/find-cache-dir": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz",
+ "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==",
+ "dev": true,
+ "dependencies": {
+ "commondir": "^1.0.1",
+ "make-dir": "^2.0.0",
+ "pkg-dir": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/find-cache-dir/node_modules/find-up": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz",
+ "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==",
+ "dev": true,
+ "dependencies": {
+ "locate-path": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/find-cache-dir/node_modules/locate-path": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz",
+ "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==",
+ "dev": true,
+ "dependencies": {
+ "p-locate": "^3.0.0",
+ "path-exists": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/find-cache-dir/node_modules/p-limit": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
+ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
+ "dev": true,
+ "dependencies": {
+ "p-try": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/find-cache-dir/node_modules/p-locate": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz",
+ "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==",
+ "dev": true,
+ "dependencies": {
+ "p-limit": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/find-cache-dir/node_modules/path-exists": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz",
+ "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=",
+ "dev": true,
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/find-cache-dir/node_modules/pkg-dir": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz",
+ "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==",
+ "dev": true,
+ "dependencies": {
+ "find-up": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/find-root": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz",
+ "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==",
+ "dev": true
+ },
+ "node_modules/find-up": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
+ "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
+ "dev": true,
+ "dependencies": {
+ "locate-path": "^6.0.0",
+ "path-exists": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/flat-cache": {
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz",
+ "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==",
+ "dev": true,
+ "dependencies": {
+ "flatted": "^3.1.0",
+ "rimraf": "^3.0.2"
+ },
+ "engines": {
+ "node": "^10.12.0 || >=12.0.0"
+ }
+ },
+ "node_modules/flatted": {
+ "version": "3.2.4",
+ "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.4.tgz",
+ "integrity": "sha512-8/sOawo8tJ4QOBX8YlQBMxL8+RLZfxMQOif9o0KUKTNTjMYElWPE0r/m5VNFxTRd0NSw8qSy8dajrwX4RYI1Hw==",
+ "dev": true
+ },
+ "node_modules/flush-write-stream": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz",
+ "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==",
+ "dev": true,
+ "dependencies": {
+ "inherits": "^2.0.3",
+ "readable-stream": "^2.3.6"
+ }
+ },
+ "node_modules/for-in": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz",
+ "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/foreground-child": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-2.0.0.tgz",
+ "integrity": "sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==",
+ "dev": true,
+ "dependencies": {
+ "cross-spawn": "^7.0.0",
+ "signal-exit": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=8.0.0"
+ }
+ },
+ "node_modules/fork-ts-checker-webpack-plugin": {
+ "version": "4.1.6",
+ "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-4.1.6.tgz",
+ "integrity": "sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==",
+ "dev": true,
+ "dependencies": {
+ "@babel/code-frame": "^7.5.5",
+ "chalk": "^2.4.1",
+ "micromatch": "^3.1.10",
+ "minimatch": "^3.0.4",
+ "semver": "^5.6.0",
+ "tapable": "^1.0.0",
+ "worker-rpc": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=6.11.5",
+ "yarn": ">=1.0.0"
+ }
+ },
+ "node_modules/fork-ts-checker-webpack-plugin/node_modules/braces": {
+ "version": "2.3.2",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
+ "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==",
+ "dev": true,
+ "dependencies": {
+ "arr-flatten": "^1.1.0",
+ "array-unique": "^0.3.2",
+ "extend-shallow": "^2.0.1",
+ "fill-range": "^4.0.0",
+ "isobject": "^3.0.1",
+ "repeat-element": "^1.1.2",
+ "snapdragon": "^0.8.1",
+ "snapdragon-node": "^2.0.1",
+ "split-string": "^3.0.2",
+ "to-regex": "^3.0.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/fork-ts-checker-webpack-plugin/node_modules/braces/node_modules/extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+ "dev": true,
+ "dependencies": {
+ "is-extendable": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/fork-ts-checker-webpack-plugin/node_modules/fill-range": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz",
+ "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=",
+ "dev": true,
+ "dependencies": {
+ "extend-shallow": "^2.0.1",
+ "is-number": "^3.0.0",
+ "repeat-string": "^1.6.1",
+ "to-regex-range": "^2.1.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/fork-ts-checker-webpack-plugin/node_modules/fill-range/node_modules/extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+ "dev": true,
+ "dependencies": {
+ "is-extendable": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/fork-ts-checker-webpack-plugin/node_modules/is-buffer": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
+ "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==",
+ "dev": true
+ },
+ "node_modules/fork-ts-checker-webpack-plugin/node_modules/is-extendable": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+ "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/fork-ts-checker-webpack-plugin/node_modules/is-number": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz",
+ "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=",
+ "dev": true,
+ "dependencies": {
+ "kind-of": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/fork-ts-checker-webpack-plugin/node_modules/is-number/node_modules/kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "dependencies": {
+ "is-buffer": "^1.1.5"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/fork-ts-checker-webpack-plugin/node_modules/micromatch": {
+ "version": "3.1.10",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
+ "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
+ "dev": true,
+ "dependencies": {
+ "arr-diff": "^4.0.0",
+ "array-unique": "^0.3.2",
+ "braces": "^2.3.1",
+ "define-property": "^2.0.2",
+ "extend-shallow": "^3.0.2",
+ "extglob": "^2.0.4",
+ "fragment-cache": "^0.2.1",
+ "kind-of": "^6.0.2",
+ "nanomatch": "^1.2.9",
+ "object.pick": "^1.3.0",
+ "regex-not": "^1.0.0",
+ "snapdragon": "^0.8.1",
+ "to-regex": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/fork-ts-checker-webpack-plugin/node_modules/semver": {
+ "version": "5.7.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
+ "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
+ "dev": true,
+ "bin": {
+ "semver": "bin/semver"
+ }
+ },
+ "node_modules/fork-ts-checker-webpack-plugin/node_modules/to-regex-range": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz",
+ "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=",
+ "dev": true,
+ "dependencies": {
+ "is-number": "^3.0.0",
+ "repeat-string": "^1.6.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/form-data": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz",
+ "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==",
+ "dev": true,
+ "dependencies": {
+ "asynckit": "^0.4.0",
+ "combined-stream": "^1.0.8",
+ "mime-types": "^2.1.12"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/format": {
+ "version": "0.2.2",
+ "resolved": "https://registry.npmjs.org/format/-/format-0.2.2.tgz",
+ "integrity": "sha1-1hcBB+nv3E7TDJ3DkBbflCtctYs=",
+ "dev": true,
+ "engines": {
+ "node": ">=0.4.x"
+ }
+ },
+ "node_modules/forwarded": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
+ "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/fragment-cache": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz",
+ "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=",
+ "dev": true,
+ "dependencies": {
+ "map-cache": "^0.2.2"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/fresh": {
+ "version": "0.5.2",
+ "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
+ "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/from2": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz",
+ "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=",
+ "dev": true,
+ "dependencies": {
+ "inherits": "^2.0.1",
+ "readable-stream": "^2.0.0"
+ }
+ },
+ "node_modules/fs-extra": {
+ "version": "9.1.0",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz",
+ "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==",
+ "dev": true,
+ "dependencies": {
+ "at-least-node": "^1.0.0",
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/fs-minipass": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz",
+ "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==",
+ "dev": true,
+ "dependencies": {
+ "minipass": "^3.0.0"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/fs-monkey": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.3.tgz",
+ "integrity": "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==",
+ "dev": true
+ },
+ "node_modules/fs-write-stream-atomic": {
+ "version": "1.0.10",
+ "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz",
+ "integrity": "sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=",
+ "dev": true,
+ "dependencies": {
+ "graceful-fs": "^4.1.2",
+ "iferr": "^0.1.5",
+ "imurmurhash": "^0.1.4",
+ "readable-stream": "1 || 2"
+ }
+ },
+ "node_modules/fs.realpath": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
+ "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=",
+ "dev": true
+ },
+ "node_modules/fsevents": {
+ "version": "2.3.2",
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz",
+ "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==",
+ "dev": true,
+ "hasInstallScript": true,
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
+ }
+ },
+ "node_modules/function-bind": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
+ "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==",
+ "dev": true
+ },
+ "node_modules/function.prototype.name": {
+ "version": "1.1.5",
+ "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz",
+ "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.19.0",
+ "functions-have-names": "^1.2.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/functions-have-names": {
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.2.tgz",
+ "integrity": "sha512-bLgc3asbWdwPbx2mNk2S49kmJCuQeu0nfmaOgbs8WIyzzkw3r4htszdIi9Q9EMezDPTYuJx2wvjZ/EwgAthpnA==",
+ "dev": true,
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/fuse.js": {
+ "version": "3.6.1",
+ "resolved": "https://registry.npmjs.org/fuse.js/-/fuse.js-3.6.1.tgz",
+ "integrity": "sha512-hT9yh/tiinkmirKrlv4KWOjztdoZo1mx9Qh4KvWqC7isoXwdUY3PNWUxceF4/qO9R6riA2C29jdTOeQOIROjgw==",
+ "dev": true,
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/gauge": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz",
+ "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==",
+ "dev": true,
+ "dependencies": {
+ "aproba": "^1.0.3 || ^2.0.0",
+ "color-support": "^1.1.2",
+ "console-control-strings": "^1.0.0",
+ "has-unicode": "^2.0.1",
+ "object-assign": "^4.1.1",
+ "signal-exit": "^3.0.0",
+ "string-width": "^4.2.3",
+ "strip-ansi": "^6.0.1",
+ "wide-align": "^1.1.2"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/gensync": {
+ "version": "1.0.0-beta.2",
+ "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
+ "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
+ "dev": true,
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/get-caller-file": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
+ "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
+ "dev": true,
+ "engines": {
+ "node": "6.* || 8.* || >= 10.*"
+ }
+ },
+ "node_modules/get-intrinsic": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz",
+ "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==",
+ "dev": true,
+ "dependencies": {
+ "function-bind": "^1.1.1",
+ "has": "^1.0.3",
+ "has-symbols": "^1.0.1"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/get-package-type": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz",
+ "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==",
+ "dev": true,
+ "engines": {
+ "node": ">=8.0.0"
+ }
+ },
+ "node_modules/get-stream": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz",
+ "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==",
+ "dev": true,
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/get-symbol-description": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz",
+ "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.2",
+ "get-intrinsic": "^1.1.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/get-value": {
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz",
+ "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/github-slugger": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/github-slugger/-/github-slugger-1.4.0.tgz",
+ "integrity": "sha512-w0dzqw/nt51xMVmlaV1+JRzN+oCa1KfcgGEWhxUG16wbdA+Xnt/yoFO8Z8x/V82ZcZ0wy6ln9QDup5avbhiDhQ==",
+ "dev": true
+ },
+ "node_modules/glob": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz",
+ "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==",
+ "dev": true,
+ "dependencies": {
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.0.4",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
+ },
+ "engines": {
+ "node": "*"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/glob-parent": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
+ "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
+ "dev": true,
+ "dependencies": {
+ "is-glob": "^4.0.1"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/glob-promise": {
+ "version": "3.4.0",
+ "resolved": "https://registry.npmjs.org/glob-promise/-/glob-promise-3.4.0.tgz",
+ "integrity": "sha512-q08RJ6O+eJn+dVanerAndJwIcumgbDdYiUT7zFQl3Wm1xD6fBKtah7H8ZJChj4wP+8C+QfeVy8xautR7rdmKEw==",
+ "dev": true,
+ "dependencies": {
+ "@types/glob": "*"
+ },
+ "engines": {
+ "node": ">=4"
+ },
+ "peerDependencies": {
+ "glob": "*"
+ }
+ },
+ "node_modules/glob-to-regexp": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz",
+ "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==",
+ "dev": true
+ },
+ "node_modules/global": {
+ "version": "4.4.0",
+ "resolved": "https://registry.npmjs.org/global/-/global-4.4.0.tgz",
+ "integrity": "sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==",
+ "dev": true,
+ "dependencies": {
+ "min-document": "^2.19.0",
+ "process": "^0.11.10"
+ }
+ },
+ "node_modules/global-modules": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz",
+ "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==",
+ "dev": true,
+ "dependencies": {
+ "global-prefix": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/global-prefix": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz",
+ "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==",
+ "dev": true,
+ "dependencies": {
+ "ini": "^1.3.5",
+ "kind-of": "^6.0.2",
+ "which": "^1.3.1"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/global-prefix/node_modules/which": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
+ "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
+ "dev": true,
+ "dependencies": {
+ "isexe": "^2.0.0"
+ },
+ "bin": {
+ "which": "bin/which"
+ }
+ },
+ "node_modules/globals": {
+ "version": "11.12.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
+ "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
+ "dev": true,
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/globalthis": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.2.tgz",
+ "integrity": "sha512-ZQnSFO1la8P7auIOQECnm0sSuoMeaSq0EEdXMBFF2QJO4uNcwbyhSgG3MruWNbFTqCLmxVwGOl7LZ9kASvHdeQ==",
+ "dev": true,
+ "dependencies": {
+ "define-properties": "^1.1.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/globby": {
+ "version": "11.1.0",
+ "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz",
+ "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==",
+ "dev": true,
+ "dependencies": {
+ "array-union": "^2.1.0",
+ "dir-glob": "^3.0.1",
+ "fast-glob": "^3.2.9",
+ "ignore": "^5.2.0",
+ "merge2": "^1.4.1",
+ "slash": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/graceful-fs": {
+ "version": "4.2.9",
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.9.tgz",
+ "integrity": "sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==",
+ "dev": true
+ },
+ "node_modules/gzip-size": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-5.1.1.tgz",
+ "integrity": "sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==",
+ "dev": true,
+ "dependencies": {
+ "duplexer": "^0.1.1",
+ "pify": "^4.0.1"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/handlebars": {
+ "version": "4.7.7",
+ "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz",
+ "integrity": "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==",
+ "dev": true,
+ "dependencies": {
+ "minimist": "^1.2.5",
+ "neo-async": "^2.6.0",
+ "source-map": "^0.6.1",
+ "wordwrap": "^1.0.0"
+ },
+ "bin": {
+ "handlebars": "bin/handlebars"
+ },
+ "engines": {
+ "node": ">=0.4.7"
+ },
+ "optionalDependencies": {
+ "uglify-js": "^3.1.4"
+ }
+ },
+ "node_modules/handlebars/node_modules/source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/has": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
+ "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
+ "dev": true,
+ "dependencies": {
+ "function-bind": "^1.1.1"
+ },
+ "engines": {
+ "node": ">= 0.4.0"
+ }
+ },
+ "node_modules/has-bigints": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz",
+ "integrity": "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==",
+ "dev": true,
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/has-flag": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
+ "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=",
+ "dev": true,
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/has-glob": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/has-glob/-/has-glob-1.0.0.tgz",
+ "integrity": "sha1-mqqe7b/7G6OZCnsAEPtnjuAIEgc=",
+ "dev": true,
+ "dependencies": {
+ "is-glob": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/has-glob/node_modules/is-glob": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz",
+ "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=",
+ "dev": true,
+ "dependencies": {
+ "is-extglob": "^2.1.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/has-symbols": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz",
+ "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/has-tostringtag": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz",
+ "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==",
+ "dev": true,
+ "dependencies": {
+ "has-symbols": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/has-unicode": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz",
+ "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=",
+ "dev": true
+ },
+ "node_modules/has-value": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz",
+ "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=",
+ "dev": true,
+ "dependencies": {
+ "get-value": "^2.0.6",
+ "has-values": "^1.0.0",
+ "isobject": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/has-values": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz",
+ "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=",
+ "dev": true,
+ "dependencies": {
+ "is-number": "^3.0.0",
+ "kind-of": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/has-values/node_modules/is-buffer": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
+ "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==",
+ "dev": true
+ },
+ "node_modules/has-values/node_modules/is-number": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz",
+ "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=",
+ "dev": true,
+ "dependencies": {
+ "kind-of": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/has-values/node_modules/is-number/node_modules/kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "dependencies": {
+ "is-buffer": "^1.1.5"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/has-values/node_modules/kind-of": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz",
+ "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=",
+ "dev": true,
+ "dependencies": {
+ "is-buffer": "^1.1.5"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/hash-base": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz",
+ "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==",
+ "dev": true,
+ "dependencies": {
+ "inherits": "^2.0.4",
+ "readable-stream": "^3.6.0",
+ "safe-buffer": "^5.2.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/hash-base/node_modules/readable-stream": {
+ "version": "3.6.0",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
+ "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
+ "dev": true,
+ "dependencies": {
+ "inherits": "^2.0.3",
+ "string_decoder": "^1.1.1",
+ "util-deprecate": "^1.0.1"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/hash-base/node_modules/safe-buffer": {
+ "version": "5.2.1",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
+ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ]
+ },
+ "node_modules/hash.js": {
+ "version": "1.1.7",
+ "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz",
+ "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==",
+ "dev": true,
+ "dependencies": {
+ "inherits": "^2.0.3",
+ "minimalistic-assert": "^1.0.1"
+ }
+ },
+ "node_modules/hast-to-hyperscript": {
+ "version": "9.0.1",
+ "resolved": "https://registry.npmjs.org/hast-to-hyperscript/-/hast-to-hyperscript-9.0.1.tgz",
+ "integrity": "sha512-zQgLKqF+O2F72S1aa4y2ivxzSlko3MAvxkwG8ehGmNiqd98BIN3JM1rAJPmplEyLmGLO2QZYJtIneOSZ2YbJuA==",
+ "dev": true,
+ "dependencies": {
+ "@types/unist": "^2.0.3",
+ "comma-separated-tokens": "^1.0.0",
+ "property-information": "^5.3.0",
+ "space-separated-tokens": "^1.0.0",
+ "style-to-object": "^0.3.0",
+ "unist-util-is": "^4.0.0",
+ "web-namespaces": "^1.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/hast-util-from-parse5": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-6.0.1.tgz",
+ "integrity": "sha512-jeJUWiN5pSxW12Rh01smtVkZgZr33wBokLzKLwinYOUfSzm1Nl/c3GUGebDyOKjdsRgMvoVbV0VpAcpjF4NrJA==",
+ "dev": true,
+ "dependencies": {
+ "@types/parse5": "^5.0.0",
+ "hastscript": "^6.0.0",
+ "property-information": "^5.0.0",
+ "vfile": "^4.0.0",
+ "vfile-location": "^3.2.0",
+ "web-namespaces": "^1.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/hast-util-parse-selector": {
+ "version": "2.2.5",
+ "resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-2.2.5.tgz",
+ "integrity": "sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==",
+ "dev": true,
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/hast-util-raw": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/hast-util-raw/-/hast-util-raw-6.0.1.tgz",
+ "integrity": "sha512-ZMuiYA+UF7BXBtsTBNcLBF5HzXzkyE6MLzJnL605LKE8GJylNjGc4jjxazAHUtcwT5/CEt6afRKViYB4X66dig==",
+ "dev": true,
+ "dependencies": {
+ "@types/hast": "^2.0.0",
+ "hast-util-from-parse5": "^6.0.0",
+ "hast-util-to-parse5": "^6.0.0",
+ "html-void-elements": "^1.0.0",
+ "parse5": "^6.0.0",
+ "unist-util-position": "^3.0.0",
+ "vfile": "^4.0.0",
+ "web-namespaces": "^1.0.0",
+ "xtend": "^4.0.0",
+ "zwitch": "^1.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/hast-util-to-parse5": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/hast-util-to-parse5/-/hast-util-to-parse5-6.0.0.tgz",
+ "integrity": "sha512-Lu5m6Lgm/fWuz8eWnrKezHtVY83JeRGaNQ2kn9aJgqaxvVkFCZQBEhgodZUDUvoodgyROHDb3r5IxAEdl6suJQ==",
+ "dev": true,
+ "dependencies": {
+ "hast-to-hyperscript": "^9.0.0",
+ "property-information": "^5.0.0",
+ "web-namespaces": "^1.0.0",
+ "xtend": "^4.0.0",
+ "zwitch": "^1.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/hastscript": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-6.0.0.tgz",
+ "integrity": "sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==",
+ "dev": true,
+ "dependencies": {
+ "@types/hast": "^2.0.0",
+ "comma-separated-tokens": "^1.0.0",
+ "hast-util-parse-selector": "^2.0.0",
+ "property-information": "^5.0.0",
+ "space-separated-tokens": "^1.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/he": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz",
+ "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==",
+ "dev": true,
+ "bin": {
+ "he": "bin/he"
+ }
+ },
+ "node_modules/highlight.js": {
+ "version": "10.7.3",
+ "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-10.7.3.tgz",
+ "integrity": "sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==",
+ "dev": true,
+ "engines": {
+ "node": "*"
+ }
+ },
+ "node_modules/history": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/history/-/history-5.0.0.tgz",
+ "integrity": "sha512-3NyRMKIiFSJmIPdq7FxkNMJkQ7ZEtVblOQ38VtKaA0zZMW1Eo6Q6W8oDKEflr1kNNTItSnk4JMCO1deeSgbLLg==",
+ "dev": true,
+ "dependencies": {
+ "@babel/runtime": "^7.7.6"
+ }
+ },
+ "node_modules/hmac-drbg": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz",
+ "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=",
+ "dev": true,
+ "dependencies": {
+ "hash.js": "^1.0.3",
+ "minimalistic-assert": "^1.0.0",
+ "minimalistic-crypto-utils": "^1.0.1"
+ }
+ },
+ "node_modules/hoist-non-react-statics": {
+ "version": "3.3.2",
+ "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz",
+ "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==",
+ "dev": true,
+ "dependencies": {
+ "react-is": "^16.7.0"
+ }
+ },
+ "node_modules/hoist-non-react-statics/node_modules/react-is": {
+ "version": "16.13.1",
+ "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
+ "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==",
+ "dev": true
+ },
+ "node_modules/hosted-git-info": {
+ "version": "2.8.9",
+ "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz",
+ "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==",
+ "dev": true
+ },
+ "node_modules/html-encoding-sniffer": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz",
+ "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==",
+ "dev": true,
+ "dependencies": {
+ "whatwg-encoding": "^1.0.5"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/html-entities": {
+ "version": "2.3.2",
+ "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.3.2.tgz",
+ "integrity": "sha512-c3Ab/url5ksaT0WyleslpBEthOzWhrjQbg75y7XUsfSzi3Dgzt0l8w5e7DylRn15MTlMMD58dTfzddNS2kcAjQ==",
+ "dev": true
+ },
+ "node_modules/html-escaper": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz",
+ "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==",
+ "dev": true
+ },
+ "node_modules/html-minifier-terser": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz",
+ "integrity": "sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==",
+ "dev": true,
+ "dependencies": {
+ "camel-case": "^4.1.1",
+ "clean-css": "^4.2.3",
+ "commander": "^4.1.1",
+ "he": "^1.2.0",
+ "param-case": "^3.0.3",
+ "relateurl": "^0.2.7",
+ "terser": "^4.6.3"
+ },
+ "bin": {
+ "html-minifier-terser": "cli.js"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/html-minifier-terser/node_modules/commander": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz",
+ "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==",
+ "dev": true,
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/html-tags": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.1.0.tgz",
+ "integrity": "sha512-1qYz89hW3lFDEazhjW0yVAV87lw8lVkrJocr72XmBkMKsoSVJCQx3W8BXsC7hO2qAt8BoVjYjtAcZ9perqGnNg==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/html-void-elements": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/html-void-elements/-/html-void-elements-1.0.5.tgz",
+ "integrity": "sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w==",
+ "dev": true,
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/html-webpack-plugin": {
+ "version": "4.5.2",
+ "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-4.5.2.tgz",
+ "integrity": "sha512-q5oYdzjKUIPQVjOosjgvCHQOv9Ett9CYYHlgvJeXG0qQvdSojnBq4vAdQBwn1+yGveAwHCoe/rMR86ozX3+c2A==",
+ "dev": true,
+ "dependencies": {
+ "@types/html-minifier-terser": "^5.0.0",
+ "@types/tapable": "^1.0.5",
+ "@types/webpack": "^4.41.8",
+ "html-minifier-terser": "^5.0.1",
+ "loader-utils": "^1.2.3",
+ "lodash": "^4.17.20",
+ "pretty-error": "^2.1.1",
+ "tapable": "^1.1.3",
+ "util.promisify": "1.0.0"
+ },
+ "engines": {
+ "node": ">=6.9"
+ },
+ "peerDependencies": {
+ "webpack": "^4.0.0 || ^5.0.0"
+ }
+ },
+ "node_modules/html-webpack-plugin/node_modules/json5": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz",
+ "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==",
+ "dev": true,
+ "dependencies": {
+ "minimist": "^1.2.0"
+ },
+ "bin": {
+ "json5": "lib/cli.js"
+ }
+ },
+ "node_modules/html-webpack-plugin/node_modules/loader-utils": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz",
+ "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==",
+ "dev": true,
+ "dependencies": {
+ "big.js": "^5.2.2",
+ "emojis-list": "^3.0.0",
+ "json5": "^1.0.1"
+ },
+ "engines": {
+ "node": ">=4.0.0"
+ }
+ },
+ "node_modules/htmlparser2": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz",
+ "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==",
+ "dev": true,
+ "funding": [
+ "https://github.com/fb55/htmlparser2?sponsor=1",
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/fb55"
+ }
+ ],
+ "dependencies": {
+ "domelementtype": "^2.0.1",
+ "domhandler": "^4.0.0",
+ "domutils": "^2.5.2",
+ "entities": "^2.0.0"
+ }
+ },
+ "node_modules/http-errors": {
+ "version": "1.8.1",
+ "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.8.1.tgz",
+ "integrity": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==",
+ "dev": true,
+ "dependencies": {
+ "depd": "~1.1.2",
+ "inherits": "2.0.4",
+ "setprototypeof": "1.2.0",
+ "statuses": ">= 1.5.0 < 2",
+ "toidentifier": "1.0.1"
+ },
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/http-proxy-agent": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz",
+ "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==",
+ "dev": true,
+ "dependencies": {
+ "@tootallnate/once": "1",
+ "agent-base": "6",
+ "debug": "4"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/https-browserify": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz",
+ "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=",
+ "dev": true
+ },
+ "node_modules/https-proxy-agent": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz",
+ "integrity": "sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==",
+ "dev": true,
+ "dependencies": {
+ "agent-base": "6",
+ "debug": "4"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/human-signals": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz",
+ "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==",
+ "dev": true,
+ "engines": {
+ "node": ">=10.17.0"
+ }
+ },
+ "node_modules/iconv-lite": {
+ "version": "0.4.24",
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
+ "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
+ "dev": true,
+ "dependencies": {
+ "safer-buffer": ">= 2.1.2 < 3"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/icss-utils": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-4.1.1.tgz",
+ "integrity": "sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==",
+ "dev": true,
+ "dependencies": {
+ "postcss": "^7.0.14"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/ieee754": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
+ "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ]
+ },
+ "node_modules/iferr": {
+ "version": "0.1.5",
+ "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz",
+ "integrity": "sha1-xg7taebY/bazEEofy8ocGS3FtQE=",
+ "dev": true
+ },
+ "node_modules/ignore": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz",
+ "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==",
+ "dev": true,
+ "engines": {
+ "node": ">= 4"
+ }
+ },
+ "node_modules/immediate": {
+ "version": "3.0.6",
+ "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz",
+ "integrity": "sha1-nbHb0Pr43m++D13V5Wu2BigN5ps="
+ },
+ "node_modules/immer": {
+ "version": "8.0.1",
+ "resolved": "https://registry.npmjs.org/immer/-/immer-8.0.1.tgz",
+ "integrity": "sha512-aqXhGP7//Gui2+UrEtvxZxSquQVXTpZ7KDxfCcKAF3Vysvw0CViVaW9RZ1j1xlIYqaaaipBoqdqeibkc18PNvA==",
+ "dev": true,
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/immer"
+ }
+ },
+ "node_modules/import-fresh": {
+ "version": "3.3.0",
+ "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz",
+ "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==",
+ "dev": true,
+ "dependencies": {
+ "parent-module": "^1.0.0",
+ "resolve-from": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/import-fresh/node_modules/resolve-from": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
+ "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
+ "dev": true,
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/import-local": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz",
+ "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==",
+ "dev": true,
+ "dependencies": {
+ "pkg-dir": "^4.2.0",
+ "resolve-cwd": "^3.0.0"
+ },
+ "bin": {
+ "import-local-fixture": "fixtures/cli.js"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/import-local/node_modules/find-up": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
+ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
+ "dev": true,
+ "dependencies": {
+ "locate-path": "^5.0.0",
+ "path-exists": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/import-local/node_modules/locate-path": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
+ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
+ "dev": true,
+ "dependencies": {
+ "p-locate": "^4.1.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/import-local/node_modules/p-limit": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
+ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
+ "dev": true,
+ "dependencies": {
+ "p-try": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/import-local/node_modules/p-locate": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
+ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
+ "dev": true,
+ "dependencies": {
+ "p-limit": "^2.2.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/import-local/node_modules/pkg-dir": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
+ "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
+ "dev": true,
+ "dependencies": {
+ "find-up": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/imurmurhash": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
+ "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=",
+ "dev": true,
+ "engines": {
+ "node": ">=0.8.19"
+ }
+ },
+ "node_modules/indent-string": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz",
+ "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/infer-owner": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz",
+ "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==",
+ "dev": true
+ },
+ "node_modules/inflight": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
+ "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=",
+ "dev": true,
+ "dependencies": {
+ "once": "^1.3.0",
+ "wrappy": "1"
+ }
+ },
+ "node_modules/inherits": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
+ },
+ "node_modules/ini": {
+ "version": "1.3.8",
+ "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
+ "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==",
+ "dev": true
+ },
+ "node_modules/inline-style-parser": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz",
+ "integrity": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==",
+ "dev": true
+ },
+ "node_modules/internal-slot": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz",
+ "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==",
+ "dev": true,
+ "dependencies": {
+ "get-intrinsic": "^1.1.0",
+ "has": "^1.0.3",
+ "side-channel": "^1.0.4"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/interpret": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/interpret/-/interpret-2.2.0.tgz",
+ "integrity": "sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.10"
+ }
+ },
+ "node_modules/invariant": {
+ "version": "2.2.4",
+ "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz",
+ "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==",
+ "dev": true,
+ "dependencies": {
+ "loose-envify": "^1.0.0"
+ }
+ },
+ "node_modules/ip": {
+ "version": "1.1.5",
+ "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz",
+ "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=",
+ "dev": true
+ },
+ "node_modules/ipaddr.js": {
+ "version": "1.9.1",
+ "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
+ "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.10"
+ }
+ },
+ "node_modules/is-absolute-url": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz",
+ "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/is-accessor-descriptor": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
+ "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
+ "dev": true,
+ "dependencies": {
+ "kind-of": "^6.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/is-alphabetical": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.4.tgz",
+ "integrity": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==",
+ "dev": true,
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/is-alphanumerical": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz",
+ "integrity": "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==",
+ "dev": true,
+ "dependencies": {
+ "is-alphabetical": "^1.0.0",
+ "is-decimal": "^1.0.0"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/is-arguments": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz",
+ "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.2",
+ "has-tostringtag": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-arrayish": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
+ "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=",
+ "dev": true
+ },
+ "node_modules/is-bigint": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz",
+ "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==",
+ "dev": true,
+ "dependencies": {
+ "has-bigints": "^1.0.1"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-binary-path": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
+ "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
+ "dev": true,
+ "dependencies": {
+ "binary-extensions": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/is-boolean-object": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz",
+ "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.2",
+ "has-tostringtag": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-buffer": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz",
+ "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/is-callable": {
+ "version": "1.2.4",
+ "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz",
+ "integrity": "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-ci": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz",
+ "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==",
+ "dev": true,
+ "dependencies": {
+ "ci-info": "^2.0.0"
+ },
+ "bin": {
+ "is-ci": "bin.js"
+ }
+ },
+ "node_modules/is-ci/node_modules/ci-info": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz",
+ "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==",
+ "dev": true
+ },
+ "node_modules/is-core-module": {
+ "version": "2.8.1",
+ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.1.tgz",
+ "integrity": "sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==",
+ "dev": true,
+ "dependencies": {
+ "has": "^1.0.3"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-data-descriptor": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
+ "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
+ "dev": true,
+ "dependencies": {
+ "kind-of": "^6.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/is-date-object": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz",
+ "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==",
+ "dev": true,
+ "dependencies": {
+ "has-tostringtag": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-decimal": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.4.tgz",
+ "integrity": "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==",
+ "dev": true,
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/is-descriptor": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
+ "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
+ "dev": true,
+ "dependencies": {
+ "is-accessor-descriptor": "^1.0.0",
+ "is-data-descriptor": "^1.0.0",
+ "kind-of": "^6.0.2"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/is-docker": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz",
+ "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==",
+ "dev": true,
+ "bin": {
+ "is-docker": "cli.js"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/is-dom": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/is-dom/-/is-dom-1.1.0.tgz",
+ "integrity": "sha512-u82f6mvhYxRPKpw8V1N0W8ce1xXwOrQtgGcxl6UCL5zBmZu3is/18K0rR7uFCnMDuAsS/3W54mGL4vsaFUQlEQ==",
+ "dev": true,
+ "dependencies": {
+ "is-object": "^1.0.1",
+ "is-window": "^1.0.2"
+ }
+ },
+ "node_modules/is-extendable": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz",
+ "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==",
+ "dev": true,
+ "dependencies": {
+ "is-plain-object": "^2.0.4"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/is-extglob": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
+ "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/is-fullwidth-code-point": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/is-function": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/is-function/-/is-function-1.0.2.tgz",
+ "integrity": "sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==",
+ "dev": true
+ },
+ "node_modules/is-generator-fn": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz",
+ "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/is-glob": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
+ "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
+ "dev": true,
+ "dependencies": {
+ "is-extglob": "^2.1.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/is-hexadecimal": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz",
+ "integrity": "sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==",
+ "dev": true,
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/is-map": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz",
+ "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==",
+ "dev": true,
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-negative-zero": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz",
+ "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-number": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.12.0"
+ }
+ },
+ "node_modules/is-number-object": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.6.tgz",
+ "integrity": "sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g==",
+ "dev": true,
+ "dependencies": {
+ "has-tostringtag": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-object": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/is-object/-/is-object-1.0.2.tgz",
+ "integrity": "sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==",
+ "dev": true,
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-plain-obj": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.0.0.tgz",
+ "integrity": "sha512-NXRbBtUdBioI73y/HmOhogw/U5msYPC9DAtGkJXeFcFWSFZw0mCUsPxk/snTuJHzNKA8kLBK4rH97RMB1BfCXw==",
+ "dev": true,
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/is-plain-object": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz",
+ "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==",
+ "dev": true,
+ "dependencies": {
+ "isobject": "^3.0.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/is-potential-custom-element-name": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz",
+ "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==",
+ "dev": true
+ },
+ "node_modules/is-regex": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz",
+ "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.2",
+ "has-tostringtag": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-root": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz",
+ "integrity": "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==",
+ "dev": true,
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/is-set": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz",
+ "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==",
+ "dev": true,
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-shared-array-buffer": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz",
+ "integrity": "sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA==",
+ "dev": true,
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-stream": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz",
+ "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/is-string": {
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz",
+ "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==",
+ "dev": true,
+ "dependencies": {
+ "has-tostringtag": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-symbol": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz",
+ "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==",
+ "dev": true,
+ "dependencies": {
+ "has-symbols": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-typedarray": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz",
+ "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=",
+ "dev": true
+ },
+ "node_modules/is-weakref": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz",
+ "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.2"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-whitespace-character": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/is-whitespace-character/-/is-whitespace-character-1.0.4.tgz",
+ "integrity": "sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==",
+ "dev": true,
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/is-window": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/is-window/-/is-window-1.0.2.tgz",
+ "integrity": "sha1-LIlspT25feRdPDMTOmXYyfVjSA0=",
+ "dev": true
+ },
+ "node_modules/is-windows": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz",
+ "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/is-word-character": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/is-word-character/-/is-word-character-1.0.4.tgz",
+ "integrity": "sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA==",
+ "dev": true,
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/is-wsl": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz",
+ "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==",
+ "dev": true,
+ "dependencies": {
+ "is-docker": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/isarray": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz",
+ "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==",
+ "dev": true
+ },
+ "node_modules/isexe": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
+ "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=",
+ "dev": true
+ },
+ "node_modules/isobject": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz",
+ "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/istanbul-lib-coverage": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz",
+ "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/istanbul-lib-instrument": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.1.0.tgz",
+ "integrity": "sha512-czwUz525rkOFDJxfKK6mYfIs9zBKILyrZQxjz3ABhjQXhbhFsSbo1HW/BFcsDnfJYJWA6thRR5/TUY2qs5W99Q==",
+ "dev": true,
+ "dependencies": {
+ "@babel/core": "^7.12.3",
+ "@babel/parser": "^7.14.7",
+ "@istanbuljs/schema": "^0.1.2",
+ "istanbul-lib-coverage": "^3.2.0",
+ "semver": "^6.3.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/istanbul-lib-report": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz",
+ "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==",
+ "dev": true,
+ "dependencies": {
+ "istanbul-lib-coverage": "^3.0.0",
+ "make-dir": "^3.0.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/istanbul-lib-report/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/istanbul-lib-report/node_modules/make-dir": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
+ "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
+ "dev": true,
+ "dependencies": {
+ "semver": "^6.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/istanbul-lib-report/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/istanbul-lib-source-maps": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz",
+ "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==",
+ "dev": true,
+ "dependencies": {
+ "debug": "^4.1.1",
+ "istanbul-lib-coverage": "^3.0.0",
+ "source-map": "^0.6.1"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/istanbul-lib-source-maps/node_modules/source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/istanbul-reports": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.3.tgz",
+ "integrity": "sha512-x9LtDVtfm/t1GFiLl3NffC7hz+I1ragvgX1P/Lg1NlIagifZDKUkuuaAxH/qpwj2IuEfD8G2Bs/UKp+sZ/pKkg==",
+ "dev": true,
+ "dependencies": {
+ "html-escaper": "^2.0.0",
+ "istanbul-lib-report": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/iterate-iterator": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/iterate-iterator/-/iterate-iterator-1.0.2.tgz",
+ "integrity": "sha512-t91HubM4ZDQ70M9wqp+pcNpu8OyJ9UAtXntT/Bcsvp5tZMnz9vRa+IunKXeI8AnfZMTv0jNuVEmGeLSMjVvfPw==",
+ "dev": true,
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/iterate-value": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/iterate-value/-/iterate-value-1.0.2.tgz",
+ "integrity": "sha512-A6fMAio4D2ot2r/TYzr4yUWrmwNdsN5xL7+HUiyACE4DXm+q8HtPcnFTp+NnW3k4N05tZ7FVYFFb2CR13NxyHQ==",
+ "dev": true,
+ "dependencies": {
+ "es-get-iterator": "^1.0.2",
+ "iterate-iterator": "^1.0.1"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/jest": {
+ "version": "27.4.7",
+ "resolved": "https://registry.npmjs.org/jest/-/jest-27.4.7.tgz",
+ "integrity": "sha512-8heYvsx7nV/m8m24Vk26Y87g73Ba6ueUd0MWed/NXMhSZIm62U/llVbS0PJe1SHunbyXjJ/BqG1z9bFjGUIvTg==",
+ "dev": true,
+ "dependencies": {
+ "@jest/core": "^27.4.7",
+ "import-local": "^3.0.2",
+ "jest-cli": "^27.4.7"
+ },
+ "bin": {
+ "jest": "bin/jest.js"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ },
+ "peerDependencies": {
+ "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
+ },
+ "peerDependenciesMeta": {
+ "node-notifier": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/jest-changed-files": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.4.2.tgz",
+ "integrity": "sha512-/9x8MjekuzUQoPjDHbBiXbNEBauhrPU2ct7m8TfCg69ywt1y/N+yYwGh3gCpnqUS3klYWDU/lSNgv+JhoD2k1A==",
+ "dev": true,
+ "dependencies": {
+ "@jest/types": "^27.4.2",
+ "execa": "^5.0.0",
+ "throat": "^6.0.1"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-changed-files/node_modules/@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "dependencies": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-changed-files/node_modules/@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "dependencies": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "node_modules/jest-changed-files/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/jest-changed-files/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/jest-changed-files/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/jest-changed-files/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/jest-circus": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-27.4.6.tgz",
+ "integrity": "sha512-UA7AI5HZrW4wRM72Ro80uRR2Fg+7nR0GESbSI/2M+ambbzVuA63mn5T1p3Z/wlhntzGpIG1xx78GP2YIkf6PhQ==",
+ "dev": true,
+ "dependencies": {
+ "@jest/environment": "^27.4.6",
+ "@jest/test-result": "^27.4.6",
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "co": "^4.6.0",
+ "dedent": "^0.7.0",
+ "expect": "^27.4.6",
+ "is-generator-fn": "^2.0.0",
+ "jest-each": "^27.4.6",
+ "jest-matcher-utils": "^27.4.6",
+ "jest-message-util": "^27.4.6",
+ "jest-runtime": "^27.4.6",
+ "jest-snapshot": "^27.4.6",
+ "jest-util": "^27.4.2",
+ "pretty-format": "^27.4.6",
+ "slash": "^3.0.0",
+ "stack-utils": "^2.0.3",
+ "throat": "^6.0.1"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-circus/node_modules/@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "dependencies": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-circus/node_modules/@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "dependencies": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "node_modules/jest-circus/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/jest-circus/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/jest-circus/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/jest-circus/node_modules/jest-util": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.4.2.tgz",
+ "integrity": "sha512-YuxxpXU6nlMan9qyLuxHaMMOzXAl5aGZWCSzben5DhLHemYQxCc4YK+4L3ZrCutT8GPQ+ui9k5D8rUJoDioMnA==",
+ "dev": true,
+ "dependencies": {
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.4",
+ "picomatch": "^2.2.3"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-circus/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/jest-cli": {
+ "version": "27.4.7",
+ "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-27.4.7.tgz",
+ "integrity": "sha512-zREYhvjjqe1KsGV15mdnxjThKNDgza1fhDT+iUsXWLCq3sxe9w5xnvyctcYVT5PcdLSjv7Y5dCwTS3FCF1tiuw==",
+ "dev": true,
+ "dependencies": {
+ "@jest/core": "^27.4.7",
+ "@jest/test-result": "^27.4.6",
+ "@jest/types": "^27.4.2",
+ "chalk": "^4.0.0",
+ "exit": "^0.1.2",
+ "graceful-fs": "^4.2.4",
+ "import-local": "^3.0.2",
+ "jest-config": "^27.4.7",
+ "jest-util": "^27.4.2",
+ "jest-validate": "^27.4.6",
+ "prompts": "^2.0.1",
+ "yargs": "^16.2.0"
+ },
+ "bin": {
+ "jest": "bin/jest.js"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ },
+ "peerDependencies": {
+ "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
+ },
+ "peerDependenciesMeta": {
+ "node-notifier": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/jest-cli/node_modules/@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "dependencies": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-cli/node_modules/@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "dependencies": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "node_modules/jest-cli/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/jest-cli/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/jest-cli/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/jest-cli/node_modules/jest-util": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.4.2.tgz",
+ "integrity": "sha512-YuxxpXU6nlMan9qyLuxHaMMOzXAl5aGZWCSzben5DhLHemYQxCc4YK+4L3ZrCutT8GPQ+ui9k5D8rUJoDioMnA==",
+ "dev": true,
+ "dependencies": {
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.4",
+ "picomatch": "^2.2.3"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-cli/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/jest-config": {
+ "version": "27.4.7",
+ "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-27.4.7.tgz",
+ "integrity": "sha512-xz/o/KJJEedHMrIY9v2ParIoYSrSVY6IVeE4z5Z3i101GoA5XgfbJz+1C8EYPsv7u7f39dS8F9v46BHDhn0vlw==",
+ "dev": true,
+ "dependencies": {
+ "@babel/core": "^7.8.0",
+ "@jest/test-sequencer": "^27.4.6",
+ "@jest/types": "^27.4.2",
+ "babel-jest": "^27.4.6",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "deepmerge": "^4.2.2",
+ "glob": "^7.1.1",
+ "graceful-fs": "^4.2.4",
+ "jest-circus": "^27.4.6",
+ "jest-environment-jsdom": "^27.4.6",
+ "jest-environment-node": "^27.4.6",
+ "jest-get-type": "^27.4.0",
+ "jest-jasmine2": "^27.4.6",
+ "jest-regex-util": "^27.4.0",
+ "jest-resolve": "^27.4.6",
+ "jest-runner": "^27.4.6",
+ "jest-util": "^27.4.2",
+ "jest-validate": "^27.4.6",
+ "micromatch": "^4.0.4",
+ "pretty-format": "^27.4.6",
+ "slash": "^3.0.0"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ },
+ "peerDependencies": {
+ "ts-node": ">=9.0.0"
+ },
+ "peerDependenciesMeta": {
+ "ts-node": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/jest-config/node_modules/@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "dependencies": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-config/node_modules/@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "dependencies": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "node_modules/jest-config/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/jest-config/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/jest-config/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/jest-config/node_modules/jest-regex-util": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.4.0.tgz",
+ "integrity": "sha512-WeCpMpNnqJYMQoOjm1nTtsgbR4XHAk1u00qDoNBQoykM280+/TmgA5Qh5giC1ecy6a5d4hbSsHzpBtu5yvlbEg==",
+ "dev": true,
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-config/node_modules/jest-util": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.4.2.tgz",
+ "integrity": "sha512-YuxxpXU6nlMan9qyLuxHaMMOzXAl5aGZWCSzben5DhLHemYQxCc4YK+4L3ZrCutT8GPQ+ui9k5D8rUJoDioMnA==",
+ "dev": true,
+ "dependencies": {
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.4",
+ "picomatch": "^2.2.3"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-config/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/jest-diff": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.4.6.tgz",
+ "integrity": "sha512-zjaB0sh0Lb13VyPsd92V7HkqF6yKRH9vm33rwBt7rPYrpQvS1nCvlIy2pICbKta+ZjWngYLNn4cCK4nyZkjS/w==",
+ "dev": true,
+ "dependencies": {
+ "chalk": "^4.0.0",
+ "diff-sequences": "^27.4.0",
+ "jest-get-type": "^27.4.0",
+ "pretty-format": "^27.4.6"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-diff/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/jest-diff/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/jest-diff/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/jest-diff/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/jest-docblock": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.4.0.tgz",
+ "integrity": "sha512-7TBazUdCKGV7svZ+gh7C8esAnweJoG+SvcF6Cjqj4l17zA2q1cMwx2JObSioubk317H+cjcHgP+7fTs60paulg==",
+ "dev": true,
+ "dependencies": {
+ "detect-newline": "^3.0.0"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-each": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-27.4.6.tgz",
+ "integrity": "sha512-n6QDq8y2Hsmn22tRkgAk+z6MCX7MeVlAzxmZDshfS2jLcaBlyhpF3tZSJLR+kXmh23GEvS0ojMR8i6ZeRvpQcA==",
+ "dev": true,
+ "dependencies": {
+ "@jest/types": "^27.4.2",
+ "chalk": "^4.0.0",
+ "jest-get-type": "^27.4.0",
+ "jest-util": "^27.4.2",
+ "pretty-format": "^27.4.6"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-each/node_modules/@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "dependencies": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-each/node_modules/@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "dependencies": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "node_modules/jest-each/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/jest-each/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/jest-each/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/jest-each/node_modules/jest-util": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.4.2.tgz",
+ "integrity": "sha512-YuxxpXU6nlMan9qyLuxHaMMOzXAl5aGZWCSzben5DhLHemYQxCc4YK+4L3ZrCutT8GPQ+ui9k5D8rUJoDioMnA==",
+ "dev": true,
+ "dependencies": {
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.4",
+ "picomatch": "^2.2.3"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-each/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/jest-environment-jsdom": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.4.6.tgz",
+ "integrity": "sha512-o3dx5p/kHPbUlRvSNjypEcEtgs6LmvESMzgRFQE6c+Prwl2JLA4RZ7qAnxc5VM8kutsGRTB15jXeeSbJsKN9iA==",
+ "dev": true,
+ "dependencies": {
+ "@jest/environment": "^27.4.6",
+ "@jest/fake-timers": "^27.4.6",
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "jest-mock": "^27.4.6",
+ "jest-util": "^27.4.2",
+ "jsdom": "^16.6.0"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-environment-jsdom/node_modules/@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "dependencies": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-environment-jsdom/node_modules/@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "dependencies": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "node_modules/jest-environment-jsdom/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/jest-environment-jsdom/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/jest-environment-jsdom/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/jest-environment-jsdom/node_modules/jest-util": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.4.2.tgz",
+ "integrity": "sha512-YuxxpXU6nlMan9qyLuxHaMMOzXAl5aGZWCSzben5DhLHemYQxCc4YK+4L3ZrCutT8GPQ+ui9k5D8rUJoDioMnA==",
+ "dev": true,
+ "dependencies": {
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.4",
+ "picomatch": "^2.2.3"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-environment-jsdom/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/jest-environment-node": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.4.6.tgz",
+ "integrity": "sha512-yfHlZ9m+kzTKZV0hVfhVu6GuDxKAYeFHrfulmy7Jxwsq4V7+ZK7f+c0XP/tbVDMQW7E4neG2u147hFkuVz0MlQ==",
+ "dev": true,
+ "dependencies": {
+ "@jest/environment": "^27.4.6",
+ "@jest/fake-timers": "^27.4.6",
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "jest-mock": "^27.4.6",
+ "jest-util": "^27.4.2"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-environment-node/node_modules/@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "dependencies": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-environment-node/node_modules/@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "dependencies": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "node_modules/jest-environment-node/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/jest-environment-node/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/jest-environment-node/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/jest-environment-node/node_modules/jest-util": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.4.2.tgz",
+ "integrity": "sha512-YuxxpXU6nlMan9qyLuxHaMMOzXAl5aGZWCSzben5DhLHemYQxCc4YK+4L3ZrCutT8GPQ+ui9k5D8rUJoDioMnA==",
+ "dev": true,
+ "dependencies": {
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.4",
+ "picomatch": "^2.2.3"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-environment-node/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/jest-get-type": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.4.0.tgz",
+ "integrity": "sha512-tk9o+ld5TWq41DkK14L4wox4s2D9MtTpKaAVzXfr5CUKm5ZK2ExcaFE0qls2W71zE/6R2TxxrK9w2r6svAFDBQ==",
+ "dev": true,
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-haste-map": {
+ "version": "26.6.2",
+ "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-26.6.2.tgz",
+ "integrity": "sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==",
+ "dev": true,
+ "dependencies": {
+ "@jest/types": "^26.6.2",
+ "@types/graceful-fs": "^4.1.2",
+ "@types/node": "*",
+ "anymatch": "^3.0.3",
+ "fb-watchman": "^2.0.0",
+ "graceful-fs": "^4.2.4",
+ "jest-regex-util": "^26.0.0",
+ "jest-serializer": "^26.6.2",
+ "jest-util": "^26.6.2",
+ "jest-worker": "^26.6.2",
+ "micromatch": "^4.0.2",
+ "sane": "^4.0.3",
+ "walker": "^1.0.7"
+ },
+ "engines": {
+ "node": ">= 10.14.2"
+ },
+ "optionalDependencies": {
+ "fsevents": "^2.1.2"
+ }
+ },
+ "node_modules/jest-haste-map/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/jest-haste-map/node_modules/jest-worker": {
+ "version": "26.6.2",
+ "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz",
+ "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==",
+ "dev": true,
+ "dependencies": {
+ "@types/node": "*",
+ "merge-stream": "^2.0.0",
+ "supports-color": "^7.0.0"
+ },
+ "engines": {
+ "node": ">= 10.13.0"
+ }
+ },
+ "node_modules/jest-haste-map/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/jest-jasmine2": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.4.6.tgz",
+ "integrity": "sha512-uAGNXF644I/whzhsf7/qf74gqy9OuhvJ0XYp8SDecX2ooGeaPnmJMjXjKt0mqh1Rl5dtRGxJgNrHlBQIBfS5Nw==",
+ "dev": true,
+ "dependencies": {
+ "@jest/environment": "^27.4.6",
+ "@jest/source-map": "^27.4.0",
+ "@jest/test-result": "^27.4.6",
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "co": "^4.6.0",
+ "expect": "^27.4.6",
+ "is-generator-fn": "^2.0.0",
+ "jest-each": "^27.4.6",
+ "jest-matcher-utils": "^27.4.6",
+ "jest-message-util": "^27.4.6",
+ "jest-runtime": "^27.4.6",
+ "jest-snapshot": "^27.4.6",
+ "jest-util": "^27.4.2",
+ "pretty-format": "^27.4.6",
+ "throat": "^6.0.1"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-jasmine2/node_modules/@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "dependencies": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-jasmine2/node_modules/@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "dependencies": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "node_modules/jest-jasmine2/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/jest-jasmine2/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/jest-jasmine2/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/jest-jasmine2/node_modules/jest-util": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.4.2.tgz",
+ "integrity": "sha512-YuxxpXU6nlMan9qyLuxHaMMOzXAl5aGZWCSzben5DhLHemYQxCc4YK+4L3ZrCutT8GPQ+ui9k5D8rUJoDioMnA==",
+ "dev": true,
+ "dependencies": {
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.4",
+ "picomatch": "^2.2.3"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-jasmine2/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/jest-leak-detector": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.4.6.tgz",
+ "integrity": "sha512-kkaGixDf9R7CjHm2pOzfTxZTQQQ2gHTIWKY/JZSiYTc90bZp8kSZnUMS3uLAfwTZwc0tcMRoEX74e14LG1WapA==",
+ "dev": true,
+ "dependencies": {
+ "jest-get-type": "^27.4.0",
+ "pretty-format": "^27.4.6"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-matcher-utils": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.4.6.tgz",
+ "integrity": "sha512-XD4PKT3Wn1LQnRAq7ZsTI0VRuEc9OrCPFiO1XL7bftTGmfNF0DcEwMHRgqiu7NGf8ZoZDREpGrCniDkjt79WbA==",
+ "dev": true,
+ "dependencies": {
+ "chalk": "^4.0.0",
+ "jest-diff": "^27.4.6",
+ "jest-get-type": "^27.4.0",
+ "pretty-format": "^27.4.6"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-matcher-utils/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/jest-matcher-utils/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/jest-matcher-utils/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/jest-matcher-utils/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/jest-message-util": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.4.6.tgz",
+ "integrity": "sha512-0p5szriFU0U74czRSFjH6RyS7UYIAkn/ntwMuOwTGWrQIOh5NzXXrq72LOqIkJKKvFbPq+byZKuBz78fjBERBA==",
+ "dev": true,
+ "dependencies": {
+ "@babel/code-frame": "^7.12.13",
+ "@jest/types": "^27.4.2",
+ "@types/stack-utils": "^2.0.0",
+ "chalk": "^4.0.0",
+ "graceful-fs": "^4.2.4",
+ "micromatch": "^4.0.4",
+ "pretty-format": "^27.4.6",
+ "slash": "^3.0.0",
+ "stack-utils": "^2.0.3"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-message-util/node_modules/@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "dependencies": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-message-util/node_modules/@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "dependencies": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "node_modules/jest-message-util/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/jest-message-util/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/jest-message-util/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/jest-message-util/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/jest-mock": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.4.6.tgz",
+ "integrity": "sha512-kvojdYRkst8iVSZ1EJ+vc1RRD9llueBjKzXzeCytH3dMM7zvPV/ULcfI2nr0v0VUgm3Bjt3hBCQvOeaBz+ZTHw==",
+ "dev": true,
+ "dependencies": {
+ "@jest/types": "^27.4.2",
+ "@types/node": "*"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-mock/node_modules/@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "dependencies": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-mock/node_modules/@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "dependencies": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "node_modules/jest-mock/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/jest-mock/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/jest-mock/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/jest-mock/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/jest-pnp-resolver": {
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz",
+ "integrity": "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==",
+ "dev": true,
+ "engines": {
+ "node": ">=6"
+ },
+ "peerDependencies": {
+ "jest-resolve": "*"
+ },
+ "peerDependenciesMeta": {
+ "jest-resolve": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/jest-regex-util": {
+ "version": "26.0.0",
+ "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-26.0.0.tgz",
+ "integrity": "sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==",
+ "dev": true,
+ "engines": {
+ "node": ">= 10.14.2"
+ }
+ },
+ "node_modules/jest-resolve": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.4.6.tgz",
+ "integrity": "sha512-SFfITVApqtirbITKFAO7jOVN45UgFzcRdQanOFzjnbd+CACDoyeX7206JyU92l4cRr73+Qy/TlW51+4vHGt+zw==",
+ "dev": true,
+ "dependencies": {
+ "@jest/types": "^27.4.2",
+ "chalk": "^4.0.0",
+ "graceful-fs": "^4.2.4",
+ "jest-haste-map": "^27.4.6",
+ "jest-pnp-resolver": "^1.2.2",
+ "jest-util": "^27.4.2",
+ "jest-validate": "^27.4.6",
+ "resolve": "^1.20.0",
+ "resolve.exports": "^1.1.0",
+ "slash": "^3.0.0"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-resolve-dependencies": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.4.6.tgz",
+ "integrity": "sha512-W85uJZcFXEVZ7+MZqIPCscdjuctruNGXUZ3OHSXOfXR9ITgbUKeHj+uGcies+0SsvI5GtUfTw4dY7u9qjTvQOw==",
+ "dev": true,
+ "dependencies": {
+ "@jest/types": "^27.4.2",
+ "jest-regex-util": "^27.4.0",
+ "jest-snapshot": "^27.4.6"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-resolve-dependencies/node_modules/@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "dependencies": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-resolve-dependencies/node_modules/@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "dependencies": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "node_modules/jest-resolve-dependencies/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/jest-resolve-dependencies/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/jest-resolve-dependencies/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/jest-resolve-dependencies/node_modules/jest-regex-util": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.4.0.tgz",
+ "integrity": "sha512-WeCpMpNnqJYMQoOjm1nTtsgbR4XHAk1u00qDoNBQoykM280+/TmgA5Qh5giC1ecy6a5d4hbSsHzpBtu5yvlbEg==",
+ "dev": true,
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-resolve-dependencies/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/jest-resolve/node_modules/@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "dependencies": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-resolve/node_modules/@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "dependencies": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "node_modules/jest-resolve/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/jest-resolve/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/jest-resolve/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/jest-resolve/node_modules/jest-haste-map": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.4.6.tgz",
+ "integrity": "sha512-0tNpgxg7BKurZeFkIOvGCkbmOHbLFf4LUQOxrQSMjvrQaQe3l6E8x6jYC1NuWkGo5WDdbr8FEzUxV2+LWNawKQ==",
+ "dev": true,
+ "dependencies": {
+ "@jest/types": "^27.4.2",
+ "@types/graceful-fs": "^4.1.2",
+ "@types/node": "*",
+ "anymatch": "^3.0.3",
+ "fb-watchman": "^2.0.0",
+ "graceful-fs": "^4.2.4",
+ "jest-regex-util": "^27.4.0",
+ "jest-serializer": "^27.4.0",
+ "jest-util": "^27.4.2",
+ "jest-worker": "^27.4.6",
+ "micromatch": "^4.0.4",
+ "walker": "^1.0.7"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ },
+ "optionalDependencies": {
+ "fsevents": "^2.3.2"
+ }
+ },
+ "node_modules/jest-resolve/node_modules/jest-regex-util": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.4.0.tgz",
+ "integrity": "sha512-WeCpMpNnqJYMQoOjm1nTtsgbR4XHAk1u00qDoNBQoykM280+/TmgA5Qh5giC1ecy6a5d4hbSsHzpBtu5yvlbEg==",
+ "dev": true,
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-resolve/node_modules/jest-serializer": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.4.0.tgz",
+ "integrity": "sha512-RDhpcn5f1JYTX2pvJAGDcnsNTnsV9bjYPU8xcV+xPwOXnUPOQwf4ZEuiU6G9H1UztH+OapMgu/ckEVwO87PwnQ==",
+ "dev": true,
+ "dependencies": {
+ "@types/node": "*",
+ "graceful-fs": "^4.2.4"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-resolve/node_modules/jest-util": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.4.2.tgz",
+ "integrity": "sha512-YuxxpXU6nlMan9qyLuxHaMMOzXAl5aGZWCSzben5DhLHemYQxCc4YK+4L3ZrCutT8GPQ+ui9k5D8rUJoDioMnA==",
+ "dev": true,
+ "dependencies": {
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.4",
+ "picomatch": "^2.2.3"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-resolve/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/jest-runner": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-27.4.6.tgz",
+ "integrity": "sha512-IDeFt2SG4DzqalYBZRgbbPmpwV3X0DcntjezPBERvnhwKGWTW7C5pbbA5lVkmvgteeNfdd/23gwqv3aiilpYPg==",
+ "dev": true,
+ "dependencies": {
+ "@jest/console": "^27.4.6",
+ "@jest/environment": "^27.4.6",
+ "@jest/test-result": "^27.4.6",
+ "@jest/transform": "^27.4.6",
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "emittery": "^0.8.1",
+ "exit": "^0.1.2",
+ "graceful-fs": "^4.2.4",
+ "jest-docblock": "^27.4.0",
+ "jest-environment-jsdom": "^27.4.6",
+ "jest-environment-node": "^27.4.6",
+ "jest-haste-map": "^27.4.6",
+ "jest-leak-detector": "^27.4.6",
+ "jest-message-util": "^27.4.6",
+ "jest-resolve": "^27.4.6",
+ "jest-runtime": "^27.4.6",
+ "jest-util": "^27.4.2",
+ "jest-worker": "^27.4.6",
+ "source-map-support": "^0.5.6",
+ "throat": "^6.0.1"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-runner/node_modules/@jest/transform": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.4.6.tgz",
+ "integrity": "sha512-9MsufmJC8t5JTpWEQJ0OcOOAXaH5ioaIX6uHVBLBMoCZPfKKQF+EqP8kACAvCZ0Y1h2Zr3uOccg8re+Dr5jxyw==",
+ "dev": true,
+ "dependencies": {
+ "@babel/core": "^7.1.0",
+ "@jest/types": "^27.4.2",
+ "babel-plugin-istanbul": "^6.1.1",
+ "chalk": "^4.0.0",
+ "convert-source-map": "^1.4.0",
+ "fast-json-stable-stringify": "^2.0.0",
+ "graceful-fs": "^4.2.4",
+ "jest-haste-map": "^27.4.6",
+ "jest-regex-util": "^27.4.0",
+ "jest-util": "^27.4.2",
+ "micromatch": "^4.0.4",
+ "pirates": "^4.0.4",
+ "slash": "^3.0.0",
+ "source-map": "^0.6.1",
+ "write-file-atomic": "^3.0.0"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-runner/node_modules/@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "dependencies": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-runner/node_modules/@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "dependencies": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "node_modules/jest-runner/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/jest-runner/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/jest-runner/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/jest-runner/node_modules/jest-haste-map": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.4.6.tgz",
+ "integrity": "sha512-0tNpgxg7BKurZeFkIOvGCkbmOHbLFf4LUQOxrQSMjvrQaQe3l6E8x6jYC1NuWkGo5WDdbr8FEzUxV2+LWNawKQ==",
+ "dev": true,
+ "dependencies": {
+ "@jest/types": "^27.4.2",
+ "@types/graceful-fs": "^4.1.2",
+ "@types/node": "*",
+ "anymatch": "^3.0.3",
+ "fb-watchman": "^2.0.0",
+ "graceful-fs": "^4.2.4",
+ "jest-regex-util": "^27.4.0",
+ "jest-serializer": "^27.4.0",
+ "jest-util": "^27.4.2",
+ "jest-worker": "^27.4.6",
+ "micromatch": "^4.0.4",
+ "walker": "^1.0.7"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ },
+ "optionalDependencies": {
+ "fsevents": "^2.3.2"
+ }
+ },
+ "node_modules/jest-runner/node_modules/jest-regex-util": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.4.0.tgz",
+ "integrity": "sha512-WeCpMpNnqJYMQoOjm1nTtsgbR4XHAk1u00qDoNBQoykM280+/TmgA5Qh5giC1ecy6a5d4hbSsHzpBtu5yvlbEg==",
+ "dev": true,
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-runner/node_modules/jest-serializer": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.4.0.tgz",
+ "integrity": "sha512-RDhpcn5f1JYTX2pvJAGDcnsNTnsV9bjYPU8xcV+xPwOXnUPOQwf4ZEuiU6G9H1UztH+OapMgu/ckEVwO87PwnQ==",
+ "dev": true,
+ "dependencies": {
+ "@types/node": "*",
+ "graceful-fs": "^4.2.4"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-runner/node_modules/jest-util": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.4.2.tgz",
+ "integrity": "sha512-YuxxpXU6nlMan9qyLuxHaMMOzXAl5aGZWCSzben5DhLHemYQxCc4YK+4L3ZrCutT8GPQ+ui9k5D8rUJoDioMnA==",
+ "dev": true,
+ "dependencies": {
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.4",
+ "picomatch": "^2.2.3"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-runner/node_modules/source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/jest-runner/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/jest-runtime": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.4.6.tgz",
+ "integrity": "sha512-eXYeoR/MbIpVDrjqy5d6cGCFOYBFFDeKaNWqTp0h6E74dK0zLHzASQXJpl5a2/40euBmKnprNLJ0Kh0LCndnWQ==",
+ "dev": true,
+ "dependencies": {
+ "@jest/environment": "^27.4.6",
+ "@jest/fake-timers": "^27.4.6",
+ "@jest/globals": "^27.4.6",
+ "@jest/source-map": "^27.4.0",
+ "@jest/test-result": "^27.4.6",
+ "@jest/transform": "^27.4.6",
+ "@jest/types": "^27.4.2",
+ "chalk": "^4.0.0",
+ "cjs-module-lexer": "^1.0.0",
+ "collect-v8-coverage": "^1.0.0",
+ "execa": "^5.0.0",
+ "glob": "^7.1.3",
+ "graceful-fs": "^4.2.4",
+ "jest-haste-map": "^27.4.6",
+ "jest-message-util": "^27.4.6",
+ "jest-mock": "^27.4.6",
+ "jest-regex-util": "^27.4.0",
+ "jest-resolve": "^27.4.6",
+ "jest-snapshot": "^27.4.6",
+ "jest-util": "^27.4.2",
+ "slash": "^3.0.0",
+ "strip-bom": "^4.0.0"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-runtime/node_modules/@jest/transform": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.4.6.tgz",
+ "integrity": "sha512-9MsufmJC8t5JTpWEQJ0OcOOAXaH5ioaIX6uHVBLBMoCZPfKKQF+EqP8kACAvCZ0Y1h2Zr3uOccg8re+Dr5jxyw==",
+ "dev": true,
+ "dependencies": {
+ "@babel/core": "^7.1.0",
+ "@jest/types": "^27.4.2",
+ "babel-plugin-istanbul": "^6.1.1",
+ "chalk": "^4.0.0",
+ "convert-source-map": "^1.4.0",
+ "fast-json-stable-stringify": "^2.0.0",
+ "graceful-fs": "^4.2.4",
+ "jest-haste-map": "^27.4.6",
+ "jest-regex-util": "^27.4.0",
+ "jest-util": "^27.4.2",
+ "micromatch": "^4.0.4",
+ "pirates": "^4.0.4",
+ "slash": "^3.0.0",
+ "source-map": "^0.6.1",
+ "write-file-atomic": "^3.0.0"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-runtime/node_modules/@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "dependencies": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-runtime/node_modules/@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "dependencies": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "node_modules/jest-runtime/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/jest-runtime/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/jest-runtime/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/jest-runtime/node_modules/jest-haste-map": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.4.6.tgz",
+ "integrity": "sha512-0tNpgxg7BKurZeFkIOvGCkbmOHbLFf4LUQOxrQSMjvrQaQe3l6E8x6jYC1NuWkGo5WDdbr8FEzUxV2+LWNawKQ==",
+ "dev": true,
+ "dependencies": {
+ "@jest/types": "^27.4.2",
+ "@types/graceful-fs": "^4.1.2",
+ "@types/node": "*",
+ "anymatch": "^3.0.3",
+ "fb-watchman": "^2.0.0",
+ "graceful-fs": "^4.2.4",
+ "jest-regex-util": "^27.4.0",
+ "jest-serializer": "^27.4.0",
+ "jest-util": "^27.4.2",
+ "jest-worker": "^27.4.6",
+ "micromatch": "^4.0.4",
+ "walker": "^1.0.7"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ },
+ "optionalDependencies": {
+ "fsevents": "^2.3.2"
+ }
+ },
+ "node_modules/jest-runtime/node_modules/jest-regex-util": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.4.0.tgz",
+ "integrity": "sha512-WeCpMpNnqJYMQoOjm1nTtsgbR4XHAk1u00qDoNBQoykM280+/TmgA5Qh5giC1ecy6a5d4hbSsHzpBtu5yvlbEg==",
+ "dev": true,
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-runtime/node_modules/jest-serializer": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.4.0.tgz",
+ "integrity": "sha512-RDhpcn5f1JYTX2pvJAGDcnsNTnsV9bjYPU8xcV+xPwOXnUPOQwf4ZEuiU6G9H1UztH+OapMgu/ckEVwO87PwnQ==",
+ "dev": true,
+ "dependencies": {
+ "@types/node": "*",
+ "graceful-fs": "^4.2.4"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-runtime/node_modules/jest-util": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.4.2.tgz",
+ "integrity": "sha512-YuxxpXU6nlMan9qyLuxHaMMOzXAl5aGZWCSzben5DhLHemYQxCc4YK+4L3ZrCutT8GPQ+ui9k5D8rUJoDioMnA==",
+ "dev": true,
+ "dependencies": {
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.4",
+ "picomatch": "^2.2.3"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-runtime/node_modules/source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/jest-runtime/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/jest-serializer": {
+ "version": "26.6.2",
+ "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-26.6.2.tgz",
+ "integrity": "sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==",
+ "dev": true,
+ "dependencies": {
+ "@types/node": "*",
+ "graceful-fs": "^4.2.4"
+ },
+ "engines": {
+ "node": ">= 10.14.2"
+ }
+ },
+ "node_modules/jest-snapshot": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.4.6.tgz",
+ "integrity": "sha512-fafUCDLQfzuNP9IRcEqaFAMzEe7u5BF7mude51wyWv7VRex60WznZIC7DfKTgSIlJa8aFzYmXclmN328aqSDmQ==",
+ "dev": true,
+ "dependencies": {
+ "@babel/core": "^7.7.2",
+ "@babel/generator": "^7.7.2",
+ "@babel/plugin-syntax-typescript": "^7.7.2",
+ "@babel/traverse": "^7.7.2",
+ "@babel/types": "^7.0.0",
+ "@jest/transform": "^27.4.6",
+ "@jest/types": "^27.4.2",
+ "@types/babel__traverse": "^7.0.4",
+ "@types/prettier": "^2.1.5",
+ "babel-preset-current-node-syntax": "^1.0.0",
+ "chalk": "^4.0.0",
+ "expect": "^27.4.6",
+ "graceful-fs": "^4.2.4",
+ "jest-diff": "^27.4.6",
+ "jest-get-type": "^27.4.0",
+ "jest-haste-map": "^27.4.6",
+ "jest-matcher-utils": "^27.4.6",
+ "jest-message-util": "^27.4.6",
+ "jest-util": "^27.4.2",
+ "natural-compare": "^1.4.0",
+ "pretty-format": "^27.4.6",
+ "semver": "^7.3.2"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-snapshot/node_modules/@jest/transform": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.4.6.tgz",
+ "integrity": "sha512-9MsufmJC8t5JTpWEQJ0OcOOAXaH5ioaIX6uHVBLBMoCZPfKKQF+EqP8kACAvCZ0Y1h2Zr3uOccg8re+Dr5jxyw==",
+ "dev": true,
+ "dependencies": {
+ "@babel/core": "^7.1.0",
+ "@jest/types": "^27.4.2",
+ "babel-plugin-istanbul": "^6.1.1",
+ "chalk": "^4.0.0",
+ "convert-source-map": "^1.4.0",
+ "fast-json-stable-stringify": "^2.0.0",
+ "graceful-fs": "^4.2.4",
+ "jest-haste-map": "^27.4.6",
+ "jest-regex-util": "^27.4.0",
+ "jest-util": "^27.4.2",
+ "micromatch": "^4.0.4",
+ "pirates": "^4.0.4",
+ "slash": "^3.0.0",
+ "source-map": "^0.6.1",
+ "write-file-atomic": "^3.0.0"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-snapshot/node_modules/@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "dependencies": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-snapshot/node_modules/@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "dependencies": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "node_modules/jest-snapshot/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/jest-snapshot/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/jest-snapshot/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/jest-snapshot/node_modules/jest-haste-map": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.4.6.tgz",
+ "integrity": "sha512-0tNpgxg7BKurZeFkIOvGCkbmOHbLFf4LUQOxrQSMjvrQaQe3l6E8x6jYC1NuWkGo5WDdbr8FEzUxV2+LWNawKQ==",
+ "dev": true,
+ "dependencies": {
+ "@jest/types": "^27.4.2",
+ "@types/graceful-fs": "^4.1.2",
+ "@types/node": "*",
+ "anymatch": "^3.0.3",
+ "fb-watchman": "^2.0.0",
+ "graceful-fs": "^4.2.4",
+ "jest-regex-util": "^27.4.0",
+ "jest-serializer": "^27.4.0",
+ "jest-util": "^27.4.2",
+ "jest-worker": "^27.4.6",
+ "micromatch": "^4.0.4",
+ "walker": "^1.0.7"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ },
+ "optionalDependencies": {
+ "fsevents": "^2.3.2"
+ }
+ },
+ "node_modules/jest-snapshot/node_modules/jest-regex-util": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.4.0.tgz",
+ "integrity": "sha512-WeCpMpNnqJYMQoOjm1nTtsgbR4XHAk1u00qDoNBQoykM280+/TmgA5Qh5giC1ecy6a5d4hbSsHzpBtu5yvlbEg==",
+ "dev": true,
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-snapshot/node_modules/jest-serializer": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.4.0.tgz",
+ "integrity": "sha512-RDhpcn5f1JYTX2pvJAGDcnsNTnsV9bjYPU8xcV+xPwOXnUPOQwf4ZEuiU6G9H1UztH+OapMgu/ckEVwO87PwnQ==",
+ "dev": true,
+ "dependencies": {
+ "@types/node": "*",
+ "graceful-fs": "^4.2.4"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-snapshot/node_modules/jest-util": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.4.2.tgz",
+ "integrity": "sha512-YuxxpXU6nlMan9qyLuxHaMMOzXAl5aGZWCSzben5DhLHemYQxCc4YK+4L3ZrCutT8GPQ+ui9k5D8rUJoDioMnA==",
+ "dev": true,
+ "dependencies": {
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.4",
+ "picomatch": "^2.2.3"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-snapshot/node_modules/semver": {
+ "version": "7.3.5",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz",
+ "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==",
+ "dev": true,
+ "dependencies": {
+ "lru-cache": "^6.0.0"
+ },
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/jest-snapshot/node_modules/source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/jest-snapshot/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/jest-util": {
+ "version": "26.6.2",
+ "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz",
+ "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==",
+ "dev": true,
+ "dependencies": {
+ "@jest/types": "^26.6.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "graceful-fs": "^4.2.4",
+ "is-ci": "^2.0.0",
+ "micromatch": "^4.0.2"
+ },
+ "engines": {
+ "node": ">= 10.14.2"
+ }
+ },
+ "node_modules/jest-util/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/jest-util/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/jest-util/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/jest-util/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/jest-validate": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.4.6.tgz",
+ "integrity": "sha512-872mEmCPVlBqbA5dToC57vA3yJaMRfIdpCoD3cyHWJOMx+SJwLNw0I71EkWs41oza/Er9Zno9XuTkRYCPDUJXQ==",
+ "dev": true,
+ "dependencies": {
+ "@jest/types": "^27.4.2",
+ "camelcase": "^6.2.0",
+ "chalk": "^4.0.0",
+ "jest-get-type": "^27.4.0",
+ "leven": "^3.1.0",
+ "pretty-format": "^27.4.6"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-validate/node_modules/@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "dependencies": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-validate/node_modules/@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "dependencies": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "node_modules/jest-validate/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/jest-validate/node_modules/camelcase": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz",
+ "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==",
+ "dev": true,
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/jest-validate/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/jest-validate/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/jest-validate/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/jest-watcher": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.4.6.tgz",
+ "integrity": "sha512-yKQ20OMBiCDigbD0quhQKLkBO+ObGN79MO4nT7YaCuQ5SM+dkBNWE8cZX0FjU6czwMvWw6StWbe+Wv4jJPJ+fw==",
+ "dev": true,
+ "dependencies": {
+ "@jest/test-result": "^27.4.6",
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "ansi-escapes": "^4.2.1",
+ "chalk": "^4.0.0",
+ "jest-util": "^27.4.2",
+ "string-length": "^4.0.1"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-watcher/node_modules/@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "dependencies": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-watcher/node_modules/@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "dependencies": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "node_modules/jest-watcher/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/jest-watcher/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/jest-watcher/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/jest-watcher/node_modules/jest-util": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.4.2.tgz",
+ "integrity": "sha512-YuxxpXU6nlMan9qyLuxHaMMOzXAl5aGZWCSzben5DhLHemYQxCc4YK+4L3ZrCutT8GPQ+ui9k5D8rUJoDioMnA==",
+ "dev": true,
+ "dependencies": {
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.4",
+ "picomatch": "^2.2.3"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/jest-watcher/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/jest-worker": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.4.6.tgz",
+ "integrity": "sha512-gHWJF/6Xi5CTG5QCvROr6GcmpIqNYpDJyc8A1h/DyXqH1tD6SnRCM0d3U5msV31D2LB/U+E0M+W4oyvKV44oNw==",
+ "dev": true,
+ "dependencies": {
+ "@types/node": "*",
+ "merge-stream": "^2.0.0",
+ "supports-color": "^8.0.0"
+ },
+ "engines": {
+ "node": ">= 10.13.0"
+ }
+ },
+ "node_modules/jest-worker/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/jest-worker/node_modules/supports-color": {
+ "version": "8.1.1",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
+ "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
+ "dev": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/supports-color?sponsor=1"
+ }
+ },
+ "node_modules/js-string-escape": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/js-string-escape/-/js-string-escape-1.0.1.tgz",
+ "integrity": "sha1-4mJbrbwNZ8dTPp7cEGjFh65BN+8=",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/js-tokens": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
+ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
+ "dev": true
+ },
+ "node_modules/js-yaml": {
+ "version": "3.14.1",
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
+ "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
+ "dev": true,
+ "dependencies": {
+ "argparse": "^1.0.7",
+ "esprima": "^4.0.0"
+ },
+ "bin": {
+ "js-yaml": "bin/js-yaml.js"
+ }
+ },
+ "node_modules/jsdom": {
+ "version": "16.7.0",
+ "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz",
+ "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==",
+ "dev": true,
+ "dependencies": {
+ "abab": "^2.0.5",
+ "acorn": "^8.2.4",
+ "acorn-globals": "^6.0.0",
+ "cssom": "^0.4.4",
+ "cssstyle": "^2.3.0",
+ "data-urls": "^2.0.0",
+ "decimal.js": "^10.2.1",
+ "domexception": "^2.0.1",
+ "escodegen": "^2.0.0",
+ "form-data": "^3.0.0",
+ "html-encoding-sniffer": "^2.0.1",
+ "http-proxy-agent": "^4.0.1",
+ "https-proxy-agent": "^5.0.0",
+ "is-potential-custom-element-name": "^1.0.1",
+ "nwsapi": "^2.2.0",
+ "parse5": "6.0.1",
+ "saxes": "^5.0.1",
+ "symbol-tree": "^3.2.4",
+ "tough-cookie": "^4.0.0",
+ "w3c-hr-time": "^1.0.2",
+ "w3c-xmlserializer": "^2.0.0",
+ "webidl-conversions": "^6.1.0",
+ "whatwg-encoding": "^1.0.5",
+ "whatwg-mimetype": "^2.3.0",
+ "whatwg-url": "^8.5.0",
+ "ws": "^7.4.6",
+ "xml-name-validator": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "peerDependencies": {
+ "canvas": "^2.5.0"
+ },
+ "peerDependenciesMeta": {
+ "canvas": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/jsdom/node_modules/acorn": {
+ "version": "8.7.0",
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.7.0.tgz",
+ "integrity": "sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ==",
+ "dev": true,
+ "bin": {
+ "acorn": "bin/acorn"
+ },
+ "engines": {
+ "node": ">=0.4.0"
+ }
+ },
+ "node_modules/jsesc": {
+ "version": "2.5.2",
+ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz",
+ "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==",
+ "dev": true,
+ "bin": {
+ "jsesc": "bin/jsesc"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/json-parse-better-errors": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz",
+ "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==",
+ "dev": true
+ },
+ "node_modules/json-parse-even-better-errors": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
+ "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==",
+ "dev": true
+ },
+ "node_modules/json-schema-traverse": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
+ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
+ "dev": true
+ },
+ "node_modules/json5": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz",
+ "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==",
+ "dev": true,
+ "dependencies": {
+ "minimist": "^1.2.5"
+ },
+ "bin": {
+ "json5": "lib/cli.js"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/jsonfile": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+ "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+ "dev": true,
+ "dependencies": {
+ "universalify": "^2.0.0"
+ },
+ "optionalDependencies": {
+ "graceful-fs": "^4.1.6"
+ }
+ },
+ "node_modules/jszip": {
+ "version": "3.7.1",
+ "resolved": "https://registry.npmjs.org/jszip/-/jszip-3.7.1.tgz",
+ "integrity": "sha512-ghL0tz1XG9ZEmRMcEN2vt7xabrDdqHHeykgARpmZ0BiIctWxM47Vt63ZO2dnp4QYt/xJVLLy5Zv1l/xRdh2byg==",
+ "dependencies": {
+ "lie": "~3.3.0",
+ "pako": "~1.0.2",
+ "readable-stream": "~2.3.6",
+ "set-immediate-shim": "~1.0.1"
+ }
+ },
+ "node_modules/junk": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/junk/-/junk-3.1.0.tgz",
+ "integrity": "sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/katex": {
+ "version": "0.13.24",
+ "resolved": "https://registry.npmjs.org/katex/-/katex-0.13.24.tgz",
+ "integrity": "sha512-jZxYuKCma3VS5UuxOx/rFV1QyGSl3Uy/i0kTJF3HgQ5xMinCQVF8Zd4bMY/9aI9b9A2pjIBOsjSSm68ykTAr8w==",
+ "dev": true,
+ "funding": [
+ "https://opencollective.com/katex",
+ "https://github.com/sponsors/katex"
+ ],
+ "dependencies": {
+ "commander": "^8.0.0"
+ },
+ "bin": {
+ "katex": "cli.js"
+ }
+ },
+ "node_modules/katex/node_modules/commander": {
+ "version": "8.3.0",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz",
+ "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==",
+ "dev": true,
+ "engines": {
+ "node": ">= 12"
+ }
+ },
+ "node_modules/kind-of": {
+ "version": "6.0.3",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
+ "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/klaw": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz",
+ "integrity": "sha1-QIhDO0azsbolnXh4XY6W9zugJDk=",
+ "dev": true,
+ "optionalDependencies": {
+ "graceful-fs": "^4.1.9"
+ }
+ },
+ "node_modules/kleur": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz",
+ "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==",
+ "dev": true,
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/klona": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.5.tgz",
+ "integrity": "sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==",
+ "dev": true,
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/lazy-universal-dotenv": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/lazy-universal-dotenv/-/lazy-universal-dotenv-3.0.1.tgz",
+ "integrity": "sha512-prXSYk799h3GY3iOWnC6ZigYzMPjxN2svgjJ9shk7oMadSNX3wXy0B6F32PMJv7qtMnrIbUxoEHzbutvxR2LBQ==",
+ "dev": true,
+ "dependencies": {
+ "@babel/runtime": "^7.5.0",
+ "app-root-dir": "^1.0.2",
+ "core-js": "^3.0.4",
+ "dotenv": "^8.0.0",
+ "dotenv-expand": "^5.1.0"
+ },
+ "engines": {
+ "node": ">=6.0.0",
+ "npm": ">=6.0.0",
+ "yarn": ">=1.0.0"
+ }
+ },
+ "node_modules/leven": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz",
+ "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==",
+ "dev": true,
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/levn": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz",
+ "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=",
+ "dev": true,
+ "dependencies": {
+ "prelude-ls": "~1.1.2",
+ "type-check": "~0.3.2"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/lie": {
+ "version": "3.3.0",
+ "resolved": "https://registry.npmjs.org/lie/-/lie-3.3.0.tgz",
+ "integrity": "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==",
+ "dependencies": {
+ "immediate": "~3.0.5"
+ }
+ },
+ "node_modules/lines-and-columns": {
+ "version": "1.2.4",
+ "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
+ "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==",
+ "dev": true
+ },
+ "node_modules/loader-runner": {
+ "version": "2.4.0",
+ "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz",
+ "integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==",
+ "dev": true,
+ "engines": {
+ "node": ">=4.3.0 <5.0.0 || >=5.10"
+ }
+ },
+ "node_modules/loader-utils": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz",
+ "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==",
+ "dev": true,
+ "dependencies": {
+ "big.js": "^5.2.2",
+ "emojis-list": "^3.0.0",
+ "json5": "^2.1.2"
+ },
+ "engines": {
+ "node": ">=8.9.0"
+ }
+ },
+ "node_modules/locate-path": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
+ "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
+ "dev": true,
+ "dependencies": {
+ "p-locate": "^5.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/lodash": {
+ "version": "4.17.21",
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
+ "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
+ "dev": true
+ },
+ "node_modules/lodash.debounce": {
+ "version": "4.0.8",
+ "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz",
+ "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=",
+ "dev": true
+ },
+ "node_modules/lodash.uniq": {
+ "version": "4.5.0",
+ "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz",
+ "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=",
+ "dev": true
+ },
+ "node_modules/longest-streak": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.0.1.tgz",
+ "integrity": "sha512-cHlYSUpL2s7Fb3394mYxwTYj8niTaNHUCLr0qdiCXQfSjfuA7CKofpX2uSwEfFDQ0EB7JcnMnm+GjbqqoinYYg==",
+ "dev": true,
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/loose-envify": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
+ "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
+ "dev": true,
+ "dependencies": {
+ "js-tokens": "^3.0.0 || ^4.0.0"
+ },
+ "bin": {
+ "loose-envify": "cli.js"
+ }
+ },
+ "node_modules/lower-case": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz",
+ "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==",
+ "dev": true,
+ "dependencies": {
+ "tslib": "^2.0.3"
+ }
+ },
+ "node_modules/lowlight": {
+ "version": "1.20.0",
+ "resolved": "https://registry.npmjs.org/lowlight/-/lowlight-1.20.0.tgz",
+ "integrity": "sha512-8Ktj+prEb1RoCPkEOrPMYUN/nCggB7qAWe3a7OpMjWQkh3l2RD5wKRQ+o8Q8YuI9RG/xs95waaI/E6ym/7NsTw==",
+ "dev": true,
+ "dependencies": {
+ "fault": "^1.0.0",
+ "highlight.js": "~10.7.0"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/lru-cache": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
+ "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
+ "dev": true,
+ "dependencies": {
+ "yallist": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/make-dir": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz",
+ "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==",
+ "dev": true,
+ "dependencies": {
+ "pify": "^4.0.1",
+ "semver": "^5.6.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/make-dir/node_modules/semver": {
+ "version": "5.7.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
+ "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
+ "dev": true,
+ "bin": {
+ "semver": "bin/semver"
+ }
+ },
+ "node_modules/makeerror": {
+ "version": "1.0.12",
+ "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz",
+ "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==",
+ "dev": true,
+ "dependencies": {
+ "tmpl": "1.0.5"
+ }
+ },
+ "node_modules/map-cache": {
+ "version": "0.2.2",
+ "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz",
+ "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/map-or-similar": {
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/map-or-similar/-/map-or-similar-1.5.0.tgz",
+ "integrity": "sha1-beJlMXSt+12e3DPGnT6Sobdvrwg=",
+ "dev": true
+ },
+ "node_modules/map-visit": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz",
+ "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=",
+ "dev": true,
+ "dependencies": {
+ "object-visit": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/markdown-escapes": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/markdown-escapes/-/markdown-escapes-1.0.4.tgz",
+ "integrity": "sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==",
+ "dev": true,
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/markdown-table": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.2.tgz",
+ "integrity": "sha512-y8j3a5/DkJCmS5x4dMCQL+OR0+2EAq3DOtio1COSHsmW2BGXnNCK3v12hJt1LrUz5iZH5g0LmuYOjDdI+czghA==",
+ "dev": true,
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/markdown-to-jsx": {
+ "version": "7.1.5",
+ "resolved": "https://registry.npmjs.org/markdown-to-jsx/-/markdown-to-jsx-7.1.5.tgz",
+ "integrity": "sha512-YQEMMMCX3PYOWtUAQu8Fmz5/sH09s17eyQnDubwaAo8sWmnRTT1og96EFv1vL59l4nWfmtF3L91pqkuheVqRlA==",
+ "dev": true,
+ "engines": {
+ "node": ">= 10"
+ },
+ "peerDependencies": {
+ "react": ">= 0.14.0"
+ }
+ },
+ "node_modules/md5.js": {
+ "version": "1.3.5",
+ "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz",
+ "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==",
+ "dev": true,
+ "dependencies": {
+ "hash-base": "^3.0.0",
+ "inherits": "^2.0.1",
+ "safe-buffer": "^5.1.2"
+ }
+ },
+ "node_modules/mdast-squeeze-paragraphs": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/mdast-squeeze-paragraphs/-/mdast-squeeze-paragraphs-4.0.0.tgz",
+ "integrity": "sha512-zxdPn69hkQ1rm4J+2Cs2j6wDEv7O17TfXTJ33tl/+JPIoEmtV9t2ZzBM5LPHE8QlHsmVD8t3vPKCyY3oH+H8MQ==",
+ "dev": true,
+ "dependencies": {
+ "unist-util-remove": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-definitions": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-4.0.0.tgz",
+ "integrity": "sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==",
+ "dev": true,
+ "dependencies": {
+ "unist-util-visit": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-definitions/node_modules/unist-util-visit": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz",
+ "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==",
+ "dev": true,
+ "dependencies": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0",
+ "unist-util-visit-parents": "^3.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-definitions/node_modules/unist-util-visit-parents": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz",
+ "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==",
+ "dev": true,
+ "dependencies": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-find-and-replace": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-2.1.0.tgz",
+ "integrity": "sha512-1w1jbqAd13oU78QPBf5223+xB+37ecNtQ1JElq2feWols5oEYAl+SgNDnOZipe7NfLemoEt362yUS15/wip4mw==",
+ "dev": true,
+ "dependencies": {
+ "escape-string-regexp": "^5.0.0",
+ "unist-util-is": "^5.0.0",
+ "unist-util-visit-parents": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-find-and-replace/node_modules/escape-string-regexp": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz",
+ "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==",
+ "dev": true,
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/mdast-util-find-and-replace/node_modules/unist-util-is": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.1.1.tgz",
+ "integrity": "sha512-F5CZ68eYzuSvJjGhCLPL3cYx45IxkqXSetCcRgUXtbcm50X2L9oOWQlfUfDdAf+6Pd27YDblBfdtmsThXmwpbQ==",
+ "dev": true,
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-footnote": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-footnote/-/mdast-util-footnote-1.0.0.tgz",
+ "integrity": "sha512-DBQervPt/8PZOebnKZu2dXsLXgKHfCirW5BIR824z4tGujWQ4gMMASPEEKqgCpoeDO0WS691Eqbv/HKGvw6Vmw==",
+ "dev": true,
+ "dependencies": {
+ "@types/mdast": "^3.0.0",
+ "mdast-util-to-markdown": "^1.0.0",
+ "micromark-util-normalize-identifier": "^1.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-from-markdown": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-1.2.0.tgz",
+ "integrity": "sha512-iZJyyvKD1+K7QX1b5jXdE7Sc5dtoTry1vzV28UZZe8Z1xVnB/czKntJ7ZAkG0tANqRnBF6p3p7GpU1y19DTf2Q==",
+ "dev": true,
+ "dependencies": {
+ "@types/mdast": "^3.0.0",
+ "@types/unist": "^2.0.0",
+ "decode-named-character-reference": "^1.0.0",
+ "mdast-util-to-string": "^3.1.0",
+ "micromark": "^3.0.0",
+ "micromark-util-decode-numeric-character-reference": "^1.0.0",
+ "micromark-util-decode-string": "^1.0.0",
+ "micromark-util-normalize-identifier": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0",
+ "unist-util-stringify-position": "^3.0.0",
+ "uvu": "^0.5.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-frontmatter": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-frontmatter/-/mdast-util-frontmatter-1.0.0.tgz",
+ "integrity": "sha512-7itKvp0arEVNpCktOET/eLFAYaZ+0cNjVtFtIPxgQ5tV+3i+D4SDDTjTzPWl44LT59PC+xdx+glNTawBdF98Mw==",
+ "dev": true,
+ "dependencies": {
+ "micromark-extension-frontmatter": "^1.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-gfm": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-2.0.0.tgz",
+ "integrity": "sha512-wMwejlTN3EQADPFuvxe8lmGsay3+f6gSJKdAHR6KBJzpcxvsjJSILB9K6u6G7eQLC7iOTyVIHYGui9uBc9r1Tg==",
+ "dev": true,
+ "dependencies": {
+ "mdast-util-gfm-autolink-literal": "^1.0.0",
+ "mdast-util-gfm-footnote": "^1.0.0",
+ "mdast-util-gfm-strikethrough": "^1.0.0",
+ "mdast-util-gfm-table": "^1.0.0",
+ "mdast-util-gfm-task-list-item": "^1.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-gfm-autolink-literal": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-1.0.2.tgz",
+ "integrity": "sha512-FzopkOd4xTTBeGXhXSBU0OCDDh5lUj2rd+HQqG92Ld+jL4lpUfgX2AT2OHAVP9aEeDKp7G92fuooSZcYJA3cRg==",
+ "dev": true,
+ "dependencies": {
+ "@types/mdast": "^3.0.0",
+ "ccount": "^2.0.0",
+ "mdast-util-find-and-replace": "^2.0.0",
+ "micromark-util-character": "^1.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-gfm-footnote": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-1.0.0.tgz",
+ "integrity": "sha512-qeg9YoS2YYP6OBmMyUFxKXb6BLwAsbGidIxgwDAXHIMYZQhIwe52L9BSJs+zP29Jp5nSERPkmG3tSwAN23/ZbQ==",
+ "dev": true,
+ "dependencies": {
+ "@types/mdast": "^3.0.0",
+ "mdast-util-to-markdown": "^1.0.0",
+ "micromark-util-normalize-identifier": "^1.0.0",
+ "unist-util-visit": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-gfm-strikethrough": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-1.0.0.tgz",
+ "integrity": "sha512-gM9ipBUdRxYa6Yq1Hd8Otg6jEn/dRxFZ1F9ZX4QHosHOexLGqNZO2dh0A+YFbUEd10RcKjnjb4jOfJJzoXXUew==",
+ "dev": true,
+ "dependencies": {
+ "@types/mdast": "^3.0.3",
+ "mdast-util-to-markdown": "^1.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-gfm-table": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-1.0.2.tgz",
+ "integrity": "sha512-pPekvCTChFBF8uCq8bVyQwar8NBU/TaXIy44jj/UzmjMgPBHIa1B1ge8a0JVgzhqgXQAMvGT+PgiKlicdLGfDQ==",
+ "dev": true,
+ "dependencies": {
+ "markdown-table": "^3.0.0",
+ "mdast-util-to-markdown": "^1.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-gfm-task-list-item": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-1.0.0.tgz",
+ "integrity": "sha512-dwkzOTjQe8JCCHVE3Cb0pLHTYLudf7t9WCAnb20jI8/dW+VHjgWhjtIUVA3oigNkssgjEwX+i+3XesUdCnXGyA==",
+ "dev": true,
+ "dependencies": {
+ "@types/mdast": "^3.0.3",
+ "mdast-util-to-markdown": "^1.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-math": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-math/-/mdast-util-math-2.0.0.tgz",
+ "integrity": "sha512-D78NdSY7aNipuibX+q8LdjVyQI+oKGO5kwpgOZZjxLPqRhQZhZoTPXIAIbLg/UIP3NyCzHuebiR0HDWksBS80w==",
+ "dev": true,
+ "dependencies": {
+ "@types/mdast": "^3.0.0",
+ "longest-streak": "^3.0.0",
+ "mdast-util-to-markdown": "^1.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-to-hast": {
+ "version": "10.0.1",
+ "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-10.0.1.tgz",
+ "integrity": "sha512-BW3LM9SEMnjf4HXXVApZMt8gLQWVNXc3jryK0nJu/rOXPOnlkUjmdkDlmxMirpbU9ILncGFIwLH/ubnWBbcdgA==",
+ "dev": true,
+ "dependencies": {
+ "@types/mdast": "^3.0.0",
+ "@types/unist": "^2.0.0",
+ "mdast-util-definitions": "^4.0.0",
+ "mdurl": "^1.0.0",
+ "unist-builder": "^2.0.0",
+ "unist-util-generated": "^1.0.0",
+ "unist-util-position": "^3.0.0",
+ "unist-util-visit": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-to-hast/node_modules/unist-util-visit": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz",
+ "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==",
+ "dev": true,
+ "dependencies": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0",
+ "unist-util-visit-parents": "^3.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-to-hast/node_modules/unist-util-visit-parents": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz",
+ "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==",
+ "dev": true,
+ "dependencies": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-to-markdown": {
+ "version": "1.2.6",
+ "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-1.2.6.tgz",
+ "integrity": "sha512-doJZmTEGagHypWvJ8ltinmwUsT9ZaNgNIQW6Gl7jNdsI1QZkTHTimYW561Niy2s8AEPAqEgV0dIh2UOVlSXUJA==",
+ "dev": true,
+ "dependencies": {
+ "@types/mdast": "^3.0.0",
+ "@types/unist": "^2.0.0",
+ "longest-streak": "^3.0.0",
+ "mdast-util-to-string": "^3.0.0",
+ "micromark-util-decode-string": "^1.0.0",
+ "unist-util-visit": "^4.0.0",
+ "zwitch": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-to-markdown/node_modules/zwitch": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.2.tgz",
+ "integrity": "sha512-JZxotl7SxAJH0j7dN4pxsTV6ZLXoLdGME+PsjkL/DaBrVryK9kTGq06GfKrwcSOqypP+fdXGoCHE36b99fWVoA==",
+ "dev": true,
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/mdast-util-to-string": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-3.1.0.tgz",
+ "integrity": "sha512-n4Vypz/DZgwo0iMHLQL49dJzlp7YtAJP+N07MZHpjPf/5XJuHUWstviF4Mn2jEiR/GNmtnRRqnwsXExk3igfFA==",
+ "dev": true,
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdurl": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz",
+ "integrity": "sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4=",
+ "dev": true
+ },
+ "node_modules/media-typer": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
+ "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/memfs": {
+ "version": "3.4.1",
+ "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.4.1.tgz",
+ "integrity": "sha512-1c9VPVvW5P7I85c35zAdEr1TD5+F11IToIHIlrVIcflfnzPkJa0ZoYEoEdYDP8KgPFoSZ/opDrUsAoZWym3mtw==",
+ "dev": true,
+ "dependencies": {
+ "fs-monkey": "1.0.3"
+ },
+ "engines": {
+ "node": ">= 4.0.0"
+ }
+ },
+ "node_modules/memoizerific": {
+ "version": "1.11.3",
+ "resolved": "https://registry.npmjs.org/memoizerific/-/memoizerific-1.11.3.tgz",
+ "integrity": "sha1-fIekZGREwy11Q4VwkF8tvRsagFo=",
+ "dev": true,
+ "dependencies": {
+ "map-or-similar": "^1.5.0"
+ }
+ },
+ "node_modules/memory-fs": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz",
+ "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=",
+ "dev": true,
+ "dependencies": {
+ "errno": "^0.1.3",
+ "readable-stream": "^2.0.1"
+ }
+ },
+ "node_modules/merge-descriptors": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz",
+ "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=",
+ "dev": true
+ },
+ "node_modules/merge-stream": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz",
+ "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==",
+ "dev": true
+ },
+ "node_modules/merge2": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
+ "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
+ "dev": true,
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/methods": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
+ "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/microevent.ts": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/microevent.ts/-/microevent.ts-0.1.1.tgz",
+ "integrity": "sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==",
+ "dev": true
+ },
+ "node_modules/micromark": {
+ "version": "3.0.10",
+ "resolved": "https://registry.npmjs.org/micromark/-/micromark-3.0.10.tgz",
+ "integrity": "sha512-ryTDy6UUunOXy2HPjelppgJ2sNfcPz1pLlMdA6Rz9jPzhLikWXv/irpWV/I2jd68Uhmny7hHxAlAhk4+vWggpg==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
+ "@types/debug": "^4.0.0",
+ "debug": "^4.0.0",
+ "decode-named-character-reference": "^1.0.0",
+ "micromark-core-commonmark": "^1.0.1",
+ "micromark-factory-space": "^1.0.0",
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-chunked": "^1.0.0",
+ "micromark-util-combine-extensions": "^1.0.0",
+ "micromark-util-decode-numeric-character-reference": "^1.0.0",
+ "micromark-util-encode": "^1.0.0",
+ "micromark-util-normalize-identifier": "^1.0.0",
+ "micromark-util-resolve-all": "^1.0.0",
+ "micromark-util-sanitize-uri": "^1.0.0",
+ "micromark-util-subtokenize": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.1",
+ "uvu": "^0.5.0"
+ }
+ },
+ "node_modules/micromark-core-commonmark": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-1.0.6.tgz",
+ "integrity": "sha512-K+PkJTxqjFfSNkfAhp4GB+cZPfQd6dxtTXnf+RjZOV7T4EEXnvgzOcnp+eSTmpGk9d1S9sL6/lqrgSNn/s0HZA==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
+ "decode-named-character-reference": "^1.0.0",
+ "micromark-factory-destination": "^1.0.0",
+ "micromark-factory-label": "^1.0.0",
+ "micromark-factory-space": "^1.0.0",
+ "micromark-factory-title": "^1.0.0",
+ "micromark-factory-whitespace": "^1.0.0",
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-chunked": "^1.0.0",
+ "micromark-util-classify-character": "^1.0.0",
+ "micromark-util-html-tag-name": "^1.0.0",
+ "micromark-util-normalize-identifier": "^1.0.0",
+ "micromark-util-resolve-all": "^1.0.0",
+ "micromark-util-subtokenize": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.1",
+ "uvu": "^0.5.0"
+ }
+ },
+ "node_modules/micromark-extension-footnote": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/micromark-extension-footnote/-/micromark-extension-footnote-1.0.2.tgz",
+ "integrity": "sha512-sD7t/hooONLnbPYgcQpBcTjh7mPEcD2R/jRS5DLYDNm0XbngbaJZ01F1aI3v6VXVMdAu3XtFKUecNRlXbgGk/Q==",
+ "dev": true,
+ "dependencies": {
+ "micromark-core-commonmark": "^1.0.0",
+ "micromark-factory-space": "^1.0.0",
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-chunked": "^1.0.0",
+ "micromark-util-normalize-identifier": "^1.0.0",
+ "micromark-util-resolve-all": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "uvu": "^0.5.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/micromark-extension-frontmatter": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/micromark-extension-frontmatter/-/micromark-extension-frontmatter-1.0.0.tgz",
+ "integrity": "sha512-EXjmRnupoX6yYuUJSQhrQ9ggK0iQtQlpi6xeJzVD5xscyAI+giqco5fdymayZhJMbIFecjnE2yz85S9NzIgQpg==",
+ "dev": true,
+ "dependencies": {
+ "fault": "^2.0.0",
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/micromark-extension-frontmatter/node_modules/fault": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/fault/-/fault-2.0.1.tgz",
+ "integrity": "sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ==",
+ "dev": true,
+ "dependencies": {
+ "format": "^0.2.0"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/micromark-extension-gfm": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-2.0.1.tgz",
+ "integrity": "sha512-p2sGjajLa0iYiGQdT0oelahRYtMWvLjy8J9LOCxzIQsllMCGLbsLW+Nc+N4vi02jcRJvedVJ68cjelKIO6bpDA==",
+ "dev": true,
+ "dependencies": {
+ "micromark-extension-gfm-autolink-literal": "^1.0.0",
+ "micromark-extension-gfm-footnote": "^1.0.0",
+ "micromark-extension-gfm-strikethrough": "^1.0.0",
+ "micromark-extension-gfm-table": "^1.0.0",
+ "micromark-extension-gfm-tagfilter": "^1.0.0",
+ "micromark-extension-gfm-task-list-item": "^1.0.0",
+ "micromark-util-combine-extensions": "^1.0.0",
+ "micromark-util-types": "^1.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/micromark-extension-gfm-autolink-literal": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-1.0.3.tgz",
+ "integrity": "sha512-i3dmvU0htawfWED8aHMMAzAVp/F0Z+0bPh3YrbTPPL1v4YAlCZpy5rBO5p0LPYiZo0zFVkoYh7vDU7yQSiCMjg==",
+ "dev": true,
+ "dependencies": {
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-sanitize-uri": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0",
+ "uvu": "^0.5.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/micromark-extension-gfm-footnote": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-1.0.3.tgz",
+ "integrity": "sha512-bn62pC5y39rIo2g1RqZk1NhF7T7cJLuJlbevunQz41U0iPVCdVOFASe5/L1kke+DFKSgfCRhv24+o42cZ1+ADw==",
+ "dev": true,
+ "dependencies": {
+ "micromark-core-commonmark": "^1.0.0",
+ "micromark-factory-space": "^1.0.0",
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-normalize-identifier": "^1.0.0",
+ "micromark-util-sanitize-uri": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "uvu": "^0.5.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/micromark-extension-gfm-strikethrough": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-1.0.4.tgz",
+ "integrity": "sha512-/vjHU/lalmjZCT5xt7CcHVJGq8sYRm80z24qAKXzaHzem/xsDYb2yLL+NNVbYvmpLx3O7SYPuGL5pzusL9CLIQ==",
+ "dev": true,
+ "dependencies": {
+ "micromark-util-chunked": "^1.0.0",
+ "micromark-util-classify-character": "^1.0.0",
+ "micromark-util-resolve-all": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0",
+ "uvu": "^0.5.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/micromark-extension-gfm-table": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-1.0.5.tgz",
+ "integrity": "sha512-xAZ8J1X9W9K3JTJTUL7G6wSKhp2ZYHrFk5qJgY/4B33scJzE2kpfRL6oiw/veJTbt7jiM/1rngLlOKPWr1G+vg==",
+ "dev": true,
+ "dependencies": {
+ "micromark-factory-space": "^1.0.0",
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0",
+ "uvu": "^0.5.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/micromark-extension-gfm-tagfilter": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-1.0.1.tgz",
+ "integrity": "sha512-Ty6psLAcAjboRa/UKUbbUcwjVAv5plxmpUTy2XC/3nJFL37eHej8jrHrRzkqcpipJliuBH30DTs7+3wqNcQUVA==",
+ "dev": true,
+ "dependencies": {
+ "micromark-util-types": "^1.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/micromark-extension-gfm-task-list-item": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-1.0.3.tgz",
+ "integrity": "sha512-PpysK2S1Q/5VXi72IIapbi/jliaiOFzv7THH4amwXeYXLq3l1uo8/2Be0Ac1rEwK20MQEsGH2ltAZLNY2KI/0Q==",
+ "dev": true,
+ "dependencies": {
+ "micromark-factory-space": "^1.0.0",
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0",
+ "uvu": "^0.5.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/micromark-extension-math": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/micromark-extension-math/-/micromark-extension-math-2.0.2.tgz",
+ "integrity": "sha512-cFv2B/E4pFPBBFuGgLHkkNiFAIQv08iDgPH2HCuR2z3AUgMLecES5Cq7AVtwOtZeRrbA80QgMUk8VVW0Z+D2FA==",
+ "dev": true,
+ "dependencies": {
+ "@types/katex": "^0.11.0",
+ "katex": "^0.13.0",
+ "micromark-factory-space": "^1.0.0",
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0",
+ "uvu": "^0.5.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/micromark-factory-destination": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-1.0.0.tgz",
+ "integrity": "sha512-eUBA7Rs1/xtTVun9TmV3gjfPz2wEwgK5R5xcbIM5ZYAtvGF6JkyaDsj0agx8urXnO31tEO6Ug83iVH3tdedLnw==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0"
+ }
+ },
+ "node_modules/micromark-factory-label": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-1.0.2.tgz",
+ "integrity": "sha512-CTIwxlOnU7dEshXDQ+dsr2n+yxpP0+fn271pu0bwDIS8uqfFcumXpj5mLn3hSC8iw2MUr6Gx8EcKng1dD7i6hg==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0",
+ "uvu": "^0.5.0"
+ }
+ },
+ "node_modules/micromark-factory-space": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-1.0.0.tgz",
+ "integrity": "sha512-qUmqs4kj9a5yBnk3JMLyjtWYN6Mzfcx8uJfi5XAveBniDevmZasdGBba5b4QsvRcAkmvGo5ACmSUmyGiKTLZew==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-types": "^1.0.0"
+ }
+ },
+ "node_modules/micromark-factory-title": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-1.0.2.tgz",
+ "integrity": "sha512-zily+Nr4yFqgMGRKLpTVsNl5L4PMu485fGFDOQJQBl2NFpjGte1e86zC0da93wf97jrc4+2G2GQudFMHn3IX+A==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
+ "micromark-factory-space": "^1.0.0",
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0",
+ "uvu": "^0.5.0"
+ }
+ },
+ "node_modules/micromark-factory-whitespace": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-1.0.0.tgz",
+ "integrity": "sha512-Qx7uEyahU1lt1RnsECBiuEbfr9INjQTGa6Err+gF3g0Tx4YEviPbqqGKNv/NrBaE7dVHdn1bVZKM/n5I/Bak7A==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
+ "micromark-factory-space": "^1.0.0",
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0"
+ }
+ },
+ "node_modules/micromark-util-character": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-1.1.0.tgz",
+ "integrity": "sha512-agJ5B3unGNJ9rJvADMJ5ZiYjBRyDpzKAOk01Kpi1TKhlT1APx3XZk6eN7RtSz1erbWHC2L8T3xLZ81wdtGRZzg==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0"
+ }
+ },
+ "node_modules/micromark-util-chunked": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-1.0.0.tgz",
+ "integrity": "sha512-5e8xTis5tEZKgesfbQMKRCyzvffRRUX+lK/y+DvsMFdabAicPkkZV6gO+FEWi9RfuKKoxxPwNL+dFF0SMImc1g==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
+ "micromark-util-symbol": "^1.0.0"
+ }
+ },
+ "node_modules/micromark-util-classify-character": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-1.0.0.tgz",
+ "integrity": "sha512-F8oW2KKrQRb3vS5ud5HIqBVkCqQi224Nm55o5wYLzY/9PwHGXC01tr3d7+TqHHz6zrKQ72Okwtvm/xQm6OVNZA==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0"
+ }
+ },
+ "node_modules/micromark-util-combine-extensions": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.0.0.tgz",
+ "integrity": "sha512-J8H058vFBdo/6+AsjHp2NF7AJ02SZtWaVUjsayNFeAiydTxUwViQPxN0Hf8dp4FmCQi0UUFovFsEyRSUmFH3MA==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
+ "micromark-util-chunked": "^1.0.0",
+ "micromark-util-types": "^1.0.0"
+ }
+ },
+ "node_modules/micromark-util-decode-numeric-character-reference": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-1.0.0.tgz",
+ "integrity": "sha512-OzO9AI5VUtrTD7KSdagf4MWgHMtET17Ua1fIpXTpuhclCqD8egFWo85GxSGvxgkGS74bEahvtM0WP0HjvV0e4w==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
+ "micromark-util-symbol": "^1.0.0"
+ }
+ },
+ "node_modules/micromark-util-decode-string": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-1.0.2.tgz",
+ "integrity": "sha512-DLT5Ho02qr6QWVNYbRZ3RYOSSWWFuH3tJexd3dgN1odEuPNxCngTCXJum7+ViRAd9BbdxCvMToPOD/IvVhzG6Q==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
+ "decode-named-character-reference": "^1.0.0",
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-decode-numeric-character-reference": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0"
+ }
+ },
+ "node_modules/micromark-util-encode": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-1.0.1.tgz",
+ "integrity": "sha512-U2s5YdnAYexjKDel31SVMPbfi+eF8y1U4pfiRW/Y8EFVCy/vgxk/2wWTxzcqE71LHtCuCzlBDRU2a5CQ5j+mQA==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ]
+ },
+ "node_modules/micromark-util-html-tag-name": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.0.0.tgz",
+ "integrity": "sha512-NenEKIshW2ZI/ERv9HtFNsrn3llSPZtY337LID/24WeLqMzeZhBEE6BQ0vS2ZBjshm5n40chKtJ3qjAbVV8S0g==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ]
+ },
+ "node_modules/micromark-util-normalize-identifier": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.0.0.tgz",
+ "integrity": "sha512-yg+zrL14bBTFrQ7n35CmByWUTFsgst5JhA4gJYoty4Dqzj4Z4Fr/DHekSS5aLfH9bdlfnSvKAWsAgJhIbogyBg==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
+ "micromark-util-symbol": "^1.0.0"
+ }
+ },
+ "node_modules/micromark-util-resolve-all": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-1.0.0.tgz",
+ "integrity": "sha512-CB/AGk98u50k42kvgaMM94wzBqozSzDDaonKU7P7jwQIuH2RU0TeBqGYJz2WY1UdihhjweivStrJ2JdkdEmcfw==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
+ "micromark-util-types": "^1.0.0"
+ }
+ },
+ "node_modules/micromark-util-sanitize-uri": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.0.0.tgz",
+ "integrity": "sha512-cCxvBKlmac4rxCGx6ejlIviRaMKZc0fWm5HdCHEeDWRSkn44l6NdYVRyU+0nT1XC72EQJMZV8IPHF+jTr56lAg==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-encode": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0"
+ }
+ },
+ "node_modules/micromark-util-subtokenize": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-1.0.2.tgz",
+ "integrity": "sha512-d90uqCnXp/cy4G881Ub4psE57Sf8YD0pim9QdjCRNjfas2M1u6Lbt+XZK9gnHL2XFhnozZiEdCa9CNfXSfQ6xA==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
+ "micromark-util-chunked": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0",
+ "uvu": "^0.5.0"
+ }
+ },
+ "node_modules/micromark-util-symbol": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-1.0.1.tgz",
+ "integrity": "sha512-oKDEMK2u5qqAptasDAwWDXq0tG9AssVwAx3E9bBF3t/shRIGsWIRG+cGafs2p/SnDSOecnt6hZPCE2o6lHfFmQ==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ]
+ },
+ "node_modules/micromark-util-types": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-1.0.2.tgz",
+ "integrity": "sha512-DCfg/T8fcrhrRKTPjRrw/5LLvdGV7BHySf/1LOZx7TzWZdYRjogNtyNq885z3nNallwr3QUKARjqvHqX1/7t+w==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ]
+ },
+ "node_modules/micromatch": {
+ "version": "4.0.4",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz",
+ "integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==",
+ "dev": true,
+ "dependencies": {
+ "braces": "^3.0.1",
+ "picomatch": "^2.2.3"
+ },
+ "engines": {
+ "node": ">=8.6"
+ }
+ },
+ "node_modules/miller-rabin": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz",
+ "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==",
+ "dev": true,
+ "dependencies": {
+ "bn.js": "^4.0.0",
+ "brorand": "^1.0.1"
+ },
+ "bin": {
+ "miller-rabin": "bin/miller-rabin"
+ }
+ },
+ "node_modules/miller-rabin/node_modules/bn.js": {
+ "version": "4.12.0",
+ "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz",
+ "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==",
+ "dev": true
+ },
+ "node_modules/mime": {
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
+ "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==",
+ "dev": true,
+ "bin": {
+ "mime": "cli.js"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/mime-db": {
+ "version": "1.51.0",
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.51.0.tgz",
+ "integrity": "sha512-5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/mime-types": {
+ "version": "2.1.34",
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.34.tgz",
+ "integrity": "sha512-6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A==",
+ "dev": true,
+ "dependencies": {
+ "mime-db": "1.51.0"
+ },
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/mimic-fn": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
+ "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==",
+ "dev": true,
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/min-document": {
+ "version": "2.19.0",
+ "resolved": "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz",
+ "integrity": "sha1-e9KC4/WELtKVu3SM3Z8f+iyCRoU=",
+ "dev": true,
+ "dependencies": {
+ "dom-walk": "^0.1.0"
+ }
+ },
+ "node_modules/min-indent": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz",
+ "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==",
+ "dev": true,
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/minimalistic-assert": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz",
+ "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==",
+ "dev": true
+ },
+ "node_modules/minimalistic-crypto-utils": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz",
+ "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=",
+ "dev": true
+ },
+ "node_modules/minimatch": {
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
+ "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
+ "dev": true,
+ "dependencies": {
+ "brace-expansion": "^1.1.7"
+ },
+ "engines": {
+ "node": "*"
+ }
+ },
+ "node_modules/minimist": {
+ "version": "1.2.5",
+ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz",
+ "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==",
+ "dev": true
+ },
+ "node_modules/minipass": {
+ "version": "3.1.6",
+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.6.tgz",
+ "integrity": "sha512-rty5kpw9/z8SX9dmxblFA6edItUmwJgMeYDZRrwlIVN27i8gysGbznJwUggw2V/FVqFSDdWy040ZPS811DYAqQ==",
+ "dev": true,
+ "dependencies": {
+ "yallist": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/minipass-collect": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz",
+ "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==",
+ "dev": true,
+ "dependencies": {
+ "minipass": "^3.0.0"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/minipass-flush": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz",
+ "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==",
+ "dev": true,
+ "dependencies": {
+ "minipass": "^3.0.0"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/minipass-pipeline": {
+ "version": "1.2.4",
+ "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz",
+ "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==",
+ "dev": true,
+ "dependencies": {
+ "minipass": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/minizlib": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz",
+ "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==",
+ "dev": true,
+ "dependencies": {
+ "minipass": "^3.0.0",
+ "yallist": "^4.0.0"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/mississippi": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz",
+ "integrity": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==",
+ "dev": true,
+ "dependencies": {
+ "concat-stream": "^1.5.0",
+ "duplexify": "^3.4.2",
+ "end-of-stream": "^1.1.0",
+ "flush-write-stream": "^1.0.0",
+ "from2": "^2.1.0",
+ "parallel-transform": "^1.1.0",
+ "pump": "^3.0.0",
+ "pumpify": "^1.3.3",
+ "stream-each": "^1.1.0",
+ "through2": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=4.0.0"
+ }
+ },
+ "node_modules/mixin-deep": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz",
+ "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==",
+ "dev": true,
+ "dependencies": {
+ "for-in": "^1.0.2",
+ "is-extendable": "^1.0.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/mkdirp": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
+ "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==",
+ "dev": true,
+ "bin": {
+ "mkdirp": "bin/cmd.js"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/move-concurrently": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz",
+ "integrity": "sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=",
+ "dev": true,
+ "dependencies": {
+ "aproba": "^1.1.1",
+ "copy-concurrently": "^1.0.0",
+ "fs-write-stream-atomic": "^1.0.8",
+ "mkdirp": "^0.5.1",
+ "rimraf": "^2.5.4",
+ "run-queue": "^1.0.3"
+ }
+ },
+ "node_modules/move-concurrently/node_modules/aproba": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz",
+ "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==",
+ "dev": true
+ },
+ "node_modules/move-concurrently/node_modules/mkdirp": {
+ "version": "0.5.5",
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz",
+ "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==",
+ "dev": true,
+ "dependencies": {
+ "minimist": "^1.2.5"
+ },
+ "bin": {
+ "mkdirp": "bin/cmd.js"
+ }
+ },
+ "node_modules/move-concurrently/node_modules/rimraf": {
+ "version": "2.7.1",
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz",
+ "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==",
+ "dev": true,
+ "dependencies": {
+ "glob": "^7.1.3"
+ },
+ "bin": {
+ "rimraf": "bin.js"
+ }
+ },
+ "node_modules/mri": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz",
+ "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==",
+ "dev": true,
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/ms": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
+ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
+ "dev": true
+ },
+ "node_modules/nan": {
+ "version": "2.15.0",
+ "resolved": "https://registry.npmjs.org/nan/-/nan-2.15.0.tgz",
+ "integrity": "sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==",
+ "dev": true,
+ "optional": true
+ },
+ "node_modules/nanoid": {
+ "version": "3.1.30",
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.1.30.tgz",
+ "integrity": "sha512-zJpuPDwOv8D2zq2WRoMe1HsfZthVewpel9CAvTfc/2mBD1uUT/agc5f7GHGWXlYkFvi1mVxe4IjvP2HNrop7nQ==",
+ "bin": {
+ "nanoid": "bin/nanoid.cjs"
+ },
+ "engines": {
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
+ }
+ },
+ "node_modules/nanomatch": {
+ "version": "1.2.13",
+ "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz",
+ "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==",
+ "dev": true,
+ "dependencies": {
+ "arr-diff": "^4.0.0",
+ "array-unique": "^0.3.2",
+ "define-property": "^2.0.2",
+ "extend-shallow": "^3.0.2",
+ "fragment-cache": "^0.2.1",
+ "is-windows": "^1.0.2",
+ "kind-of": "^6.0.2",
+ "object.pick": "^1.3.0",
+ "regex-not": "^1.0.0",
+ "snapdragon": "^0.8.1",
+ "to-regex": "^3.0.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/natural-compare": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
+ "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=",
+ "dev": true
+ },
+ "node_modules/negotiator": {
+ "version": "0.6.2",
+ "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz",
+ "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/neo-async": {
+ "version": "2.6.2",
+ "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz",
+ "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==",
+ "dev": true
+ },
+ "node_modules/nested-error-stacks": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/nested-error-stacks/-/nested-error-stacks-2.1.0.tgz",
+ "integrity": "sha512-AO81vsIO1k1sM4Zrd6Hu7regmJN1NSiAja10gc4bX3F0wd+9rQmcuHQaHVQCYIEC8iFXnE+mavh23GOt7wBgug==",
+ "dev": true
+ },
+ "node_modules/nice-try": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz",
+ "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==",
+ "dev": true
+ },
+ "node_modules/no-case": {
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz",
+ "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==",
+ "dev": true,
+ "dependencies": {
+ "lower-case": "^2.0.2",
+ "tslib": "^2.0.3"
+ }
+ },
+ "node_modules/node-dir": {
+ "version": "0.1.17",
+ "resolved": "https://registry.npmjs.org/node-dir/-/node-dir-0.1.17.tgz",
+ "integrity": "sha1-X1Zl2TNRM1yqvvjxxVRRbPXx5OU=",
+ "dev": true,
+ "dependencies": {
+ "minimatch": "^3.0.2"
+ },
+ "engines": {
+ "node": ">= 0.10.5"
+ }
+ },
+ "node_modules/node-fetch": {
+ "version": "2.6.6",
+ "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.6.tgz",
+ "integrity": "sha512-Z8/6vRlTUChSdIgMa51jxQ4lrw/Jy5SOW10ObaA47/RElsAN2c5Pn8bTgFGWn/ibwzXTE8qwr1Yzx28vsecXEA==",
+ "dev": true,
+ "dependencies": {
+ "whatwg-url": "^5.0.0"
+ },
+ "engines": {
+ "node": "4.x || >=6.0.0"
+ }
+ },
+ "node_modules/node-fetch/node_modules/tr46": {
+ "version": "0.0.3",
+ "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
+ "integrity": "sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=",
+ "dev": true
+ },
+ "node_modules/node-fetch/node_modules/webidl-conversions": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
+ "integrity": "sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=",
+ "dev": true
+ },
+ "node_modules/node-fetch/node_modules/whatwg-url": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
+ "integrity": "sha1-lmRU6HZUYuN2RNNib2dCzotwll0=",
+ "dev": true,
+ "dependencies": {
+ "tr46": "~0.0.3",
+ "webidl-conversions": "^3.0.0"
+ }
+ },
+ "node_modules/node-int64": {
+ "version": "0.4.0",
+ "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz",
+ "integrity": "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=",
+ "dev": true
+ },
+ "node_modules/node-libs-browser": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz",
+ "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==",
+ "dev": true,
+ "dependencies": {
+ "assert": "^1.1.1",
+ "browserify-zlib": "^0.2.0",
+ "buffer": "^4.3.0",
+ "console-browserify": "^1.1.0",
+ "constants-browserify": "^1.0.0",
+ "crypto-browserify": "^3.11.0",
+ "domain-browser": "^1.1.1",
+ "events": "^3.0.0",
+ "https-browserify": "^1.0.0",
+ "os-browserify": "^0.3.0",
+ "path-browserify": "0.0.1",
+ "process": "^0.11.10",
+ "punycode": "^1.2.4",
+ "querystring-es3": "^0.2.0",
+ "readable-stream": "^2.3.3",
+ "stream-browserify": "^2.0.1",
+ "stream-http": "^2.7.2",
+ "string_decoder": "^1.0.0",
+ "timers-browserify": "^2.0.4",
+ "tty-browserify": "0.0.0",
+ "url": "^0.11.0",
+ "util": "^0.11.0",
+ "vm-browserify": "^1.0.1"
+ }
+ },
+ "node_modules/node-libs-browser/node_modules/punycode": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz",
+ "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=",
+ "dev": true
+ },
+ "node_modules/node-releases": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.1.tgz",
+ "integrity": "sha512-CqyzN6z7Q6aMeF/ktcMVTzhAHCEpf8SOarwpzpf8pNBY2k5/oM34UHldUwp8VKI7uxct2HxSRdJjBaZeESzcxA==",
+ "dev": true
+ },
+ "node_modules/normalize-package-data": {
+ "version": "2.5.0",
+ "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz",
+ "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==",
+ "dev": true,
+ "dependencies": {
+ "hosted-git-info": "^2.1.4",
+ "resolve": "^1.10.0",
+ "semver": "2 || 3 || 4 || 5",
+ "validate-npm-package-license": "^3.0.1"
+ }
+ },
+ "node_modules/normalize-package-data/node_modules/semver": {
+ "version": "5.7.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
+ "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
+ "dev": true,
+ "bin": {
+ "semver": "bin/semver"
+ }
+ },
+ "node_modules/normalize-path": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
+ "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/normalize-range": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz",
+ "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/npm-run-path": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz",
+ "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==",
+ "dev": true,
+ "dependencies": {
+ "path-key": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/npmlog": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz",
+ "integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==",
+ "dev": true,
+ "dependencies": {
+ "are-we-there-yet": "^2.0.0",
+ "console-control-strings": "^1.1.0",
+ "gauge": "^3.0.0",
+ "set-blocking": "^2.0.0"
+ }
+ },
+ "node_modules/nth-check": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.0.1.tgz",
+ "integrity": "sha512-it1vE95zF6dTT9lBsYbxvqh0Soy4SPowchj0UBGj/V6cTPnXXtQOPUbhZ6CmGzAD/rW22LQK6E96pcdJXk4A4w==",
+ "dev": true,
+ "dependencies": {
+ "boolbase": "^1.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/fb55/nth-check?sponsor=1"
+ }
+ },
+ "node_modules/num2fraction": {
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz",
+ "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=",
+ "dev": true
+ },
+ "node_modules/nwsapi": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz",
+ "integrity": "sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==",
+ "dev": true
+ },
+ "node_modules/object-assign": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
+ "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/object-copy": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz",
+ "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=",
+ "dev": true,
+ "dependencies": {
+ "copy-descriptor": "^0.1.0",
+ "define-property": "^0.2.5",
+ "kind-of": "^3.0.3"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/object-copy/node_modules/define-property": {
+ "version": "0.2.5",
+ "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
+ "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
+ "dev": true,
+ "dependencies": {
+ "is-descriptor": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/object-copy/node_modules/is-accessor-descriptor": {
+ "version": "0.1.6",
+ "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz",
+ "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=",
+ "dev": true,
+ "dependencies": {
+ "kind-of": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/object-copy/node_modules/is-buffer": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
+ "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==",
+ "dev": true
+ },
+ "node_modules/object-copy/node_modules/is-data-descriptor": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz",
+ "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=",
+ "dev": true,
+ "dependencies": {
+ "kind-of": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/object-copy/node_modules/is-descriptor": {
+ "version": "0.1.6",
+ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz",
+ "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==",
+ "dev": true,
+ "dependencies": {
+ "is-accessor-descriptor": "^0.1.6",
+ "is-data-descriptor": "^0.1.4",
+ "kind-of": "^5.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/object-copy/node_modules/is-descriptor/node_modules/kind-of": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
+ "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/object-copy/node_modules/kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "dependencies": {
+ "is-buffer": "^1.1.5"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/object-inspect": {
+ "version": "1.12.0",
+ "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.0.tgz",
+ "integrity": "sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==",
+ "dev": true,
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/object-keys": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
+ "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/object-visit": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz",
+ "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=",
+ "dev": true,
+ "dependencies": {
+ "isobject": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/object.assign": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz",
+ "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.0",
+ "define-properties": "^1.1.3",
+ "has-symbols": "^1.0.1",
+ "object-keys": "^1.1.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/object.entries": {
+ "version": "1.1.5",
+ "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.5.tgz",
+ "integrity": "sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.19.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/object.fromentries": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.5.tgz",
+ "integrity": "sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.19.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/object.getownpropertydescriptors": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.3.tgz",
+ "integrity": "sha512-VdDoCwvJI4QdC6ndjpqFmoL3/+HxffFBbcJzKi5hwLLqqx3mdbedRpfZDdK0SrOSauj8X4GzBvnDZl4vTN7dOw==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.19.1"
+ },
+ "engines": {
+ "node": ">= 0.8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/object.pick": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz",
+ "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=",
+ "dev": true,
+ "dependencies": {
+ "isobject": "^3.0.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/object.values": {
+ "version": "1.1.5",
+ "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.5.tgz",
+ "integrity": "sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.19.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/objectorarray": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/objectorarray/-/objectorarray-1.0.5.tgz",
+ "integrity": "sha512-eJJDYkhJFFbBBAxeh8xW+weHlkI28n2ZdQV/J/DNfWfSKlGEf2xcfAbZTv3riEXHAhL9SVOTs2pRmXiSTf78xg==",
+ "dev": true
+ },
+ "node_modules/on-finished": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz",
+ "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=",
+ "dev": true,
+ "dependencies": {
+ "ee-first": "1.1.1"
+ },
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/on-headers": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz",
+ "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/once": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
+ "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=",
+ "dev": true,
+ "dependencies": {
+ "wrappy": "1"
+ }
+ },
+ "node_modules/onetime": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz",
+ "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==",
+ "dev": true,
+ "dependencies": {
+ "mimic-fn": "^2.1.0"
+ },
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/open": {
+ "version": "7.4.2",
+ "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz",
+ "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==",
+ "dev": true,
+ "dependencies": {
+ "is-docker": "^2.0.0",
+ "is-wsl": "^2.1.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/optionator": {
+ "version": "0.8.3",
+ "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz",
+ "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==",
+ "dev": true,
+ "dependencies": {
+ "deep-is": "~0.1.3",
+ "fast-levenshtein": "~2.0.6",
+ "levn": "~0.3.0",
+ "prelude-ls": "~1.1.2",
+ "type-check": "~0.3.2",
+ "word-wrap": "~1.2.3"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/os-browserify": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz",
+ "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=",
+ "dev": true
+ },
+ "node_modules/overlayscrollbars": {
+ "version": "1.13.1",
+ "resolved": "https://registry.npmjs.org/overlayscrollbars/-/overlayscrollbars-1.13.1.tgz",
+ "integrity": "sha512-gIQfzgGgu1wy80EB4/6DaJGHMEGmizq27xHIESrzXq0Y/J0Ay1P3DWk6tuVmEPIZH15zaBlxeEJOqdJKmowHCQ==",
+ "dev": true
+ },
+ "node_modules/p-all": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/p-all/-/p-all-2.1.0.tgz",
+ "integrity": "sha512-HbZxz5FONzz/z2gJfk6bFca0BCiSRF8jU3yCsWOen/vR6lZjfPOu/e7L3uFzTW1i0H8TlC3vqQstEJPQL4/uLA==",
+ "dev": true,
+ "dependencies": {
+ "p-map": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/p-all/node_modules/p-map": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz",
+ "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==",
+ "dev": true,
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/p-event": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/p-event/-/p-event-4.2.0.tgz",
+ "integrity": "sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ==",
+ "dev": true,
+ "dependencies": {
+ "p-timeout": "^3.1.0"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/p-filter": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/p-filter/-/p-filter-2.1.0.tgz",
+ "integrity": "sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==",
+ "dev": true,
+ "dependencies": {
+ "p-map": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/p-filter/node_modules/p-map": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz",
+ "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==",
+ "dev": true,
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/p-finally": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz",
+ "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=",
+ "dev": true,
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/p-limit": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
+ "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
+ "dev": true,
+ "dependencies": {
+ "yocto-queue": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/p-locate": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
+ "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
+ "dev": true,
+ "dependencies": {
+ "p-limit": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/p-map": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/p-map/-/p-map-3.0.0.tgz",
+ "integrity": "sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==",
+ "dev": true,
+ "dependencies": {
+ "aggregate-error": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/p-timeout": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-3.2.0.tgz",
+ "integrity": "sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==",
+ "dev": true,
+ "dependencies": {
+ "p-finally": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/p-try": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
+ "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/pako": {
+ "version": "1.0.11",
+ "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz",
+ "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw=="
+ },
+ "node_modules/parallel-transform": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz",
+ "integrity": "sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==",
+ "dev": true,
+ "dependencies": {
+ "cyclist": "^1.0.1",
+ "inherits": "^2.0.3",
+ "readable-stream": "^2.1.5"
+ }
+ },
+ "node_modules/param-case": {
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz",
+ "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==",
+ "dev": true,
+ "dependencies": {
+ "dot-case": "^3.0.4",
+ "tslib": "^2.0.3"
+ }
+ },
+ "node_modules/parent-module": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
+ "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
+ "dev": true,
+ "dependencies": {
+ "callsites": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/parse-asn1": {
+ "version": "5.1.6",
+ "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz",
+ "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==",
+ "dev": true,
+ "dependencies": {
+ "asn1.js": "^5.2.0",
+ "browserify-aes": "^1.0.0",
+ "evp_bytestokey": "^1.0.0",
+ "pbkdf2": "^3.0.3",
+ "safe-buffer": "^5.1.1"
+ }
+ },
+ "node_modules/parse-entities": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-2.0.0.tgz",
+ "integrity": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==",
+ "dev": true,
+ "dependencies": {
+ "character-entities": "^1.0.0",
+ "character-entities-legacy": "^1.0.0",
+ "character-reference-invalid": "^1.0.0",
+ "is-alphanumerical": "^1.0.0",
+ "is-decimal": "^1.0.0",
+ "is-hexadecimal": "^1.0.0"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/parse-json": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz",
+ "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
+ "dev": true,
+ "dependencies": {
+ "@babel/code-frame": "^7.0.0",
+ "error-ex": "^1.3.1",
+ "json-parse-even-better-errors": "^2.3.0",
+ "lines-and-columns": "^1.1.6"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/parse5": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz",
+ "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==",
+ "dev": true
+ },
+ "node_modules/parseurl": {
+ "version": "1.3.3",
+ "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
+ "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/pascal-case": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz",
+ "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==",
+ "dev": true,
+ "dependencies": {
+ "no-case": "^3.0.4",
+ "tslib": "^2.0.3"
+ }
+ },
+ "node_modules/pascalcase": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz",
+ "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/path-browserify": {
+ "version": "0.0.1",
+ "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz",
+ "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==",
+ "dev": true
+ },
+ "node_modules/path-dirname": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz",
+ "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=",
+ "dev": true
+ },
+ "node_modules/path-exists": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
+ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/path-is-absolute": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
+ "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/path-key": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
+ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/path-parse": {
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
+ "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
+ "dev": true
+ },
+ "node_modules/path-to-regexp": {
+ "version": "0.1.7",
+ "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz",
+ "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=",
+ "dev": true
+ },
+ "node_modules/path-type": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
+ "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/pbkdf2": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz",
+ "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==",
+ "dev": true,
+ "dependencies": {
+ "create-hash": "^1.1.2",
+ "create-hmac": "^1.1.4",
+ "ripemd160": "^2.0.1",
+ "safe-buffer": "^5.0.1",
+ "sha.js": "^2.4.8"
+ },
+ "engines": {
+ "node": ">=0.12"
+ }
+ },
+ "node_modules/picocolors": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
+ "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
+ "dev": true
+ },
+ "node_modules/picomatch": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
+ "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
+ "dev": true,
+ "engines": {
+ "node": ">=8.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/jonschlinkert"
+ }
+ },
+ "node_modules/pify": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz",
+ "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==",
+ "dev": true,
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/pirates": {
+ "version": "4.0.4",
+ "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.4.tgz",
+ "integrity": "sha512-ZIrVPH+A52Dw84R0L3/VS9Op04PuQ2SEoJL6bkshmiTic/HldyW9Tf7oH5mhJZBK7NmDx27vSMrYEXPXclpDKw==",
+ "dev": true,
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/pkg-dir": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-5.0.0.tgz",
+ "integrity": "sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==",
+ "dev": true,
+ "dependencies": {
+ "find-up": "^5.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/pkg-up": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz",
+ "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==",
+ "dev": true,
+ "dependencies": {
+ "find-up": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/pkg-up/node_modules/find-up": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz",
+ "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==",
+ "dev": true,
+ "dependencies": {
+ "locate-path": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/pkg-up/node_modules/locate-path": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz",
+ "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==",
+ "dev": true,
+ "dependencies": {
+ "p-locate": "^3.0.0",
+ "path-exists": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/pkg-up/node_modules/p-limit": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
+ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
+ "dev": true,
+ "dependencies": {
+ "p-try": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/pkg-up/node_modules/p-locate": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz",
+ "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==",
+ "dev": true,
+ "dependencies": {
+ "p-limit": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/pkg-up/node_modules/path-exists": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz",
+ "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=",
+ "dev": true,
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/pnp-webpack-plugin": {
+ "version": "1.6.4",
+ "resolved": "https://registry.npmjs.org/pnp-webpack-plugin/-/pnp-webpack-plugin-1.6.4.tgz",
+ "integrity": "sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==",
+ "dev": true,
+ "dependencies": {
+ "ts-pnp": "^1.1.6"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/polished": {
+ "version": "4.1.3",
+ "resolved": "https://registry.npmjs.org/polished/-/polished-4.1.3.tgz",
+ "integrity": "sha512-ocPAcVBUOryJEKe0z2KLd1l9EBa1r5mSwlKpExmrLzsnIzJo4axsoU9O2BjOTkDGDT4mZ0WFE5XKTlR3nLnZOA==",
+ "dev": true,
+ "dependencies": {
+ "@babel/runtime": "^7.14.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/posix-character-classes": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz",
+ "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/postcss": {
+ "version": "7.0.39",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
+ "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
+ "dev": true,
+ "dependencies": {
+ "picocolors": "^0.2.1",
+ "source-map": "^0.6.1"
+ },
+ "engines": {
+ "node": ">=6.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ }
+ },
+ "node_modules/postcss-flexbugs-fixes": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-4.2.1.tgz",
+ "integrity": "sha512-9SiofaZ9CWpQWxOwRh1b/r85KD5y7GgvsNt1056k6OYLvWUun0czCvogfJgylC22uJTwW1KzY3Gz65NZRlvoiQ==",
+ "dev": true,
+ "dependencies": {
+ "postcss": "^7.0.26"
+ }
+ },
+ "node_modules/postcss-loader": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-4.3.0.tgz",
+ "integrity": "sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q==",
+ "dev": true,
+ "dependencies": {
+ "cosmiconfig": "^7.0.0",
+ "klona": "^2.0.4",
+ "loader-utils": "^2.0.0",
+ "schema-utils": "^3.0.0",
+ "semver": "^7.3.4"
+ },
+ "engines": {
+ "node": ">= 10.13.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ },
+ "peerDependencies": {
+ "postcss": "^7.0.0 || ^8.0.1",
+ "webpack": "^4.0.0 || ^5.0.0"
+ }
+ },
+ "node_modules/postcss-loader/node_modules/cosmiconfig": {
+ "version": "7.0.1",
+ "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz",
+ "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==",
+ "dev": true,
+ "dependencies": {
+ "@types/parse-json": "^4.0.0",
+ "import-fresh": "^3.2.1",
+ "parse-json": "^5.0.0",
+ "path-type": "^4.0.0",
+ "yaml": "^1.10.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/postcss-loader/node_modules/semver": {
+ "version": "7.3.5",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz",
+ "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==",
+ "dev": true,
+ "dependencies": {
+ "lru-cache": "^6.0.0"
+ },
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/postcss-modules-extract-imports": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz",
+ "integrity": "sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==",
+ "dev": true,
+ "dependencies": {
+ "postcss": "^7.0.5"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/postcss-modules-local-by-default": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz",
+ "integrity": "sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==",
+ "dev": true,
+ "dependencies": {
+ "icss-utils": "^4.1.1",
+ "postcss": "^7.0.32",
+ "postcss-selector-parser": "^6.0.2",
+ "postcss-value-parser": "^4.1.0"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/postcss-modules-scope": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz",
+ "integrity": "sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==",
+ "dev": true,
+ "dependencies": {
+ "postcss": "^7.0.6",
+ "postcss-selector-parser": "^6.0.0"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/postcss-modules-values": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz",
+ "integrity": "sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==",
+ "dev": true,
+ "dependencies": {
+ "icss-utils": "^4.0.0",
+ "postcss": "^7.0.6"
+ }
+ },
+ "node_modules/postcss-selector-parser": {
+ "version": "6.0.8",
+ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.8.tgz",
+ "integrity": "sha512-D5PG53d209Z1Uhcc0qAZ5U3t5HagH3cxu+WLZ22jt3gLUpXM4eXXfiO14jiDWST3NNooX/E8wISfOhZ9eIjGTQ==",
+ "dev": true,
+ "dependencies": {
+ "cssesc": "^3.0.0",
+ "util-deprecate": "^1.0.2"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/postcss-value-parser": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz",
+ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==",
+ "dev": true
+ },
+ "node_modules/postcss/node_modules/source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/prelude-ls": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz",
+ "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/prettier": {
+ "version": "2.5.1",
+ "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.5.1.tgz",
+ "integrity": "sha512-vBZcPRUR5MZJwoyi3ZoyQlc1rXeEck8KgeC9AwwOn+exuxLxq5toTRDTSaVrXHxelDMHy9zlicw8u66yxoSUFg==",
+ "dev": true,
+ "bin": {
+ "prettier": "bin-prettier.js"
+ },
+ "engines": {
+ "node": ">=10.13.0"
+ }
+ },
+ "node_modules/pretty-error": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-2.1.2.tgz",
+ "integrity": "sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw==",
+ "dev": true,
+ "dependencies": {
+ "lodash": "^4.17.20",
+ "renderkid": "^2.0.4"
+ }
+ },
+ "node_modules/pretty-format": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.4.6.tgz",
+ "integrity": "sha512-NblstegA1y/RJW2VyML+3LlpFjzx62cUrtBIKIWDXEDkjNeleA7Od7nrzcs/VLQvAeV4CgSYhrN39DRN88Qi/g==",
+ "dev": true,
+ "dependencies": {
+ "ansi-regex": "^5.0.1",
+ "ansi-styles": "^5.0.0",
+ "react-is": "^17.0.1"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ }
+ },
+ "node_modules/pretty-format/node_modules/ansi-styles": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz",
+ "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==",
+ "dev": true,
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/pretty-hrtime": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz",
+ "integrity": "sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/prismjs": {
+ "version": "1.26.0",
+ "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.26.0.tgz",
+ "integrity": "sha512-HUoH9C5Z3jKkl3UunCyiD5jwk0+Hz0fIgQ2nbwU2Oo/ceuTAQAg+pPVnfdt2TJWRVLcxKh9iuoYDUSc8clb5UQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/process": {
+ "version": "0.11.10",
+ "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz",
+ "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.6.0"
+ }
+ },
+ "node_modules/process-nextick-args": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
+ "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="
+ },
+ "node_modules/promise-inflight": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz",
+ "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=",
+ "dev": true
+ },
+ "node_modules/promise.allsettled": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/promise.allsettled/-/promise.allsettled-1.0.5.tgz",
+ "integrity": "sha512-tVDqeZPoBC0SlzJHzWGZ2NKAguVq2oiYj7gbggbiTvH2itHohijTp7njOUA0aQ/nl+0lr/r6egmhoYu63UZ/pQ==",
+ "dev": true,
+ "dependencies": {
+ "array.prototype.map": "^1.0.4",
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.19.1",
+ "get-intrinsic": "^1.1.1",
+ "iterate-value": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/promise.prototype.finally": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/promise.prototype.finally/-/promise.prototype.finally-3.1.3.tgz",
+ "integrity": "sha512-EXRF3fC9/0gz4qkt/f5EP5iW4kj9oFpBICNpCNOb/52+8nlHIX07FPLbi/q4qYBQ1xZqivMzTpNQSnArVASolQ==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.19.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/prompts": {
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz",
+ "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==",
+ "dev": true,
+ "dependencies": {
+ "kleur": "^3.0.3",
+ "sisteransi": "^1.0.5"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/prop-types": {
+ "version": "15.8.1",
+ "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz",
+ "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==",
+ "dev": true,
+ "dependencies": {
+ "loose-envify": "^1.4.0",
+ "object-assign": "^4.1.1",
+ "react-is": "^16.13.1"
+ }
+ },
+ "node_modules/prop-types/node_modules/react-is": {
+ "version": "16.13.1",
+ "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
+ "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==",
+ "dev": true
+ },
+ "node_modules/property-information": {
+ "version": "5.6.0",
+ "resolved": "https://registry.npmjs.org/property-information/-/property-information-5.6.0.tgz",
+ "integrity": "sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==",
+ "dev": true,
+ "dependencies": {
+ "xtend": "^4.0.0"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/proxy-addr": {
+ "version": "2.0.7",
+ "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
+ "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
+ "dev": true,
+ "dependencies": {
+ "forwarded": "0.2.0",
+ "ipaddr.js": "1.9.1"
+ },
+ "engines": {
+ "node": ">= 0.10"
+ }
+ },
+ "node_modules/prr": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz",
+ "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=",
+ "dev": true
+ },
+ "node_modules/psl": {
+ "version": "1.8.0",
+ "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz",
+ "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==",
+ "dev": true
+ },
+ "node_modules/public-encrypt": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz",
+ "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==",
+ "dev": true,
+ "dependencies": {
+ "bn.js": "^4.1.0",
+ "browserify-rsa": "^4.0.0",
+ "create-hash": "^1.1.0",
+ "parse-asn1": "^5.0.0",
+ "randombytes": "^2.0.1",
+ "safe-buffer": "^5.1.2"
+ }
+ },
+ "node_modules/public-encrypt/node_modules/bn.js": {
+ "version": "4.12.0",
+ "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz",
+ "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==",
+ "dev": true
+ },
+ "node_modules/pump": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz",
+ "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==",
+ "dev": true,
+ "dependencies": {
+ "end-of-stream": "^1.1.0",
+ "once": "^1.3.1"
+ }
+ },
+ "node_modules/pumpify": {
+ "version": "1.5.1",
+ "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz",
+ "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==",
+ "dev": true,
+ "dependencies": {
+ "duplexify": "^3.6.0",
+ "inherits": "^2.0.3",
+ "pump": "^2.0.0"
+ }
+ },
+ "node_modules/pumpify/node_modules/pump": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz",
+ "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==",
+ "dev": true,
+ "dependencies": {
+ "end-of-stream": "^1.1.0",
+ "once": "^1.3.1"
+ }
+ },
+ "node_modules/punycode": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz",
+ "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==",
+ "dev": true,
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/qs": {
+ "version": "6.10.2",
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.2.tgz",
+ "integrity": "sha512-mSIdjzqznWgfd4pMii7sHtaYF8rx8861hBO80SraY5GT0XQibWZWJSid0avzHGkDIZLImux2S5mXO0Hfct2QCw==",
+ "dev": true,
+ "dependencies": {
+ "side-channel": "^1.0.4"
+ },
+ "engines": {
+ "node": ">=0.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/querystring": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz",
+ "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=",
+ "deprecated": "The querystring API is considered Legacy. new code should use the URLSearchParams API instead.",
+ "dev": true,
+ "engines": {
+ "node": ">=0.4.x"
+ }
+ },
+ "node_modules/querystring-es3": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz",
+ "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=",
+ "dev": true,
+ "engines": {
+ "node": ">=0.4.x"
+ }
+ },
+ "node_modules/queue-microtask": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
+ "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ]
+ },
+ "node_modules/ramda": {
+ "version": "0.21.0",
+ "resolved": "https://registry.npmjs.org/ramda/-/ramda-0.21.0.tgz",
+ "integrity": "sha1-oAGr7bP/YQd9T/HVd9RN536NCjU=",
+ "dev": true
+ },
+ "node_modules/randombytes": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz",
+ "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==",
+ "dev": true,
+ "dependencies": {
+ "safe-buffer": "^5.1.0"
+ }
+ },
+ "node_modules/randomfill": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz",
+ "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==",
+ "dev": true,
+ "dependencies": {
+ "randombytes": "^2.0.5",
+ "safe-buffer": "^5.1.0"
+ }
+ },
+ "node_modules/range-parser": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
+ "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/raw-body": {
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.2.tgz",
+ "integrity": "sha512-RPMAFUJP19WIet/99ngh6Iv8fzAbqum4Li7AD6DtGaW2RpMB/11xDoalPiJMTbu6I3hkbMVkATvZrqb9EEqeeQ==",
+ "dev": true,
+ "dependencies": {
+ "bytes": "3.1.1",
+ "http-errors": "1.8.1",
+ "iconv-lite": "0.4.24",
+ "unpipe": "1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/raw-body/node_modules/bytes": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.1.tgz",
+ "integrity": "sha512-dWe4nWO/ruEOY7HkUJ5gFt1DCFV9zPRoJr8pV0/ASQermOZjtq8jMjOprC0Kd10GLN+l7xaUPvxzJFWtxGu8Fg==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/raw-loader": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/raw-loader/-/raw-loader-4.0.2.tgz",
+ "integrity": "sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==",
+ "dev": true,
+ "dependencies": {
+ "loader-utils": "^2.0.0",
+ "schema-utils": "^3.0.0"
+ },
+ "engines": {
+ "node": ">= 10.13.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ },
+ "peerDependencies": {
+ "webpack": "^4.0.0 || ^5.0.0"
+ }
+ },
+ "node_modules/react": {
+ "version": "17.0.2",
+ "resolved": "https://registry.npmjs.org/react/-/react-17.0.2.tgz",
+ "integrity": "sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==",
+ "dev": true,
+ "dependencies": {
+ "loose-envify": "^1.1.0",
+ "object-assign": "^4.1.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/react-colorful": {
+ "version": "5.5.1",
+ "resolved": "https://registry.npmjs.org/react-colorful/-/react-colorful-5.5.1.tgz",
+ "integrity": "sha512-M1TJH2X3RXEt12sWkpa6hLc/bbYS0H6F4rIqjQZ+RxNBstpY67d9TrFXtqdZwhpmBXcCwEi7stKqFue3ZRkiOg==",
+ "dev": true,
+ "peerDependencies": {
+ "react": ">=16.8.0",
+ "react-dom": ">=16.8.0"
+ }
+ },
+ "node_modules/react-dev-utils": {
+ "version": "11.0.4",
+ "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-11.0.4.tgz",
+ "integrity": "sha512-dx0LvIGHcOPtKbeiSUM4jqpBl3TcY7CDjZdfOIcKeznE7BWr9dg0iPG90G5yfVQ+p/rGNMXdbfStvzQZEVEi4A==",
+ "dev": true,
+ "dependencies": {
+ "@babel/code-frame": "7.10.4",
+ "address": "1.1.2",
+ "browserslist": "4.14.2",
+ "chalk": "2.4.2",
+ "cross-spawn": "7.0.3",
+ "detect-port-alt": "1.1.6",
+ "escape-string-regexp": "2.0.0",
+ "filesize": "6.1.0",
+ "find-up": "4.1.0",
+ "fork-ts-checker-webpack-plugin": "4.1.6",
+ "global-modules": "2.0.0",
+ "globby": "11.0.1",
+ "gzip-size": "5.1.1",
+ "immer": "8.0.1",
+ "is-root": "2.1.0",
+ "loader-utils": "2.0.0",
+ "open": "^7.0.2",
+ "pkg-up": "3.1.0",
+ "prompts": "2.4.0",
+ "react-error-overlay": "^6.0.9",
+ "recursive-readdir": "2.2.2",
+ "shell-quote": "1.7.2",
+ "strip-ansi": "6.0.0",
+ "text-table": "0.2.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/react-dev-utils/node_modules/@babel/code-frame": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz",
+ "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==",
+ "dev": true,
+ "dependencies": {
+ "@babel/highlight": "^7.10.4"
+ }
+ },
+ "node_modules/react-dev-utils/node_modules/browserslist": {
+ "version": "4.14.2",
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.14.2.tgz",
+ "integrity": "sha512-HI4lPveGKUR0x2StIz+2FXfDk9SfVMrxn6PLh1JeGUwcuoDkdKZebWiyLRJ68iIPDpMI4JLVDf7S7XzslgWOhw==",
+ "dev": true,
+ "dependencies": {
+ "caniuse-lite": "^1.0.30001125",
+ "electron-to-chromium": "^1.3.564",
+ "escalade": "^3.0.2",
+ "node-releases": "^1.1.61"
+ },
+ "bin": {
+ "browserslist": "cli.js"
+ },
+ "engines": {
+ "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
+ },
+ "funding": {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
+ }
+ },
+ "node_modules/react-dev-utils/node_modules/escape-string-regexp": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz",
+ "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/react-dev-utils/node_modules/find-up": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
+ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
+ "dev": true,
+ "dependencies": {
+ "locate-path": "^5.0.0",
+ "path-exists": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/react-dev-utils/node_modules/globby": {
+ "version": "11.0.1",
+ "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.1.tgz",
+ "integrity": "sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ==",
+ "dev": true,
+ "dependencies": {
+ "array-union": "^2.1.0",
+ "dir-glob": "^3.0.1",
+ "fast-glob": "^3.1.1",
+ "ignore": "^5.1.4",
+ "merge2": "^1.3.0",
+ "slash": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/react-dev-utils/node_modules/loader-utils": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz",
+ "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==",
+ "dev": true,
+ "dependencies": {
+ "big.js": "^5.2.2",
+ "emojis-list": "^3.0.0",
+ "json5": "^2.1.2"
+ },
+ "engines": {
+ "node": ">=8.9.0"
+ }
+ },
+ "node_modules/react-dev-utils/node_modules/locate-path": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
+ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
+ "dev": true,
+ "dependencies": {
+ "p-locate": "^4.1.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/react-dev-utils/node_modules/node-releases": {
+ "version": "1.1.77",
+ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.77.tgz",
+ "integrity": "sha512-rB1DUFUNAN4Gn9keO2K1efO35IDK7yKHCdCaIMvFO7yUYmmZYeDjnGKle26G4rwj+LKRQpjyUUvMkPglwGCYNQ==",
+ "dev": true
+ },
+ "node_modules/react-dev-utils/node_modules/p-limit": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
+ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
+ "dev": true,
+ "dependencies": {
+ "p-try": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/react-dev-utils/node_modules/p-locate": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
+ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
+ "dev": true,
+ "dependencies": {
+ "p-limit": "^2.2.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/react-dev-utils/node_modules/prompts": {
+ "version": "2.4.0",
+ "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.0.tgz",
+ "integrity": "sha512-awZAKrk3vN6CroQukBL+R9051a4R3zCZBlJm/HBfrSZ8iTpYix3VX1vU4mveiLpiwmOJT4wokTF9m6HUk4KqWQ==",
+ "dev": true,
+ "dependencies": {
+ "kleur": "^3.0.3",
+ "sisteransi": "^1.0.5"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/react-dev-utils/node_modules/strip-ansi": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz",
+ "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==",
+ "dev": true,
+ "dependencies": {
+ "ansi-regex": "^5.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/react-docgen": {
+ "version": "5.4.0",
+ "resolved": "https://registry.npmjs.org/react-docgen/-/react-docgen-5.4.0.tgz",
+ "integrity": "sha512-JBjVQ9cahmNlfjMGxWUxJg919xBBKAoy3hgDgKERbR+BcF4ANpDuzWAScC7j27hZfd8sJNmMPOLWo9+vB/XJEQ==",
+ "dev": true,
+ "dependencies": {
+ "@babel/core": "^7.7.5",
+ "@babel/generator": "^7.12.11",
+ "@babel/runtime": "^7.7.6",
+ "ast-types": "^0.14.2",
+ "commander": "^2.19.0",
+ "doctrine": "^3.0.0",
+ "estree-to-babel": "^3.1.0",
+ "neo-async": "^2.6.1",
+ "node-dir": "^0.1.10",
+ "strip-indent": "^3.0.0"
+ },
+ "bin": {
+ "react-docgen": "bin/react-docgen.js"
+ },
+ "engines": {
+ "node": ">=8.10.0"
+ }
+ },
+ "node_modules/react-docgen-typescript": {
+ "version": "2.2.2",
+ "resolved": "https://registry.npmjs.org/react-docgen-typescript/-/react-docgen-typescript-2.2.2.tgz",
+ "integrity": "sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==",
+ "dev": true,
+ "peerDependencies": {
+ "typescript": ">= 4.3.x"
+ }
+ },
+ "node_modules/react-docgen/node_modules/commander": {
+ "version": "2.20.3",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
+ "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
+ "dev": true
+ },
+ "node_modules/react-dom": {
+ "version": "17.0.2",
+ "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-17.0.2.tgz",
+ "integrity": "sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==",
+ "dev": true,
+ "dependencies": {
+ "loose-envify": "^1.1.0",
+ "object-assign": "^4.1.1",
+ "scheduler": "^0.20.2"
+ },
+ "peerDependencies": {
+ "react": "17.0.2"
+ }
+ },
+ "node_modules/react-draggable": {
+ "version": "4.4.4",
+ "resolved": "https://registry.npmjs.org/react-draggable/-/react-draggable-4.4.4.tgz",
+ "integrity": "sha512-6e0WdcNLwpBx/YIDpoyd2Xb04PB0elrDrulKUgdrIlwuYvxh5Ok9M+F8cljm8kPXXs43PmMzek9RrB1b7mLMqA==",
+ "dev": true,
+ "dependencies": {
+ "clsx": "^1.1.1",
+ "prop-types": "^15.6.0"
+ },
+ "peerDependencies": {
+ "react": ">= 16.3.0",
+ "react-dom": ">= 16.3.0"
+ }
+ },
+ "node_modules/react-element-to-jsx-string": {
+ "version": "14.3.4",
+ "resolved": "https://registry.npmjs.org/react-element-to-jsx-string/-/react-element-to-jsx-string-14.3.4.tgz",
+ "integrity": "sha512-t4ZwvV6vwNxzujDQ+37bspnLwA4JlgUPWhLjBJWsNIDceAf6ZKUTCjdm08cN6WeZ5pTMKiCJkmAYnpmR4Bm+dg==",
+ "dev": true,
+ "dependencies": {
+ "@base2/pretty-print-object": "1.0.1",
+ "is-plain-object": "5.0.0",
+ "react-is": "17.0.2"
+ },
+ "peerDependencies": {
+ "react": "^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1",
+ "react-dom": "^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1"
+ }
+ },
+ "node_modules/react-element-to-jsx-string/node_modules/is-plain-object": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz",
+ "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/react-error-overlay": {
+ "version": "6.0.10",
+ "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.10.tgz",
+ "integrity": "sha512-mKR90fX7Pm5seCOfz8q9F+66VCc1PGsWSBxKbITjfKVQHMNF2zudxHnMdJiB1fRCb+XsbQV9sO9DCkgsMQgBIA==",
+ "dev": true
+ },
+ "node_modules/react-fast-compare": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.0.tgz",
+ "integrity": "sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA==",
+ "dev": true
+ },
+ "node_modules/react-helmet-async": {
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/react-helmet-async/-/react-helmet-async-1.2.2.tgz",
+ "integrity": "sha512-XgSQezeCbLfCxdZhDA3T/g27XZKnOYyOkruopTLSJj8RvFZwdXnM4djnfYaiBSDzOidDgTo1jcEozoRu/+P9UQ==",
+ "dev": true,
+ "dependencies": {
+ "@babel/runtime": "^7.12.5",
+ "invariant": "^2.2.4",
+ "prop-types": "^15.7.2",
+ "react-fast-compare": "^3.2.0",
+ "shallowequal": "^1.1.0"
+ },
+ "peerDependencies": {
+ "react": "^16.6.0 || ^17.0.0",
+ "react-dom": "^16.6.0 || ^17.0.0"
+ }
+ },
+ "node_modules/react-inspector": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/react-inspector/-/react-inspector-5.1.1.tgz",
+ "integrity": "sha512-GURDaYzoLbW8pMGXwYPDBIv6nqei4kK7LPRZ9q9HCZF54wqXz/dnylBp/kfE9XmekBhHvLDdcYeyIwSrvtOiWg==",
+ "dev": true,
+ "dependencies": {
+ "@babel/runtime": "^7.0.0",
+ "is-dom": "^1.0.0",
+ "prop-types": "^15.0.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.4 || ^17.0.0"
+ }
+ },
+ "node_modules/react-is": {
+ "version": "17.0.2",
+ "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz",
+ "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==",
+ "dev": true
+ },
+ "node_modules/react-popper": {
+ "version": "2.2.5",
+ "resolved": "https://registry.npmjs.org/react-popper/-/react-popper-2.2.5.tgz",
+ "integrity": "sha512-kxGkS80eQGtLl18+uig1UIf9MKixFSyPxglsgLBxlYnyDf65BiY9B3nZSc6C9XUNDgStROB0fMQlTEz1KxGddw==",
+ "dev": true,
+ "dependencies": {
+ "react-fast-compare": "^3.0.1",
+ "warning": "^4.0.2"
+ },
+ "peerDependencies": {
+ "@popperjs/core": "^2.0.0",
+ "react": "^16.8.0 || ^17"
+ }
+ },
+ "node_modules/react-popper-tooltip": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/react-popper-tooltip/-/react-popper-tooltip-3.1.1.tgz",
+ "integrity": "sha512-EnERAnnKRptQBJyaee5GJScWNUKQPDD2ywvzZyUjst/wj5U64C8/CnSYLNEmP2hG0IJ3ZhtDxE8oDN+KOyavXQ==",
+ "dev": true,
+ "dependencies": {
+ "@babel/runtime": "^7.12.5",
+ "@popperjs/core": "^2.5.4",
+ "react-popper": "^2.2.4"
+ },
+ "peerDependencies": {
+ "react": "^16.6.0 || ^17.0.0",
+ "react-dom": "^16.6.0 || ^17.0.0"
+ }
+ },
+ "node_modules/react-refresh": {
+ "version": "0.10.0",
+ "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.10.0.tgz",
+ "integrity": "sha512-PgidR3wST3dDYKr6b4pJoqQFpPGNKDSCDx4cZoshjXipw3LzO7mG1My2pwEzz2JVkF+inx3xRpDeQLFQGH/hsQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/react-router": {
+ "version": "6.2.1",
+ "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.2.1.tgz",
+ "integrity": "sha512-2fG0udBtxou9lXtK97eJeET2ki5//UWfQSl1rlJ7quwe6jrktK9FCCc8dQb5QY6jAv3jua8bBQRhhDOM/kVRsg==",
+ "dev": true,
+ "dependencies": {
+ "history": "^5.2.0"
+ },
+ "peerDependencies": {
+ "react": ">=16.8"
+ }
+ },
+ "node_modules/react-router-dom": {
+ "version": "6.2.1",
+ "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.2.1.tgz",
+ "integrity": "sha512-I6Zax+/TH/cZMDpj3/4Fl2eaNdcvoxxHoH1tYOREsQ22OKDYofGebrNm6CTPUcvLvZm63NL/vzCYdjf9CUhqmA==",
+ "dev": true,
+ "dependencies": {
+ "history": "^5.2.0",
+ "react-router": "6.2.1"
+ },
+ "peerDependencies": {
+ "react": ">=16.8",
+ "react-dom": ">=16.8"
+ }
+ },
+ "node_modules/react-router-dom/node_modules/history": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/history/-/history-5.2.0.tgz",
+ "integrity": "sha512-uPSF6lAJb3nSePJ43hN3eKj1dTWpN9gMod0ZssbFTIsen+WehTmEadgL+kg78xLJFdRfrrC//SavDzmRVdE+Ig==",
+ "dev": true,
+ "dependencies": {
+ "@babel/runtime": "^7.7.6"
+ }
+ },
+ "node_modules/react-router/node_modules/history": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/history/-/history-5.2.0.tgz",
+ "integrity": "sha512-uPSF6lAJb3nSePJ43hN3eKj1dTWpN9gMod0ZssbFTIsen+WehTmEadgL+kg78xLJFdRfrrC//SavDzmRVdE+Ig==",
+ "dev": true,
+ "dependencies": {
+ "@babel/runtime": "^7.7.6"
+ }
+ },
+ "node_modules/react-sizeme": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/react-sizeme/-/react-sizeme-3.0.2.tgz",
+ "integrity": "sha512-xOIAOqqSSmKlKFJLO3inBQBdymzDuXx4iuwkNcJmC96jeiOg5ojByvL+g3MW9LPEsojLbC6pf68zOfobK8IPlw==",
+ "dev": true,
+ "dependencies": {
+ "element-resize-detector": "^1.2.2",
+ "invariant": "^2.2.4",
+ "shallowequal": "^1.1.0",
+ "throttle-debounce": "^3.0.1"
+ }
+ },
+ "node_modules/react-syntax-highlighter": {
+ "version": "13.5.3",
+ "resolved": "https://registry.npmjs.org/react-syntax-highlighter/-/react-syntax-highlighter-13.5.3.tgz",
+ "integrity": "sha512-crPaF+QGPeHNIblxxCdf2Lg936NAHKhNhuMzRL3F9ct6aYXL3NcZtCL0Rms9+qVo6Y1EQLdXGypBNSbPL/r+qg==",
+ "dev": true,
+ "dependencies": {
+ "@babel/runtime": "^7.3.1",
+ "highlight.js": "^10.1.1",
+ "lowlight": "^1.14.0",
+ "prismjs": "^1.21.0",
+ "refractor": "^3.1.0"
+ },
+ "peerDependencies": {
+ "react": ">= 0.14.0"
+ }
+ },
+ "node_modules/react-textarea-autosize": {
+ "version": "8.3.3",
+ "resolved": "https://registry.npmjs.org/react-textarea-autosize/-/react-textarea-autosize-8.3.3.tgz",
+ "integrity": "sha512-2XlHXK2TDxS6vbQaoPbMOfQ8GK7+irc2fVK6QFIcC8GOnH3zI/v481n+j1L0WaPVvKxwesnY93fEfH++sus2rQ==",
+ "dev": true,
+ "dependencies": {
+ "@babel/runtime": "^7.10.2",
+ "use-composed-ref": "^1.0.0",
+ "use-latest": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0"
+ }
+ },
+ "node_modules/read-pkg": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz",
+ "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==",
+ "dev": true,
+ "dependencies": {
+ "@types/normalize-package-data": "^2.4.0",
+ "normalize-package-data": "^2.5.0",
+ "parse-json": "^5.0.0",
+ "type-fest": "^0.6.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/read-pkg-up": {
+ "version": "7.0.1",
+ "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz",
+ "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==",
+ "dev": true,
+ "dependencies": {
+ "find-up": "^4.1.0",
+ "read-pkg": "^5.2.0",
+ "type-fest": "^0.8.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/read-pkg-up/node_modules/find-up": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
+ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
+ "dev": true,
+ "dependencies": {
+ "locate-path": "^5.0.0",
+ "path-exists": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/read-pkg-up/node_modules/locate-path": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
+ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
+ "dev": true,
+ "dependencies": {
+ "p-locate": "^4.1.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/read-pkg-up/node_modules/p-limit": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
+ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
+ "dev": true,
+ "dependencies": {
+ "p-try": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/read-pkg-up/node_modules/p-locate": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
+ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
+ "dev": true,
+ "dependencies": {
+ "p-limit": "^2.2.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/read-pkg-up/node_modules/type-fest": {
+ "version": "0.8.1",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz",
+ "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/read-pkg/node_modules/type-fest": {
+ "version": "0.6.0",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz",
+ "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/readable-stream": {
+ "version": "2.3.7",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
+ "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
+ "dependencies": {
+ "core-util-is": "~1.0.0",
+ "inherits": "~2.0.3",
+ "isarray": "~1.0.0",
+ "process-nextick-args": "~2.0.0",
+ "safe-buffer": "~5.1.1",
+ "string_decoder": "~1.1.1",
+ "util-deprecate": "~1.0.1"
+ }
+ },
+ "node_modules/readable-stream/node_modules/isarray": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
+ "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE="
+ },
+ "node_modules/readdirp": {
+ "version": "3.6.0",
+ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
+ "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
+ "dev": true,
+ "dependencies": {
+ "picomatch": "^2.2.1"
+ },
+ "engines": {
+ "node": ">=8.10.0"
+ }
+ },
+ "node_modules/recursive-readdir": {
+ "version": "2.2.2",
+ "resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.2.tgz",
+ "integrity": "sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==",
+ "dev": true,
+ "dependencies": {
+ "minimatch": "3.0.4"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/refractor": {
+ "version": "3.5.0",
+ "resolved": "https://registry.npmjs.org/refractor/-/refractor-3.5.0.tgz",
+ "integrity": "sha512-QwPJd3ferTZ4cSPPjdP5bsYHMytwWYnAN5EEnLtGvkqp/FCCnGsBgxrm9EuIDnjUC3Uc/kETtvVi7fSIVC74Dg==",
+ "dev": true,
+ "dependencies": {
+ "hastscript": "^6.0.0",
+ "parse-entities": "^2.0.0",
+ "prismjs": "~1.25.0"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/refractor/node_modules/prismjs": {
+ "version": "1.25.0",
+ "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.25.0.tgz",
+ "integrity": "sha512-WCjJHl1KEWbnkQom1+SzftbtXMKQoezOCYs5rECqMN+jP+apI7ftoflyqigqzopSO3hMhTEb0mFClA8lkolgEg==",
+ "dev": true
+ },
+ "node_modules/regenerate": {
+ "version": "1.4.2",
+ "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz",
+ "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==",
+ "dev": true
+ },
+ "node_modules/regenerate-unicode-properties": {
+ "version": "9.0.0",
+ "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-9.0.0.tgz",
+ "integrity": "sha512-3E12UeNSPfjrgwjkR81m5J7Aw/T55Tu7nUyZVQYCKEOs+2dkxEY+DpPtZzO4YruuiPb7NkYLVcyJC4+zCbk5pA==",
+ "dev": true,
+ "dependencies": {
+ "regenerate": "^1.4.2"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/regenerator-runtime": {
+ "version": "0.13.9",
+ "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz",
+ "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==",
+ "dev": true
+ },
+ "node_modules/regenerator-transform": {
+ "version": "0.14.5",
+ "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.5.tgz",
+ "integrity": "sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==",
+ "dev": true,
+ "dependencies": {
+ "@babel/runtime": "^7.8.4"
+ }
+ },
+ "node_modules/regex-not": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz",
+ "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==",
+ "dev": true,
+ "dependencies": {
+ "extend-shallow": "^3.0.2",
+ "safe-regex": "^1.1.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/regexp.prototype.flags": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz",
+ "integrity": "sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/regexpu-core": {
+ "version": "4.8.0",
+ "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.8.0.tgz",
+ "integrity": "sha512-1F6bYsoYiz6is+oz70NWur2Vlh9KWtswuRuzJOfeYUrfPX2o8n74AnUVaOGDbUqVGO9fNHu48/pjJO4sNVwsOg==",
+ "dev": true,
+ "dependencies": {
+ "regenerate": "^1.4.2",
+ "regenerate-unicode-properties": "^9.0.0",
+ "regjsgen": "^0.5.2",
+ "regjsparser": "^0.7.0",
+ "unicode-match-property-ecmascript": "^2.0.0",
+ "unicode-match-property-value-ecmascript": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/regjsgen": {
+ "version": "0.5.2",
+ "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.2.tgz",
+ "integrity": "sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==",
+ "dev": true
+ },
+ "node_modules/regjsparser": {
+ "version": "0.7.0",
+ "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.7.0.tgz",
+ "integrity": "sha512-A4pcaORqmNMDVwUjWoTzuhwMGpP+NykpfqAsEgI1FSH/EzC7lrN5TMd+kN8YCovX+jMpu8eaqXgXPCa0g8FQNQ==",
+ "dev": true,
+ "dependencies": {
+ "jsesc": "~0.5.0"
+ },
+ "bin": {
+ "regjsparser": "bin/parser"
+ }
+ },
+ "node_modules/regjsparser/node_modules/jsesc": {
+ "version": "0.5.0",
+ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz",
+ "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=",
+ "dev": true,
+ "bin": {
+ "jsesc": "bin/jsesc"
+ }
+ },
+ "node_modules/relateurl": {
+ "version": "0.2.7",
+ "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz",
+ "integrity": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.10"
+ }
+ },
+ "node_modules/remark-external-links": {
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/remark-external-links/-/remark-external-links-8.0.0.tgz",
+ "integrity": "sha512-5vPSX0kHoSsqtdftSHhIYofVINC8qmp0nctkeU9YoJwV3YfiBRiI6cbFRJ0oI/1F9xS+bopXG0m2KS8VFscuKA==",
+ "dev": true,
+ "dependencies": {
+ "extend": "^3.0.0",
+ "is-absolute-url": "^3.0.0",
+ "mdast-util-definitions": "^4.0.0",
+ "space-separated-tokens": "^1.0.0",
+ "unist-util-visit": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/remark-external-links/node_modules/unist-util-visit": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz",
+ "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==",
+ "dev": true,
+ "dependencies": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0",
+ "unist-util-visit-parents": "^3.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/remark-external-links/node_modules/unist-util-visit-parents": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz",
+ "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==",
+ "dev": true,
+ "dependencies": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/remark-footnotes": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/remark-footnotes/-/remark-footnotes-4.0.1.tgz",
+ "integrity": "sha512-He6YzQFk/Wu2KgfjI80EyPXjt/G+WFaYfUH+xapqPQBdm3aTdEyzosXXv9a2FbTxGqgOfJ4q/TCB46v+wofRpQ==",
+ "dev": true,
+ "dependencies": {
+ "@types/mdast": "^3.0.0",
+ "mdast-util-footnote": "^1.0.0",
+ "micromark-extension-footnote": "^1.0.0",
+ "unified": "^10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/remark-frontmatter": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/remark-frontmatter/-/remark-frontmatter-4.0.1.tgz",
+ "integrity": "sha512-38fJrB0KnmD3E33a5jZC/5+gGAC2WKNiPw1/fdXJvijBlhA7RCsvJklrYJakS0HedninvaCYW8lQGf9C918GfA==",
+ "dev": true,
+ "dependencies": {
+ "@types/mdast": "^3.0.0",
+ "mdast-util-frontmatter": "^1.0.0",
+ "micromark-extension-frontmatter": "^1.0.0",
+ "unified": "^10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/remark-gfm": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/remark-gfm/-/remark-gfm-3.0.1.tgz",
+ "integrity": "sha512-lEFDoi2PICJyNrACFOfDD3JlLkuSbOa5Wd8EPt06HUdptv8Gn0bxYTdbU/XXQ3swAPkEaGxxPN9cbnMHvVu1Ig==",
+ "dev": true,
+ "dependencies": {
+ "@types/mdast": "^3.0.0",
+ "mdast-util-gfm": "^2.0.0",
+ "micromark-extension-gfm": "^2.0.0",
+ "unified": "^10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/remark-math": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/remark-math/-/remark-math-5.1.1.tgz",
+ "integrity": "sha512-cE5T2R/xLVtfFI4cCePtiRn+e6jKMtFDR3P8V3qpv8wpKjwvHoBA4eJzvX+nVrnlNy0911bdGmuspCSwetfYHw==",
+ "dev": true,
+ "dependencies": {
+ "@types/mdast": "^3.0.0",
+ "mdast-util-math": "^2.0.0",
+ "micromark-extension-math": "^2.0.0",
+ "unified": "^10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/remark-mdx": {
+ "version": "1.6.22",
+ "resolved": "https://registry.npmjs.org/remark-mdx/-/remark-mdx-1.6.22.tgz",
+ "integrity": "sha512-phMHBJgeV76uyFkH4rvzCftLfKCr2RZuF+/gmVcaKrpsihyzmhXjA0BEMDaPTXG5y8qZOKPVo83NAOX01LPnOQ==",
+ "dev": true,
+ "dependencies": {
+ "@babel/core": "7.12.9",
+ "@babel/helper-plugin-utils": "7.10.4",
+ "@babel/plugin-proposal-object-rest-spread": "7.12.1",
+ "@babel/plugin-syntax-jsx": "7.12.1",
+ "@mdx-js/util": "1.6.22",
+ "is-alphabetical": "1.0.4",
+ "remark-parse": "8.0.3",
+ "unified": "9.2.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/remark-mdx/node_modules/@babel/core": {
+ "version": "7.12.9",
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.12.9.tgz",
+ "integrity": "sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==",
+ "dev": true,
+ "dependencies": {
+ "@babel/code-frame": "^7.10.4",
+ "@babel/generator": "^7.12.5",
+ "@babel/helper-module-transforms": "^7.12.1",
+ "@babel/helpers": "^7.12.5",
+ "@babel/parser": "^7.12.7",
+ "@babel/template": "^7.12.7",
+ "@babel/traverse": "^7.12.9",
+ "@babel/types": "^7.12.7",
+ "convert-source-map": "^1.7.0",
+ "debug": "^4.1.0",
+ "gensync": "^1.0.0-beta.1",
+ "json5": "^2.1.2",
+ "lodash": "^4.17.19",
+ "resolve": "^1.3.2",
+ "semver": "^5.4.1",
+ "source-map": "^0.5.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/babel"
+ }
+ },
+ "node_modules/remark-mdx/node_modules/@babel/helper-plugin-utils": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
+ "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
+ "dev": true
+ },
+ "node_modules/remark-mdx/node_modules/@babel/plugin-proposal-object-rest-spread": {
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.1.tgz",
+ "integrity": "sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.10.4",
+ "@babel/plugin-syntax-object-rest-spread": "^7.8.0",
+ "@babel/plugin-transform-parameters": "^7.12.1"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/remark-mdx/node_modules/@babel/plugin-syntax-jsx": {
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.1.tgz",
+ "integrity": "sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.10.4"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/remark-mdx/node_modules/bail": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/bail/-/bail-1.0.5.tgz",
+ "integrity": "sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==",
+ "dev": true,
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/remark-mdx/node_modules/ccount": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/ccount/-/ccount-1.1.0.tgz",
+ "integrity": "sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==",
+ "dev": true,
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/remark-mdx/node_modules/is-plain-obj": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz",
+ "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/remark-mdx/node_modules/remark-parse": {
+ "version": "8.0.3",
+ "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-8.0.3.tgz",
+ "integrity": "sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q==",
+ "dev": true,
+ "dependencies": {
+ "ccount": "^1.0.0",
+ "collapse-white-space": "^1.0.2",
+ "is-alphabetical": "^1.0.0",
+ "is-decimal": "^1.0.0",
+ "is-whitespace-character": "^1.0.0",
+ "is-word-character": "^1.0.0",
+ "markdown-escapes": "^1.0.0",
+ "parse-entities": "^2.0.0",
+ "repeat-string": "^1.5.4",
+ "state-toggle": "^1.0.0",
+ "trim": "0.0.1",
+ "trim-trailing-lines": "^1.0.0",
+ "unherit": "^1.0.4",
+ "unist-util-remove-position": "^2.0.0",
+ "vfile-location": "^3.0.0",
+ "xtend": "^4.0.1"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/remark-mdx/node_modules/semver": {
+ "version": "5.7.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
+ "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
+ "dev": true,
+ "bin": {
+ "semver": "bin/semver"
+ }
+ },
+ "node_modules/remark-mdx/node_modules/trough": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/trough/-/trough-1.0.5.tgz",
+ "integrity": "sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==",
+ "dev": true,
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/remark-mdx/node_modules/unified": {
+ "version": "9.2.0",
+ "resolved": "https://registry.npmjs.org/unified/-/unified-9.2.0.tgz",
+ "integrity": "sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==",
+ "dev": true,
+ "dependencies": {
+ "bail": "^1.0.0",
+ "extend": "^3.0.0",
+ "is-buffer": "^2.0.0",
+ "is-plain-obj": "^2.0.0",
+ "trough": "^1.0.0",
+ "vfile": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/remark-parse": {
+ "version": "10.0.1",
+ "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-10.0.1.tgz",
+ "integrity": "sha512-1fUyHr2jLsVOkhbvPRBJ5zTKZZyD6yZzYaWCS6BPBdQ8vEMBCH+9zNCDA6tET/zHCi/jLqjCWtlJZUPk+DbnFw==",
+ "dev": true,
+ "dependencies": {
+ "@types/mdast": "^3.0.0",
+ "mdast-util-from-markdown": "^1.0.0",
+ "unified": "^10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/remark-slug": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/remark-slug/-/remark-slug-6.1.0.tgz",
+ "integrity": "sha512-oGCxDF9deA8phWvxFuyr3oSJsdyUAxMFbA0mZ7Y1Sas+emILtO+e5WutF9564gDsEN4IXaQXm5pFo6MLH+YmwQ==",
+ "dev": true,
+ "dependencies": {
+ "github-slugger": "^1.0.0",
+ "mdast-util-to-string": "^1.0.0",
+ "unist-util-visit": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/remark-slug/node_modules/mdast-util-to-string": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-1.1.0.tgz",
+ "integrity": "sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==",
+ "dev": true,
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/remark-slug/node_modules/unist-util-visit": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz",
+ "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==",
+ "dev": true,
+ "dependencies": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0",
+ "unist-util-visit-parents": "^3.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/remark-slug/node_modules/unist-util-visit-parents": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz",
+ "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==",
+ "dev": true,
+ "dependencies": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/remark-squeeze-paragraphs": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/remark-squeeze-paragraphs/-/remark-squeeze-paragraphs-4.0.0.tgz",
+ "integrity": "sha512-8qRqmL9F4nuLPIgl92XUuxI3pFxize+F1H0e/W3llTk0UsjJaj01+RrirkMw7P21RKe4X6goQhYRSvNWX+70Rw==",
+ "dev": true,
+ "dependencies": {
+ "mdast-squeeze-paragraphs": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/remove-trailing-separator": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz",
+ "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=",
+ "dev": true
+ },
+ "node_modules/renderkid": {
+ "version": "2.0.7",
+ "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-2.0.7.tgz",
+ "integrity": "sha512-oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ==",
+ "dev": true,
+ "dependencies": {
+ "css-select": "^4.1.3",
+ "dom-converter": "^0.2.0",
+ "htmlparser2": "^6.1.0",
+ "lodash": "^4.17.21",
+ "strip-ansi": "^3.0.1"
+ }
+ },
+ "node_modules/renderkid/node_modules/ansi-regex": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
+ "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/renderkid/node_modules/strip-ansi": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+ "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+ "dev": true,
+ "dependencies": {
+ "ansi-regex": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/repeat-element": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz",
+ "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/repeat-string": {
+ "version": "1.6.1",
+ "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz",
+ "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10"
+ }
+ },
+ "node_modules/require-directory": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
+ "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/resolve": {
+ "version": "1.21.0",
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.21.0.tgz",
+ "integrity": "sha512-3wCbTpk5WJlyE4mSOtDLhqQmGFi0/TD9VPwmiolnk8U0wRgMEktqCXd3vy5buTO3tljvalNvKrjHEfrd2WpEKA==",
+ "dev": true,
+ "dependencies": {
+ "is-core-module": "^2.8.0",
+ "path-parse": "^1.0.7",
+ "supports-preserve-symlinks-flag": "^1.0.0"
+ },
+ "bin": {
+ "resolve": "bin/resolve"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/resolve-cwd": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz",
+ "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==",
+ "dev": true,
+ "dependencies": {
+ "resolve-from": "^5.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/resolve-from": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
+ "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/resolve-url": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz",
+ "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=",
+ "deprecated": "https://github.com/lydell/resolve-url#deprecated",
+ "dev": true
+ },
+ "node_modules/resolve.exports": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.0.tgz",
+ "integrity": "sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/ret": {
+ "version": "0.1.15",
+ "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz",
+ "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.12"
+ }
+ },
+ "node_modules/reusify": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
+ "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
+ "dev": true,
+ "engines": {
+ "iojs": ">=1.0.0",
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/rimraf": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
+ "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
+ "dev": true,
+ "dependencies": {
+ "glob": "^7.1.3"
+ },
+ "bin": {
+ "rimraf": "bin.js"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/ripemd160": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz",
+ "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==",
+ "dev": true,
+ "dependencies": {
+ "hash-base": "^3.0.0",
+ "inherits": "^2.0.1"
+ }
+ },
+ "node_modules/rollup": {
+ "version": "2.63.0",
+ "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.63.0.tgz",
+ "integrity": "sha512-nps0idjmD+NXl6OREfyYXMn/dar3WGcyKn+KBzPdaLecub3x/LrId0wUcthcr8oZUAcZAR8NKcfGGFlNgGL1kQ==",
+ "dev": true,
+ "bin": {
+ "rollup": "dist/bin/rollup"
+ },
+ "engines": {
+ "node": ">=10.0.0"
+ },
+ "optionalDependencies": {
+ "fsevents": "~2.3.2"
+ }
+ },
+ "node_modules/rsvp": {
+ "version": "4.8.5",
+ "resolved": "https://registry.npmjs.org/rsvp/-/rsvp-4.8.5.tgz",
+ "integrity": "sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==",
+ "dev": true,
+ "engines": {
+ "node": "6.* || >= 7.*"
+ }
+ },
+ "node_modules/run-parallel": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
+ "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "dependencies": {
+ "queue-microtask": "^1.2.2"
+ }
+ },
+ "node_modules/run-queue": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz",
+ "integrity": "sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=",
+ "dev": true,
+ "dependencies": {
+ "aproba": "^1.1.1"
+ }
+ },
+ "node_modules/run-queue/node_modules/aproba": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz",
+ "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==",
+ "dev": true
+ },
+ "node_modules/sade": {
+ "version": "1.8.1",
+ "resolved": "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz",
+ "integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==",
+ "dev": true,
+ "dependencies": {
+ "mri": "^1.1.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/safe-buffer": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
+ "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
+ },
+ "node_modules/safe-regex": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz",
+ "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=",
+ "dev": true,
+ "dependencies": {
+ "ret": "~0.1.10"
+ }
+ },
+ "node_modules/safer-buffer": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
+ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
+ "dev": true
+ },
+ "node_modules/sane": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/sane/-/sane-4.1.0.tgz",
+ "integrity": "sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==",
+ "deprecated": "some dependency vulnerabilities fixed, support for node < 10 dropped, and newer ECMAScript syntax/features added",
+ "dev": true,
+ "dependencies": {
+ "@cnakazawa/watch": "^1.0.3",
+ "anymatch": "^2.0.0",
+ "capture-exit": "^2.0.0",
+ "exec-sh": "^0.3.2",
+ "execa": "^1.0.0",
+ "fb-watchman": "^2.0.0",
+ "micromatch": "^3.1.4",
+ "minimist": "^1.1.1",
+ "walker": "~1.0.5"
+ },
+ "bin": {
+ "sane": "src/cli.js"
+ },
+ "engines": {
+ "node": "6.* || 8.* || >= 10.*"
+ }
+ },
+ "node_modules/sane/node_modules/anymatch": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz",
+ "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==",
+ "dev": true,
+ "dependencies": {
+ "micromatch": "^3.1.4",
+ "normalize-path": "^2.1.1"
+ }
+ },
+ "node_modules/sane/node_modules/braces": {
+ "version": "2.3.2",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
+ "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==",
+ "dev": true,
+ "dependencies": {
+ "arr-flatten": "^1.1.0",
+ "array-unique": "^0.3.2",
+ "extend-shallow": "^2.0.1",
+ "fill-range": "^4.0.0",
+ "isobject": "^3.0.1",
+ "repeat-element": "^1.1.2",
+ "snapdragon": "^0.8.1",
+ "snapdragon-node": "^2.0.1",
+ "split-string": "^3.0.2",
+ "to-regex": "^3.0.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/sane/node_modules/braces/node_modules/extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+ "dev": true,
+ "dependencies": {
+ "is-extendable": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/sane/node_modules/cross-spawn": {
+ "version": "6.0.5",
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz",
+ "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==",
+ "dev": true,
+ "dependencies": {
+ "nice-try": "^1.0.4",
+ "path-key": "^2.0.1",
+ "semver": "^5.5.0",
+ "shebang-command": "^1.2.0",
+ "which": "^1.2.9"
+ },
+ "engines": {
+ "node": ">=4.8"
+ }
+ },
+ "node_modules/sane/node_modules/execa": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz",
+ "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==",
+ "dev": true,
+ "dependencies": {
+ "cross-spawn": "^6.0.0",
+ "get-stream": "^4.0.0",
+ "is-stream": "^1.1.0",
+ "npm-run-path": "^2.0.0",
+ "p-finally": "^1.0.0",
+ "signal-exit": "^3.0.0",
+ "strip-eof": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/sane/node_modules/fill-range": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz",
+ "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=",
+ "dev": true,
+ "dependencies": {
+ "extend-shallow": "^2.0.1",
+ "is-number": "^3.0.0",
+ "repeat-string": "^1.6.1",
+ "to-regex-range": "^2.1.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/sane/node_modules/fill-range/node_modules/extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+ "dev": true,
+ "dependencies": {
+ "is-extendable": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/sane/node_modules/get-stream": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz",
+ "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==",
+ "dev": true,
+ "dependencies": {
+ "pump": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/sane/node_modules/is-buffer": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
+ "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==",
+ "dev": true
+ },
+ "node_modules/sane/node_modules/is-extendable": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+ "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/sane/node_modules/is-number": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz",
+ "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=",
+ "dev": true,
+ "dependencies": {
+ "kind-of": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/sane/node_modules/is-number/node_modules/kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "dependencies": {
+ "is-buffer": "^1.1.5"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/sane/node_modules/is-stream": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz",
+ "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/sane/node_modules/micromatch": {
+ "version": "3.1.10",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
+ "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
+ "dev": true,
+ "dependencies": {
+ "arr-diff": "^4.0.0",
+ "array-unique": "^0.3.2",
+ "braces": "^2.3.1",
+ "define-property": "^2.0.2",
+ "extend-shallow": "^3.0.2",
+ "extglob": "^2.0.4",
+ "fragment-cache": "^0.2.1",
+ "kind-of": "^6.0.2",
+ "nanomatch": "^1.2.9",
+ "object.pick": "^1.3.0",
+ "regex-not": "^1.0.0",
+ "snapdragon": "^0.8.1",
+ "to-regex": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/sane/node_modules/normalize-path": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz",
+ "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=",
+ "dev": true,
+ "dependencies": {
+ "remove-trailing-separator": "^1.0.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/sane/node_modules/npm-run-path": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz",
+ "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=",
+ "dev": true,
+ "dependencies": {
+ "path-key": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/sane/node_modules/path-key": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz",
+ "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=",
+ "dev": true,
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/sane/node_modules/semver": {
+ "version": "5.7.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
+ "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
+ "dev": true,
+ "bin": {
+ "semver": "bin/semver"
+ }
+ },
+ "node_modules/sane/node_modules/shebang-command": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz",
+ "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=",
+ "dev": true,
+ "dependencies": {
+ "shebang-regex": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/sane/node_modules/shebang-regex": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz",
+ "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/sane/node_modules/to-regex-range": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz",
+ "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=",
+ "dev": true,
+ "dependencies": {
+ "is-number": "^3.0.0",
+ "repeat-string": "^1.6.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/sane/node_modules/which": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
+ "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
+ "dev": true,
+ "dependencies": {
+ "isexe": "^2.0.0"
+ },
+ "bin": {
+ "which": "bin/which"
+ }
+ },
+ "node_modules/sax": {
+ "version": "1.2.4",
+ "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz",
+ "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw=="
+ },
+ "node_modules/saxes": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz",
+ "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==",
+ "dev": true,
+ "dependencies": {
+ "xmlchars": "^2.2.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/scheduler": {
+ "version": "0.20.2",
+ "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.20.2.tgz",
+ "integrity": "sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==",
+ "dev": true,
+ "dependencies": {
+ "loose-envify": "^1.1.0",
+ "object-assign": "^4.1.1"
+ }
+ },
+ "node_modules/schema-utils": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz",
+ "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==",
+ "dev": true,
+ "dependencies": {
+ "@types/json-schema": "^7.0.8",
+ "ajv": "^6.12.5",
+ "ajv-keywords": "^3.5.2"
+ },
+ "engines": {
+ "node": ">= 10.13.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ }
+ },
+ "node_modules/semver": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
+ "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "dev": true,
+ "bin": {
+ "semver": "bin/semver.js"
+ }
+ },
+ "node_modules/send": {
+ "version": "0.17.2",
+ "resolved": "https://registry.npmjs.org/send/-/send-0.17.2.tgz",
+ "integrity": "sha512-UJYB6wFSJE3G00nEivR5rgWp8c2xXvJ3OPWPhmuteU0IKj8nKbG3DrjiOmLwpnHGYWAVwA69zmTm++YG0Hmwww==",
+ "dev": true,
+ "dependencies": {
+ "debug": "2.6.9",
+ "depd": "~1.1.2",
+ "destroy": "~1.0.4",
+ "encodeurl": "~1.0.2",
+ "escape-html": "~1.0.3",
+ "etag": "~1.8.1",
+ "fresh": "0.5.2",
+ "http-errors": "1.8.1",
+ "mime": "1.6.0",
+ "ms": "2.1.3",
+ "on-finished": "~2.3.0",
+ "range-parser": "~1.2.1",
+ "statuses": "~1.5.0"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/send/node_modules/debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "dev": true,
+ "dependencies": {
+ "ms": "2.0.0"
+ }
+ },
+ "node_modules/send/node_modules/debug/node_modules/ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ },
+ "node_modules/send/node_modules/ms": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
+ "dev": true
+ },
+ "node_modules/serialize-javascript": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-5.0.1.tgz",
+ "integrity": "sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==",
+ "dev": true,
+ "dependencies": {
+ "randombytes": "^2.1.0"
+ }
+ },
+ "node_modules/serve-favicon": {
+ "version": "2.5.0",
+ "resolved": "https://registry.npmjs.org/serve-favicon/-/serve-favicon-2.5.0.tgz",
+ "integrity": "sha1-k10kDN/g9YBTB/3+ln2IlCosvPA=",
+ "dev": true,
+ "dependencies": {
+ "etag": "~1.8.1",
+ "fresh": "0.5.2",
+ "ms": "2.1.1",
+ "parseurl": "~1.3.2",
+ "safe-buffer": "5.1.1"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/serve-favicon/node_modules/ms": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz",
+ "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==",
+ "dev": true
+ },
+ "node_modules/serve-favicon/node_modules/safe-buffer": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz",
+ "integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==",
+ "dev": true
+ },
+ "node_modules/serve-static": {
+ "version": "1.14.2",
+ "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.2.tgz",
+ "integrity": "sha512-+TMNA9AFxUEGuC0z2mevogSnn9MXKb4fa7ngeRMJaaGv8vTwnIEkKi+QGvPt33HSnf8pRS+WGM0EbMtCJLKMBQ==",
+ "dev": true,
+ "dependencies": {
+ "encodeurl": "~1.0.2",
+ "escape-html": "~1.0.3",
+ "parseurl": "~1.3.3",
+ "send": "0.17.2"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/set-blocking": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz",
+ "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=",
+ "dev": true
+ },
+ "node_modules/set-immediate-shim": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz",
+ "integrity": "sha1-SysbJ+uAip+NzEgaWOXlb1mfP2E=",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/set-value": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz",
+ "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==",
+ "dev": true,
+ "dependencies": {
+ "extend-shallow": "^2.0.1",
+ "is-extendable": "^0.1.1",
+ "is-plain-object": "^2.0.3",
+ "split-string": "^3.0.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/set-value/node_modules/extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+ "dev": true,
+ "dependencies": {
+ "is-extendable": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/set-value/node_modules/is-extendable": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+ "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/setimmediate": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz",
+ "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=",
+ "dev": true
+ },
+ "node_modules/setprototypeof": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
+ "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==",
+ "dev": true
+ },
+ "node_modules/sha.js": {
+ "version": "2.4.11",
+ "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz",
+ "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==",
+ "dev": true,
+ "dependencies": {
+ "inherits": "^2.0.1",
+ "safe-buffer": "^5.0.1"
+ },
+ "bin": {
+ "sha.js": "bin.js"
+ }
+ },
+ "node_modules/shallow-clone": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz",
+ "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==",
+ "dev": true,
+ "dependencies": {
+ "kind-of": "^6.0.2"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/shallowequal": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz",
+ "integrity": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==",
+ "dev": true
+ },
+ "node_modules/shebang-command": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
+ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
+ "dev": true,
+ "dependencies": {
+ "shebang-regex": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/shebang-regex": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
+ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/shell-quote": {
+ "version": "1.7.2",
+ "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.2.tgz",
+ "integrity": "sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==",
+ "dev": true
+ },
+ "node_modules/side-channel": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz",
+ "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.0",
+ "get-intrinsic": "^1.0.2",
+ "object-inspect": "^1.9.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/signal-exit": {
+ "version": "3.0.6",
+ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.6.tgz",
+ "integrity": "sha512-sDl4qMFpijcGw22U5w63KmD3cZJfBuFlVNbVMKje2keoKML7X2UzWbc4XrmEbDwg0NXJc3yv4/ox7b+JWb57kQ==",
+ "dev": true
+ },
+ "node_modules/sisteransi": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz",
+ "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==",
+ "dev": true
+ },
+ "node_modules/slash": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
+ "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/snapdragon": {
+ "version": "0.8.2",
+ "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz",
+ "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==",
+ "dev": true,
+ "dependencies": {
+ "base": "^0.11.1",
+ "debug": "^2.2.0",
+ "define-property": "^0.2.5",
+ "extend-shallow": "^2.0.1",
+ "map-cache": "^0.2.2",
+ "source-map": "^0.5.6",
+ "source-map-resolve": "^0.5.0",
+ "use": "^3.1.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/snapdragon-node": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz",
+ "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==",
+ "dev": true,
+ "dependencies": {
+ "define-property": "^1.0.0",
+ "isobject": "^3.0.0",
+ "snapdragon-util": "^3.0.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/snapdragon-node/node_modules/define-property": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
+ "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
+ "dev": true,
+ "dependencies": {
+ "is-descriptor": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/snapdragon-util": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz",
+ "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==",
+ "dev": true,
+ "dependencies": {
+ "kind-of": "^3.2.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/snapdragon-util/node_modules/is-buffer": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
+ "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==",
+ "dev": true
+ },
+ "node_modules/snapdragon-util/node_modules/kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "dependencies": {
+ "is-buffer": "^1.1.5"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/snapdragon/node_modules/debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "dev": true,
+ "dependencies": {
+ "ms": "2.0.0"
+ }
+ },
+ "node_modules/snapdragon/node_modules/define-property": {
+ "version": "0.2.5",
+ "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
+ "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
+ "dev": true,
+ "dependencies": {
+ "is-descriptor": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/snapdragon/node_modules/extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+ "dev": true,
+ "dependencies": {
+ "is-extendable": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/snapdragon/node_modules/is-accessor-descriptor": {
+ "version": "0.1.6",
+ "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz",
+ "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=",
+ "dev": true,
+ "dependencies": {
+ "kind-of": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/snapdragon/node_modules/is-accessor-descriptor/node_modules/kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "dependencies": {
+ "is-buffer": "^1.1.5"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/snapdragon/node_modules/is-buffer": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
+ "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==",
+ "dev": true
+ },
+ "node_modules/snapdragon/node_modules/is-data-descriptor": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz",
+ "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=",
+ "dev": true,
+ "dependencies": {
+ "kind-of": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/snapdragon/node_modules/is-data-descriptor/node_modules/kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "dependencies": {
+ "is-buffer": "^1.1.5"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/snapdragon/node_modules/is-descriptor": {
+ "version": "0.1.6",
+ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz",
+ "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==",
+ "dev": true,
+ "dependencies": {
+ "is-accessor-descriptor": "^0.1.6",
+ "is-data-descriptor": "^0.1.4",
+ "kind-of": "^5.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/snapdragon/node_modules/is-extendable": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+ "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/snapdragon/node_modules/kind-of": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
+ "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/snapdragon/node_modules/ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ },
+ "node_modules/source-list-map": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz",
+ "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==",
+ "dev": true
+ },
+ "node_modules/source-map": {
+ "version": "0.5.7",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+ "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/source-map-resolve": {
+ "version": "0.5.3",
+ "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz",
+ "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==",
+ "dev": true,
+ "dependencies": {
+ "atob": "^2.1.2",
+ "decode-uri-component": "^0.2.0",
+ "resolve-url": "^0.2.1",
+ "source-map-url": "^0.4.0",
+ "urix": "^0.1.0"
+ }
+ },
+ "node_modules/source-map-support": {
+ "version": "0.5.21",
+ "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz",
+ "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==",
+ "dev": true,
+ "dependencies": {
+ "buffer-from": "^1.0.0",
+ "source-map": "^0.6.0"
+ }
+ },
+ "node_modules/source-map-support/node_modules/source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/source-map-url": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz",
+ "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==",
+ "dev": true
+ },
+ "node_modules/space-separated-tokens": {
+ "version": "1.1.5",
+ "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz",
+ "integrity": "sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==",
+ "dev": true,
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/spdx-correct": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz",
+ "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==",
+ "dev": true,
+ "dependencies": {
+ "spdx-expression-parse": "^3.0.0",
+ "spdx-license-ids": "^3.0.0"
+ }
+ },
+ "node_modules/spdx-exceptions": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz",
+ "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==",
+ "dev": true
+ },
+ "node_modules/spdx-expression-parse": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz",
+ "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==",
+ "dev": true,
+ "dependencies": {
+ "spdx-exceptions": "^2.1.0",
+ "spdx-license-ids": "^3.0.0"
+ }
+ },
+ "node_modules/spdx-license-ids": {
+ "version": "3.0.11",
+ "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.11.tgz",
+ "integrity": "sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==",
+ "dev": true
+ },
+ "node_modules/split-string": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz",
+ "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==",
+ "dev": true,
+ "dependencies": {
+ "extend-shallow": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/sprintf-js": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
+ "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=",
+ "dev": true
+ },
+ "node_modules/ssri": {
+ "version": "8.0.1",
+ "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz",
+ "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==",
+ "dev": true,
+ "dependencies": {
+ "minipass": "^3.1.1"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/stable": {
+ "version": "0.1.8",
+ "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz",
+ "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==",
+ "dev": true
+ },
+ "node_modules/stack-utils": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.5.tgz",
+ "integrity": "sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==",
+ "dev": true,
+ "dependencies": {
+ "escape-string-regexp": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/stack-utils/node_modules/escape-string-regexp": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz",
+ "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/stackframe": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.2.0.tgz",
+ "integrity": "sha512-GrdeshiRmS1YLMYgzF16olf2jJ/IzxXY9lhKOskuVziubpTYcYqyOwYeJKzQkwy7uN0fYSsbsC4RQaXf9LCrYA==",
+ "dev": true
+ },
+ "node_modules/state-toggle": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/state-toggle/-/state-toggle-1.0.3.tgz",
+ "integrity": "sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==",
+ "dev": true,
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/static-extend": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz",
+ "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=",
+ "dev": true,
+ "dependencies": {
+ "define-property": "^0.2.5",
+ "object-copy": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/static-extend/node_modules/define-property": {
+ "version": "0.2.5",
+ "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
+ "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
+ "dev": true,
+ "dependencies": {
+ "is-descriptor": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/static-extend/node_modules/is-accessor-descriptor": {
+ "version": "0.1.6",
+ "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz",
+ "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=",
+ "dev": true,
+ "dependencies": {
+ "kind-of": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/static-extend/node_modules/is-accessor-descriptor/node_modules/kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "dependencies": {
+ "is-buffer": "^1.1.5"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/static-extend/node_modules/is-buffer": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
+ "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==",
+ "dev": true
+ },
+ "node_modules/static-extend/node_modules/is-data-descriptor": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz",
+ "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=",
+ "dev": true,
+ "dependencies": {
+ "kind-of": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/static-extend/node_modules/is-data-descriptor/node_modules/kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "dependencies": {
+ "is-buffer": "^1.1.5"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/static-extend/node_modules/is-descriptor": {
+ "version": "0.1.6",
+ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz",
+ "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==",
+ "dev": true,
+ "dependencies": {
+ "is-accessor-descriptor": "^0.1.6",
+ "is-data-descriptor": "^0.1.4",
+ "kind-of": "^5.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/static-extend/node_modules/kind-of": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
+ "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/statuses": {
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz",
+ "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/store2": {
+ "version": "2.13.1",
+ "resolved": "https://registry.npmjs.org/store2/-/store2-2.13.1.tgz",
+ "integrity": "sha512-iJtHSGmNgAUx0b/MCS6ASGxb//hGrHHRgzvN+K5bvkBTN7A9RTpPSf1WSp+nPGvWCJ1jRnvY7MKnuqfoi3OEqg==",
+ "dev": true
+ },
+ "node_modules/stream-browserify": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz",
+ "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==",
+ "dev": true,
+ "dependencies": {
+ "inherits": "~2.0.1",
+ "readable-stream": "^2.0.2"
+ }
+ },
+ "node_modules/stream-each": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz",
+ "integrity": "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==",
+ "dev": true,
+ "dependencies": {
+ "end-of-stream": "^1.1.0",
+ "stream-shift": "^1.0.0"
+ }
+ },
+ "node_modules/stream-http": {
+ "version": "2.8.3",
+ "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz",
+ "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==",
+ "dev": true,
+ "dependencies": {
+ "builtin-status-codes": "^3.0.0",
+ "inherits": "^2.0.1",
+ "readable-stream": "^2.3.6",
+ "to-arraybuffer": "^1.0.0",
+ "xtend": "^4.0.0"
+ }
+ },
+ "node_modules/stream-shift": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz",
+ "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==",
+ "dev": true
+ },
+ "node_modules/string_decoder": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
+ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
+ "dependencies": {
+ "safe-buffer": "~5.1.0"
+ }
+ },
+ "node_modules/string-length": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz",
+ "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==",
+ "dev": true,
+ "dependencies": {
+ "char-regex": "^1.0.2",
+ "strip-ansi": "^6.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/string-width": {
+ "version": "4.2.3",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
+ "dev": true,
+ "dependencies": {
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/string.prototype.matchall": {
+ "version": "4.0.6",
+ "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.6.tgz",
+ "integrity": "sha512-6WgDX8HmQqvEd7J+G6VtAahhsQIssiZ8zl7zKh1VDMFyL3hRTJP4FTNA3RbIp2TOQ9AYNDcc7e3fH0Qbup+DBg==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.19.1",
+ "get-intrinsic": "^1.1.1",
+ "has-symbols": "^1.0.2",
+ "internal-slot": "^1.0.3",
+ "regexp.prototype.flags": "^1.3.1",
+ "side-channel": "^1.0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/string.prototype.padend": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/string.prototype.padend/-/string.prototype.padend-3.1.3.tgz",
+ "integrity": "sha512-jNIIeokznm8SD/TZISQsZKYu7RJyheFNt84DUPrh482GC8RVp2MKqm2O5oBRdGxbDQoXrhhWtPIWQOiy20svUg==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.19.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/string.prototype.padstart": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/string.prototype.padstart/-/string.prototype.padstart-3.1.3.tgz",
+ "integrity": "sha512-NZydyOMtYxpTjGqp0VN5PYUF/tsU15yDMZnUdj16qRUIUiMJkHHSDElYyQFrMu+/WloTpA7MQSiADhBicDfaoA==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.19.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/string.prototype.trimend": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz",
+ "integrity": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.3"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/string.prototype.trimstart": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz",
+ "integrity": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.3"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/strip-ansi": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
+ "dev": true,
+ "dependencies": {
+ "ansi-regex": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/strip-bom": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz",
+ "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/strip-eof": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz",
+ "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/strip-final-newline": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz",
+ "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==",
+ "dev": true,
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/strip-indent": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz",
+ "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==",
+ "dev": true,
+ "dependencies": {
+ "min-indent": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/style-loader": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-1.3.0.tgz",
+ "integrity": "sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==",
+ "dev": true,
+ "dependencies": {
+ "loader-utils": "^2.0.0",
+ "schema-utils": "^2.7.0"
+ },
+ "engines": {
+ "node": ">= 8.9.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ },
+ "peerDependencies": {
+ "webpack": "^4.0.0 || ^5.0.0"
+ }
+ },
+ "node_modules/style-loader/node_modules/schema-utils": {
+ "version": "2.7.1",
+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz",
+ "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==",
+ "dev": true,
+ "dependencies": {
+ "@types/json-schema": "^7.0.5",
+ "ajv": "^6.12.4",
+ "ajv-keywords": "^3.5.2"
+ },
+ "engines": {
+ "node": ">= 8.9.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ }
+ },
+ "node_modules/style-to-object": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-0.3.0.tgz",
+ "integrity": "sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==",
+ "dev": true,
+ "dependencies": {
+ "inline-style-parser": "0.1.1"
+ }
+ },
+ "node_modules/supports-color": {
+ "version": "5.5.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
+ "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
+ "dev": true,
+ "dependencies": {
+ "has-flag": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/supports-hyperlinks": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz",
+ "integrity": "sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==",
+ "dev": true,
+ "dependencies": {
+ "has-flag": "^4.0.0",
+ "supports-color": "^7.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/supports-hyperlinks/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/supports-hyperlinks/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/supports-preserve-symlinks-flag": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
+ "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/symbol-tree": {
+ "version": "3.2.4",
+ "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz",
+ "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==",
+ "dev": true
+ },
+ "node_modules/symbol.prototype.description": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/symbol.prototype.description/-/symbol.prototype.description-1.0.5.tgz",
+ "integrity": "sha512-x738iXRYsrAt9WBhRCVG5BtIC3B7CUkFwbHW2zOvGtwM33s7JjrCDyq8V0zgMYVb5ymsL8+qkzzpANH63CPQaQ==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.2",
+ "get-symbol-description": "^1.0.0",
+ "has-symbols": "^1.0.2",
+ "object.getownpropertydescriptors": "^2.1.2"
+ },
+ "engines": {
+ "node": ">= 0.11.15"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/synchronous-promise": {
+ "version": "2.0.15",
+ "resolved": "https://registry.npmjs.org/synchronous-promise/-/synchronous-promise-2.0.15.tgz",
+ "integrity": "sha512-k8uzYIkIVwmT+TcglpdN50pS2y1BDcUnBPK9iJeGu0Pl1lOI8pD6wtzgw91Pjpe+RxtTncw32tLxs/R0yNL2Mg==",
+ "dev": true
+ },
+ "node_modules/tapable": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz",
+ "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==",
+ "dev": true,
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/tar": {
+ "version": "6.1.11",
+ "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.11.tgz",
+ "integrity": "sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==",
+ "dev": true,
+ "dependencies": {
+ "chownr": "^2.0.0",
+ "fs-minipass": "^2.0.0",
+ "minipass": "^3.0.0",
+ "minizlib": "^2.1.1",
+ "mkdirp": "^1.0.3",
+ "yallist": "^4.0.0"
+ },
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/telejson": {
+ "version": "5.3.3",
+ "resolved": "https://registry.npmjs.org/telejson/-/telejson-5.3.3.tgz",
+ "integrity": "sha512-PjqkJZpzEggA9TBpVtJi1LVptP7tYtXB6rEubwlHap76AMjzvOdKX41CxyaW7ahhzDU1aftXnMCx5kAPDZTQBA==",
+ "dev": true,
+ "dependencies": {
+ "@types/is-function": "^1.0.0",
+ "global": "^4.4.0",
+ "is-function": "^1.0.2",
+ "is-regex": "^1.1.2",
+ "is-symbol": "^1.0.3",
+ "isobject": "^4.0.0",
+ "lodash": "^4.17.21",
+ "memoizerific": "^1.11.3"
+ }
+ },
+ "node_modules/telejson/node_modules/isobject": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/isobject/-/isobject-4.0.0.tgz",
+ "integrity": "sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/terminal-link": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz",
+ "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==",
+ "dev": true,
+ "dependencies": {
+ "ansi-escapes": "^4.2.1",
+ "supports-hyperlinks": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/terser": {
+ "version": "4.8.0",
+ "resolved": "https://registry.npmjs.org/terser/-/terser-4.8.0.tgz",
+ "integrity": "sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==",
+ "dev": true,
+ "dependencies": {
+ "commander": "^2.20.0",
+ "source-map": "~0.6.1",
+ "source-map-support": "~0.5.12"
+ },
+ "bin": {
+ "terser": "bin/terser"
+ },
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/terser-webpack-plugin": {
+ "version": "4.2.3",
+ "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-4.2.3.tgz",
+ "integrity": "sha512-jTgXh40RnvOrLQNgIkwEKnQ8rmHjHK4u+6UBEi+W+FPmvb+uo+chJXntKe7/3lW5mNysgSWD60KyesnhW8D6MQ==",
+ "dev": true,
+ "dependencies": {
+ "cacache": "^15.0.5",
+ "find-cache-dir": "^3.3.1",
+ "jest-worker": "^26.5.0",
+ "p-limit": "^3.0.2",
+ "schema-utils": "^3.0.0",
+ "serialize-javascript": "^5.0.1",
+ "source-map": "^0.6.1",
+ "terser": "^5.3.4",
+ "webpack-sources": "^1.4.3"
+ },
+ "engines": {
+ "node": ">= 10.13.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ },
+ "peerDependencies": {
+ "webpack": "^4.0.0 || ^5.0.0"
+ }
+ },
+ "node_modules/terser-webpack-plugin/node_modules/commander": {
+ "version": "2.20.3",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
+ "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
+ "dev": true
+ },
+ "node_modules/terser-webpack-plugin/node_modules/find-cache-dir": {
+ "version": "3.3.2",
+ "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz",
+ "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==",
+ "dev": true,
+ "dependencies": {
+ "commondir": "^1.0.1",
+ "make-dir": "^3.0.2",
+ "pkg-dir": "^4.1.0"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/avajs/find-cache-dir?sponsor=1"
+ }
+ },
+ "node_modules/terser-webpack-plugin/node_modules/find-up": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
+ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
+ "dev": true,
+ "dependencies": {
+ "locate-path": "^5.0.0",
+ "path-exists": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/terser-webpack-plugin/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/terser-webpack-plugin/node_modules/jest-worker": {
+ "version": "26.6.2",
+ "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz",
+ "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==",
+ "dev": true,
+ "dependencies": {
+ "@types/node": "*",
+ "merge-stream": "^2.0.0",
+ "supports-color": "^7.0.0"
+ },
+ "engines": {
+ "node": ">= 10.13.0"
+ }
+ },
+ "node_modules/terser-webpack-plugin/node_modules/locate-path": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
+ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
+ "dev": true,
+ "dependencies": {
+ "p-locate": "^4.1.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/terser-webpack-plugin/node_modules/make-dir": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
+ "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
+ "dev": true,
+ "dependencies": {
+ "semver": "^6.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/terser-webpack-plugin/node_modules/p-locate": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
+ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
+ "dev": true,
+ "dependencies": {
+ "p-limit": "^2.2.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/terser-webpack-plugin/node_modules/p-locate/node_modules/p-limit": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
+ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
+ "dev": true,
+ "dependencies": {
+ "p-try": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/terser-webpack-plugin/node_modules/pkg-dir": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
+ "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
+ "dev": true,
+ "dependencies": {
+ "find-up": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/terser-webpack-plugin/node_modules/source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/terser-webpack-plugin/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/terser-webpack-plugin/node_modules/terser": {
+ "version": "5.10.0",
+ "resolved": "https://registry.npmjs.org/terser/-/terser-5.10.0.tgz",
+ "integrity": "sha512-AMmF99DMfEDiRJfxfY5jj5wNH/bYO09cniSqhfoyxc8sFoYIgkJy86G04UoZU5VjlpnplVu0K6Tx6E9b5+DlHA==",
+ "dev": true,
+ "dependencies": {
+ "commander": "^2.20.0",
+ "source-map": "~0.7.2",
+ "source-map-support": "~0.5.20"
+ },
+ "bin": {
+ "terser": "bin/terser"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "peerDependencies": {
+ "acorn": "^8.5.0"
+ },
+ "peerDependenciesMeta": {
+ "acorn": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/terser-webpack-plugin/node_modules/terser/node_modules/source-map": {
+ "version": "0.7.3",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz",
+ "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==",
+ "dev": true,
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/terser/node_modules/commander": {
+ "version": "2.20.3",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
+ "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
+ "dev": true
+ },
+ "node_modules/terser/node_modules/source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/test-exclude": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz",
+ "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==",
+ "dev": true,
+ "dependencies": {
+ "@istanbuljs/schema": "^0.1.2",
+ "glob": "^7.1.4",
+ "minimatch": "^3.0.4"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/text-table": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz",
+ "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=",
+ "dev": true
+ },
+ "node_modules/throat": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/throat/-/throat-6.0.1.tgz",
+ "integrity": "sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w==",
+ "dev": true
+ },
+ "node_modules/throttle-debounce": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/throttle-debounce/-/throttle-debounce-3.0.1.tgz",
+ "integrity": "sha512-dTEWWNu6JmeVXY0ZYoPuH5cRIwc0MeGbJwah9KUNYSJwommQpCzTySTpEe8Gs1J23aeWEuAobe4Ag7EHVt/LOg==",
+ "dev": true,
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/through2": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz",
+ "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==",
+ "dev": true,
+ "dependencies": {
+ "readable-stream": "~2.3.6",
+ "xtend": "~4.0.1"
+ }
+ },
+ "node_modules/timers-browserify": {
+ "version": "2.0.12",
+ "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz",
+ "integrity": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==",
+ "dev": true,
+ "dependencies": {
+ "setimmediate": "^1.0.4"
+ },
+ "engines": {
+ "node": ">=0.6.0"
+ }
+ },
+ "node_modules/tmpl": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz",
+ "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==",
+ "dev": true
+ },
+ "node_modules/to-arraybuffer": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz",
+ "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=",
+ "dev": true
+ },
+ "node_modules/to-fast-properties": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz",
+ "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=",
+ "dev": true,
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/to-object-path": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz",
+ "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=",
+ "dev": true,
+ "dependencies": {
+ "kind-of": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/to-object-path/node_modules/is-buffer": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
+ "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==",
+ "dev": true
+ },
+ "node_modules/to-object-path/node_modules/kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "dependencies": {
+ "is-buffer": "^1.1.5"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/to-regex": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz",
+ "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==",
+ "dev": true,
+ "dependencies": {
+ "define-property": "^2.0.2",
+ "extend-shallow": "^3.0.2",
+ "regex-not": "^1.0.2",
+ "safe-regex": "^1.1.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/to-regex-range": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
+ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
+ "dev": true,
+ "dependencies": {
+ "is-number": "^7.0.0"
+ },
+ "engines": {
+ "node": ">=8.0"
+ }
+ },
+ "node_modules/toggle-selection": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/toggle-selection/-/toggle-selection-1.0.6.tgz",
+ "integrity": "sha1-bkWxJj8gF/oKzH2J14sVuL932jI=",
+ "dev": true
+ },
+ "node_modules/toidentifier": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
+ "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.6"
+ }
+ },
+ "node_modules/tough-cookie": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.0.0.tgz",
+ "integrity": "sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==",
+ "dev": true,
+ "dependencies": {
+ "psl": "^1.1.33",
+ "punycode": "^2.1.1",
+ "universalify": "^0.1.2"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/tough-cookie/node_modules/universalify": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz",
+ "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==",
+ "dev": true,
+ "engines": {
+ "node": ">= 4.0.0"
+ }
+ },
+ "node_modules/tr46": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz",
+ "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==",
+ "dev": true,
+ "dependencies": {
+ "punycode": "^2.1.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/trim": {
+ "version": "0.0.1",
+ "resolved": "https://registry.npmjs.org/trim/-/trim-0.0.1.tgz",
+ "integrity": "sha1-WFhUf2spB1fulczMZm+1AITEYN0=",
+ "dev": true
+ },
+ "node_modules/trim-trailing-lines": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/trim-trailing-lines/-/trim-trailing-lines-1.1.4.tgz",
+ "integrity": "sha512-rjUWSqnfTNrjbB9NQWfPMH/xRK1deHeGsHoVfpxJ++XeYXE0d6B1En37AHfw3jtfTU7dzMzZL2jjpe8Qb5gLIQ==",
+ "dev": true,
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/trough": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/trough/-/trough-2.0.2.tgz",
+ "integrity": "sha512-FnHq5sTMxC0sk957wHDzRnemFnNBvt/gSY99HzK8F7UP5WAbvP70yX5bd7CjEQkN+TjdxwI7g7lJ6podqrG2/w==",
+ "dev": true,
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/ts-dedent": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/ts-dedent/-/ts-dedent-2.2.0.tgz",
+ "integrity": "sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=6.10"
+ }
+ },
+ "node_modules/ts-pnp": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/ts-pnp/-/ts-pnp-1.2.0.tgz",
+ "integrity": "sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==",
+ "dev": true,
+ "engines": {
+ "node": ">=6"
+ },
+ "peerDependenciesMeta": {
+ "typescript": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/tslib": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz",
+ "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==",
+ "dev": true
+ },
+ "node_modules/tty-browserify": {
+ "version": "0.0.0",
+ "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz",
+ "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=",
+ "dev": true
+ },
+ "node_modules/type-check": {
+ "version": "0.3.2",
+ "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz",
+ "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=",
+ "dev": true,
+ "dependencies": {
+ "prelude-ls": "~1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/type-detect": {
+ "version": "4.0.8",
+ "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz",
+ "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==",
+ "dev": true,
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/type-fest": {
+ "version": "0.20.2",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
+ "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/type-is": {
+ "version": "1.6.18",
+ "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz",
+ "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==",
+ "dev": true,
+ "dependencies": {
+ "media-typer": "0.3.0",
+ "mime-types": "~2.1.24"
+ },
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/typedarray": {
+ "version": "0.0.6",
+ "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz",
+ "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=",
+ "dev": true
+ },
+ "node_modules/typedarray-to-buffer": {
+ "version": "3.1.5",
+ "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz",
+ "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==",
+ "dev": true,
+ "dependencies": {
+ "is-typedarray": "^1.0.0"
+ }
+ },
+ "node_modules/typescript": {
+ "version": "4.5.4",
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.5.4.tgz",
+ "integrity": "sha512-VgYs2A2QIRuGphtzFV7aQJduJ2gyfTljngLzjpfW9FoYZF6xuw1W0vW9ghCKLfcWrCFxK81CSGRAvS1pn4fIUg==",
+ "dev": true,
+ "bin": {
+ "tsc": "bin/tsc",
+ "tsserver": "bin/tsserver"
+ },
+ "engines": {
+ "node": ">=4.2.0"
+ }
+ },
+ "node_modules/uglify-js": {
+ "version": "3.14.5",
+ "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.14.5.tgz",
+ "integrity": "sha512-qZukoSxOG0urUTvjc2ERMTcAy+BiFh3weWAkeurLwjrCba73poHmG3E36XEjd/JGukMzwTL7uCxZiAexj8ppvQ==",
+ "dev": true,
+ "optional": true,
+ "bin": {
+ "uglifyjs": "bin/uglifyjs"
+ },
+ "engines": {
+ "node": ">=0.8.0"
+ }
+ },
+ "node_modules/unbox-primitive": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz",
+ "integrity": "sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==",
+ "dev": true,
+ "dependencies": {
+ "function-bind": "^1.1.1",
+ "has-bigints": "^1.0.1",
+ "has-symbols": "^1.0.2",
+ "which-boxed-primitive": "^1.0.2"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/unfetch": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/unfetch/-/unfetch-4.2.0.tgz",
+ "integrity": "sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==",
+ "dev": true
+ },
+ "node_modules/unherit": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/unherit/-/unherit-1.1.3.tgz",
+ "integrity": "sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==",
+ "dev": true,
+ "dependencies": {
+ "inherits": "^2.0.0",
+ "xtend": "^4.0.0"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/unicode-canonical-property-names-ecmascript": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz",
+ "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/unicode-match-property-ecmascript": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz",
+ "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==",
+ "dev": true,
+ "dependencies": {
+ "unicode-canonical-property-names-ecmascript": "^2.0.0",
+ "unicode-property-aliases-ecmascript": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/unicode-match-property-value-ecmascript": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz",
+ "integrity": "sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==",
+ "dev": true,
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/unicode-property-aliases-ecmascript": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz",
+ "integrity": "sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/unified": {
+ "version": "10.1.1",
+ "resolved": "https://registry.npmjs.org/unified/-/unified-10.1.1.tgz",
+ "integrity": "sha512-v4ky1+6BN9X3pQrOdkFIPWAaeDsHPE1svRDxq7YpTc2plkIqFMwukfqM+l0ewpP9EfwARlt9pPFAeWYhHm8X9w==",
+ "dev": true,
+ "dependencies": {
+ "@types/unist": "^2.0.0",
+ "bail": "^2.0.0",
+ "extend": "^3.0.0",
+ "is-buffer": "^2.0.0",
+ "is-plain-obj": "^4.0.0",
+ "trough": "^2.0.0",
+ "vfile": "^5.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/unified/node_modules/vfile": {
+ "version": "5.2.1",
+ "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.2.1.tgz",
+ "integrity": "sha512-vXW5XKbELM6mLj88kmkJ+gjFGZ/2gTmpdqPDjs3y+qbvI5i7md7rba/+pbYEawa7t22W7ynywPV6lUUAS1WiYg==",
+ "dev": true,
+ "dependencies": {
+ "@types/unist": "^2.0.0",
+ "is-buffer": "^2.0.0",
+ "unist-util-stringify-position": "^3.0.0",
+ "vfile-message": "^3.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/unified/node_modules/vfile-message": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-3.1.0.tgz",
+ "integrity": "sha512-4QJbBk+DkPEhBXq3f260xSaWtjE4gPKOfulzfMFF8ZNwaPZieWsg3iVlcmF04+eebzpcpeXOOFMfrYzJHVYg+g==",
+ "dev": true,
+ "dependencies": {
+ "@types/unist": "^2.0.0",
+ "unist-util-stringify-position": "^3.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/union-value": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz",
+ "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==",
+ "dev": true,
+ "dependencies": {
+ "arr-union": "^3.1.0",
+ "get-value": "^2.0.6",
+ "is-extendable": "^0.1.1",
+ "set-value": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/union-value/node_modules/is-extendable": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+ "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/unique-filename": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz",
+ "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==",
+ "dev": true,
+ "dependencies": {
+ "unique-slug": "^2.0.0"
+ }
+ },
+ "node_modules/unique-slug": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz",
+ "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==",
+ "dev": true,
+ "dependencies": {
+ "imurmurhash": "^0.1.4"
+ }
+ },
+ "node_modules/unist-builder": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/unist-builder/-/unist-builder-2.0.3.tgz",
+ "integrity": "sha512-f98yt5pnlMWlzP539tPc4grGMsFaQQlP/vM396b00jngsiINumNmsY8rkXjfoi1c6QaM8nQ3vaGDuoKWbe/1Uw==",
+ "dev": true,
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/unist-util-generated": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/unist-util-generated/-/unist-util-generated-1.1.6.tgz",
+ "integrity": "sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg==",
+ "dev": true,
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/unist-util-is": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz",
+ "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==",
+ "dev": true,
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/unist-util-position": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-3.1.0.tgz",
+ "integrity": "sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA==",
+ "dev": true,
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/unist-util-remove": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/unist-util-remove/-/unist-util-remove-2.1.0.tgz",
+ "integrity": "sha512-J8NYPyBm4baYLdCbjmf1bhPu45Cr1MWTm77qd9istEkzWpnN6O9tMsEbB2JhNnBCqGENRqEWomQ+He6au0B27Q==",
+ "dev": true,
+ "dependencies": {
+ "unist-util-is": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/unist-util-remove-position": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-2.0.1.tgz",
+ "integrity": "sha512-fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA==",
+ "dev": true,
+ "dependencies": {
+ "unist-util-visit": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/unist-util-remove-position/node_modules/unist-util-visit": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz",
+ "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==",
+ "dev": true,
+ "dependencies": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0",
+ "unist-util-visit-parents": "^3.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/unist-util-remove-position/node_modules/unist-util-visit-parents": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz",
+ "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==",
+ "dev": true,
+ "dependencies": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/unist-util-stringify-position": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.0.tgz",
+ "integrity": "sha512-SdfAl8fsDclywZpfMDTVDxA2V7LjtRDTOFd44wUJamgl6OlVngsqWjxvermMYf60elWHbxhuRCZml7AnuXCaSA==",
+ "dev": true,
+ "dependencies": {
+ "@types/unist": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/unist-util-visit": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.0.tgz",
+ "integrity": "sha512-n7lyhFKJfVZ9MnKtqbsqkQEk5P1KShj0+//V7mAcoI6bpbUjh3C/OG8HVD+pBihfh6Ovl01m8dkcv9HNqYajmQ==",
+ "dependencies": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^5.0.0",
+ "unist-util-visit-parents": "^5.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/unist-util-visit-parents": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-4.1.1.tgz",
+ "integrity": "sha512-1xAFJXAKpnnJl8G7K5KgU7FY55y3GcLIXqkzUj5QF/QVP7biUm0K0O2oqVkYsdjzJKifYeWn9+o6piAK2hGSHw==",
+ "dev": true,
+ "dependencies": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^5.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/unist-util-visit-parents/node_modules/unist-util-is": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.1.1.tgz",
+ "integrity": "sha512-F5CZ68eYzuSvJjGhCLPL3cYx45IxkqXSetCcRgUXtbcm50X2L9oOWQlfUfDdAf+6Pd27YDblBfdtmsThXmwpbQ==",
+ "dev": true,
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/unist-util-visit/node_modules/unist-util-is": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.1.1.tgz",
+ "integrity": "sha512-F5CZ68eYzuSvJjGhCLPL3cYx45IxkqXSetCcRgUXtbcm50X2L9oOWQlfUfDdAf+6Pd27YDblBfdtmsThXmwpbQ==",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/unist-util-visit/node_modules/unist-util-visit-parents": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.0.tgz",
+ "integrity": "sha512-y+QVLcY5eR/YVpqDsLf/xh9R3Q2Y4HxkZTp7ViLDU6WtJCEcPmRzW1gpdWDCDIqIlhuPDXOgttqPlykrHYDekg==",
+ "dependencies": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^5.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/universalify": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+ "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+ "dev": true,
+ "engines": {
+ "node": ">= 10.0.0"
+ }
+ },
+ "node_modules/unpipe": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
+ "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/unset-value": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz",
+ "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=",
+ "dev": true,
+ "dependencies": {
+ "has-value": "^0.3.1",
+ "isobject": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/unset-value/node_modules/has-value": {
+ "version": "0.3.1",
+ "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz",
+ "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=",
+ "dev": true,
+ "dependencies": {
+ "get-value": "^2.0.3",
+ "has-values": "^0.1.4",
+ "isobject": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/unset-value/node_modules/has-value/node_modules/isobject": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz",
+ "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=",
+ "dev": true,
+ "dependencies": {
+ "isarray": "1.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/unset-value/node_modules/has-values": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz",
+ "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/unset-value/node_modules/isarray": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
+ "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
+ "dev": true
+ },
+ "node_modules/upath": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz",
+ "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==",
+ "dev": true,
+ "optional": true,
+ "engines": {
+ "node": ">=4",
+ "yarn": "*"
+ }
+ },
+ "node_modules/uri-js": {
+ "version": "4.4.1",
+ "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
+ "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
+ "dev": true,
+ "dependencies": {
+ "punycode": "^2.1.0"
+ }
+ },
+ "node_modules/urix": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz",
+ "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=",
+ "deprecated": "Please see https://github.com/lydell/urix#deprecated",
+ "dev": true
+ },
+ "node_modules/url": {
+ "version": "0.11.0",
+ "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz",
+ "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=",
+ "dev": true,
+ "dependencies": {
+ "punycode": "1.3.2",
+ "querystring": "0.2.0"
+ }
+ },
+ "node_modules/url-loader": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/url-loader/-/url-loader-4.1.1.tgz",
+ "integrity": "sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==",
+ "dev": true,
+ "dependencies": {
+ "loader-utils": "^2.0.0",
+ "mime-types": "^2.1.27",
+ "schema-utils": "^3.0.0"
+ },
+ "engines": {
+ "node": ">= 10.13.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ },
+ "peerDependencies": {
+ "file-loader": "*",
+ "webpack": "^4.0.0 || ^5.0.0"
+ },
+ "peerDependenciesMeta": {
+ "file-loader": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/url/node_modules/punycode": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz",
+ "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=",
+ "dev": true
+ },
+ "node_modules/use": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz",
+ "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/use-composed-ref": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/use-composed-ref/-/use-composed-ref-1.2.1.tgz",
+ "integrity": "sha512-6+X1FLlIcjvFMAeAD/hcxDT8tmyrWnbSPMU0EnxQuDLIxokuFzWliXBiYZuGIx+mrAMLBw0WFfCkaPw8ebzAhw==",
+ "dev": true,
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0"
+ }
+ },
+ "node_modules/use-isomorphic-layout-effect": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.1.1.tgz",
+ "integrity": "sha512-L7Evj8FGcwo/wpbv/qvSfrkHFtOpCzvM5yl2KVyDJoylVuSvzphiiasmjgQPttIGBAy2WKiBNR98q8w7PiNgKQ==",
+ "dev": true,
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/use-latest": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/use-latest/-/use-latest-1.2.0.tgz",
+ "integrity": "sha512-d2TEuG6nSLKQLAfW3By8mKr8HurOlTkul0sOpxbClIv4SQ4iOd7BYr7VIzdbktUCnv7dua/60xzd8igMU6jmyw==",
+ "dev": true,
+ "dependencies": {
+ "use-isomorphic-layout-effect": "^1.0.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/util": {
+ "version": "0.11.1",
+ "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz",
+ "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==",
+ "dev": true,
+ "dependencies": {
+ "inherits": "2.0.3"
+ }
+ },
+ "node_modules/util-deprecate": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
+ "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8="
+ },
+ "node_modules/util.promisify": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz",
+ "integrity": "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==",
+ "dev": true,
+ "dependencies": {
+ "define-properties": "^1.1.2",
+ "object.getownpropertydescriptors": "^2.0.3"
+ }
+ },
+ "node_modules/util/node_modules/inherits": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
+ "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=",
+ "dev": true
+ },
+ "node_modules/utila": {
+ "version": "0.4.0",
+ "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz",
+ "integrity": "sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=",
+ "dev": true
+ },
+ "node_modules/utils-merge": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
+ "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.4.0"
+ }
+ },
+ "node_modules/uuid": {
+ "version": "3.4.0",
+ "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
+ "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==",
+ "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.",
+ "dev": true,
+ "bin": {
+ "uuid": "bin/uuid"
+ }
+ },
+ "node_modules/uuid-browser": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/uuid-browser/-/uuid-browser-3.1.0.tgz",
+ "integrity": "sha1-DwWkCu90+eWVHiDvv0SxGHHlZBA=",
+ "dev": true
+ },
+ "node_modules/uvu": {
+ "version": "0.5.3",
+ "resolved": "https://registry.npmjs.org/uvu/-/uvu-0.5.3.tgz",
+ "integrity": "sha512-brFwqA3FXzilmtnIyJ+CxdkInkY/i4ErvP7uV0DnUVxQcQ55reuHphorpF+tZoVHK2MniZ/VJzI7zJQoc9T9Yw==",
+ "dev": true,
+ "dependencies": {
+ "dequal": "^2.0.0",
+ "diff": "^5.0.0",
+ "kleur": "^4.0.3",
+ "sade": "^1.7.3"
+ },
+ "bin": {
+ "uvu": "bin.js"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/uvu/node_modules/kleur": {
+ "version": "4.1.4",
+ "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.4.tgz",
+ "integrity": "sha512-8QADVssbrFjivHWQU7KkMgptGTl6WAcSdlbBPY4uNF+mWr6DGcKrvY2w4FQJoXch7+fKMjj0dRrL75vk3k23OA==",
+ "dev": true,
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/v8-to-istanbul": {
+ "version": "8.1.0",
+ "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.0.tgz",
+ "integrity": "sha512-/PRhfd8aTNp9Ggr62HPzXg2XasNFGy5PBt0Rp04du7/8GNNSgxFL6WBTkgMKSL9bFjH+8kKEG3f37FmxiTqUUA==",
+ "dev": true,
+ "dependencies": {
+ "@types/istanbul-lib-coverage": "^2.0.1",
+ "convert-source-map": "^1.6.0",
+ "source-map": "^0.7.3"
+ },
+ "engines": {
+ "node": ">=10.12.0"
+ }
+ },
+ "node_modules/v8-to-istanbul/node_modules/source-map": {
+ "version": "0.7.3",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz",
+ "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==",
+ "dev": true,
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/validate-npm-package-license": {
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz",
+ "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==",
+ "dev": true,
+ "dependencies": {
+ "spdx-correct": "^3.0.0",
+ "spdx-expression-parse": "^3.0.0"
+ }
+ },
+ "node_modules/vary": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
+ "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/vfile": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/vfile/-/vfile-4.2.1.tgz",
+ "integrity": "sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==",
+ "dev": true,
+ "dependencies": {
+ "@types/unist": "^2.0.0",
+ "is-buffer": "^2.0.0",
+ "unist-util-stringify-position": "^2.0.0",
+ "vfile-message": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/vfile-location": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-3.2.0.tgz",
+ "integrity": "sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA==",
+ "dev": true,
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/vfile-message": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-2.0.4.tgz",
+ "integrity": "sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==",
+ "dev": true,
+ "dependencies": {
+ "@types/unist": "^2.0.0",
+ "unist-util-stringify-position": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/vfile-message/node_modules/unist-util-stringify-position": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz",
+ "integrity": "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==",
+ "dev": true,
+ "dependencies": {
+ "@types/unist": "^2.0.2"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/vfile/node_modules/unist-util-stringify-position": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz",
+ "integrity": "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==",
+ "dev": true,
+ "dependencies": {
+ "@types/unist": "^2.0.2"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/vm-browserify": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz",
+ "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==",
+ "dev": true
+ },
+ "node_modules/w3c-hr-time": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz",
+ "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==",
+ "dev": true,
+ "dependencies": {
+ "browser-process-hrtime": "^1.0.0"
+ }
+ },
+ "node_modules/w3c-xmlserializer": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz",
+ "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==",
+ "dev": true,
+ "dependencies": {
+ "xml-name-validator": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/walker": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz",
+ "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==",
+ "dev": true,
+ "dependencies": {
+ "makeerror": "1.0.12"
+ }
+ },
+ "node_modules/warning": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz",
+ "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==",
+ "dev": true,
+ "dependencies": {
+ "loose-envify": "^1.0.0"
+ }
+ },
+ "node_modules/watchpack": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.3.1.tgz",
+ "integrity": "sha512-x0t0JuydIo8qCNctdDrn1OzH/qDzk2+rdCOC3YzumZ42fiMqmQ7T3xQurykYMhYfHaPHTp4ZxAx2NfUo1K6QaA==",
+ "dev": true,
+ "dependencies": {
+ "glob-to-regexp": "^0.4.1",
+ "graceful-fs": "^4.1.2"
+ },
+ "engines": {
+ "node": ">=10.13.0"
+ }
+ },
+ "node_modules/watchpack-chokidar2": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz",
+ "integrity": "sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "chokidar": "^2.1.8"
+ }
+ },
+ "node_modules/watchpack-chokidar2/node_modules/anymatch": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz",
+ "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "micromatch": "^3.1.4",
+ "normalize-path": "^2.1.1"
+ }
+ },
+ "node_modules/watchpack-chokidar2/node_modules/anymatch/node_modules/normalize-path": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz",
+ "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "remove-trailing-separator": "^1.0.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/watchpack-chokidar2/node_modules/binary-extensions": {
+ "version": "1.13.1",
+ "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz",
+ "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==",
+ "dev": true,
+ "optional": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/watchpack-chokidar2/node_modules/braces": {
+ "version": "2.3.2",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
+ "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "arr-flatten": "^1.1.0",
+ "array-unique": "^0.3.2",
+ "extend-shallow": "^2.0.1",
+ "fill-range": "^4.0.0",
+ "isobject": "^3.0.1",
+ "repeat-element": "^1.1.2",
+ "snapdragon": "^0.8.1",
+ "snapdragon-node": "^2.0.1",
+ "split-string": "^3.0.2",
+ "to-regex": "^3.0.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/watchpack-chokidar2/node_modules/braces/node_modules/extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "is-extendable": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/watchpack-chokidar2/node_modules/chokidar": {
+ "version": "2.1.8",
+ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz",
+ "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==",
+ "deprecated": "Chokidar 2 will break on node v14+. Upgrade to chokidar 3 with 15x less dependencies.",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "anymatch": "^2.0.0",
+ "async-each": "^1.0.1",
+ "braces": "^2.3.2",
+ "glob-parent": "^3.1.0",
+ "inherits": "^2.0.3",
+ "is-binary-path": "^1.0.0",
+ "is-glob": "^4.0.0",
+ "normalize-path": "^3.0.0",
+ "path-is-absolute": "^1.0.0",
+ "readdirp": "^2.2.1",
+ "upath": "^1.1.1"
+ },
+ "optionalDependencies": {
+ "fsevents": "^1.2.7"
+ }
+ },
+ "node_modules/watchpack-chokidar2/node_modules/fill-range": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz",
+ "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "extend-shallow": "^2.0.1",
+ "is-number": "^3.0.0",
+ "repeat-string": "^1.6.1",
+ "to-regex-range": "^2.1.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/watchpack-chokidar2/node_modules/fill-range/node_modules/extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "is-extendable": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/watchpack-chokidar2/node_modules/fsevents": {
+ "version": "1.2.13",
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz",
+ "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==",
+ "deprecated": "fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2.",
+ "dev": true,
+ "hasInstallScript": true,
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "dependencies": {
+ "bindings": "^1.5.0",
+ "nan": "^2.12.1"
+ },
+ "engines": {
+ "node": ">= 4.0"
+ }
+ },
+ "node_modules/watchpack-chokidar2/node_modules/glob-parent": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz",
+ "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "is-glob": "^3.1.0",
+ "path-dirname": "^1.0.0"
+ }
+ },
+ "node_modules/watchpack-chokidar2/node_modules/glob-parent/node_modules/is-glob": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz",
+ "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "is-extglob": "^2.1.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/watchpack-chokidar2/node_modules/is-binary-path": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz",
+ "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "binary-extensions": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/watchpack-chokidar2/node_modules/is-buffer": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
+ "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==",
+ "dev": true,
+ "optional": true
+ },
+ "node_modules/watchpack-chokidar2/node_modules/is-extendable": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+ "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
+ "dev": true,
+ "optional": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/watchpack-chokidar2/node_modules/is-number": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz",
+ "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "kind-of": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/watchpack-chokidar2/node_modules/is-number/node_modules/kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "is-buffer": "^1.1.5"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/watchpack-chokidar2/node_modules/micromatch": {
+ "version": "3.1.10",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
+ "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "arr-diff": "^4.0.0",
+ "array-unique": "^0.3.2",
+ "braces": "^2.3.1",
+ "define-property": "^2.0.2",
+ "extend-shallow": "^3.0.2",
+ "extglob": "^2.0.4",
+ "fragment-cache": "^0.2.1",
+ "kind-of": "^6.0.2",
+ "nanomatch": "^1.2.9",
+ "object.pick": "^1.3.0",
+ "regex-not": "^1.0.0",
+ "snapdragon": "^0.8.1",
+ "to-regex": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/watchpack-chokidar2/node_modules/readdirp": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz",
+ "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "graceful-fs": "^4.1.11",
+ "micromatch": "^3.1.10",
+ "readable-stream": "^2.0.2"
+ },
+ "engines": {
+ "node": ">=0.10"
+ }
+ },
+ "node_modules/watchpack-chokidar2/node_modules/to-regex-range": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz",
+ "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "is-number": "^3.0.0",
+ "repeat-string": "^1.6.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/web-namespaces": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/web-namespaces/-/web-namespaces-1.1.4.tgz",
+ "integrity": "sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw==",
+ "dev": true,
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/webidl-conversions": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz",
+ "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==",
+ "dev": true,
+ "engines": {
+ "node": ">=10.4"
+ }
+ },
+ "node_modules/webpack": {
+ "version": "4.46.0",
+ "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.46.0.tgz",
+ "integrity": "sha512-6jJuJjg8znb/xRItk7bkT0+Q7AHCYjjFnvKIWQPkNIOyRqoCGvkOs0ipeQzrqz4l5FtN5ZI/ukEHroeX/o1/5Q==",
+ "dev": true,
+ "dependencies": {
+ "@webassemblyjs/ast": "1.9.0",
+ "@webassemblyjs/helper-module-context": "1.9.0",
+ "@webassemblyjs/wasm-edit": "1.9.0",
+ "@webassemblyjs/wasm-parser": "1.9.0",
+ "acorn": "^6.4.1",
+ "ajv": "^6.10.2",
+ "ajv-keywords": "^3.4.1",
+ "chrome-trace-event": "^1.0.2",
+ "enhanced-resolve": "^4.5.0",
+ "eslint-scope": "^4.0.3",
+ "json-parse-better-errors": "^1.0.2",
+ "loader-runner": "^2.4.0",
+ "loader-utils": "^1.2.3",
+ "memory-fs": "^0.4.1",
+ "micromatch": "^3.1.10",
+ "mkdirp": "^0.5.3",
+ "neo-async": "^2.6.1",
+ "node-libs-browser": "^2.2.1",
+ "schema-utils": "^1.0.0",
+ "tapable": "^1.1.3",
+ "terser-webpack-plugin": "^1.4.3",
+ "watchpack": "^1.7.4",
+ "webpack-sources": "^1.4.1"
+ },
+ "bin": {
+ "webpack": "bin/webpack.js"
+ },
+ "engines": {
+ "node": ">=6.11.5"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ },
+ "peerDependenciesMeta": {
+ "webpack-cli": {
+ "optional": true
+ },
+ "webpack-command": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/webpack-dev-middleware": {
+ "version": "3.7.3",
+ "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz",
+ "integrity": "sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==",
+ "dev": true,
+ "dependencies": {
+ "memory-fs": "^0.4.1",
+ "mime": "^2.4.4",
+ "mkdirp": "^0.5.1",
+ "range-parser": "^1.2.1",
+ "webpack-log": "^2.0.0"
+ },
+ "engines": {
+ "node": ">= 6"
+ },
+ "peerDependencies": {
+ "webpack": "^4.0.0 || ^5.0.0"
+ }
+ },
+ "node_modules/webpack-dev-middleware/node_modules/mime": {
+ "version": "2.6.0",
+ "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz",
+ "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==",
+ "dev": true,
+ "bin": {
+ "mime": "cli.js"
+ },
+ "engines": {
+ "node": ">=4.0.0"
+ }
+ },
+ "node_modules/webpack-dev-middleware/node_modules/mkdirp": {
+ "version": "0.5.5",
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz",
+ "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==",
+ "dev": true,
+ "dependencies": {
+ "minimist": "^1.2.5"
+ },
+ "bin": {
+ "mkdirp": "bin/cmd.js"
+ }
+ },
+ "node_modules/webpack-filter-warnings-plugin": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/webpack-filter-warnings-plugin/-/webpack-filter-warnings-plugin-1.2.1.tgz",
+ "integrity": "sha512-Ez6ytc9IseDMLPo0qCuNNYzgtUl8NovOqjIq4uAU8LTD4uoa1w1KpZyyzFtLTEMZpkkOkLfL9eN+KGYdk1Qtwg==",
+ "dev": true,
+ "engines": {
+ "node": ">= 4.3 < 5.0.0 || >= 5.10"
+ },
+ "peerDependencies": {
+ "webpack": "^2.0.0 || ^3.0.0 || ^4.0.0"
+ }
+ },
+ "node_modules/webpack-hot-middleware": {
+ "version": "2.25.1",
+ "resolved": "https://registry.npmjs.org/webpack-hot-middleware/-/webpack-hot-middleware-2.25.1.tgz",
+ "integrity": "sha512-Koh0KyU/RPYwel/khxbsDz9ibDivmUbrRuKSSQvW42KSDdO4w23WI3SkHpSUKHE76LrFnnM/L7JCrpBwu8AXYw==",
+ "dev": true,
+ "dependencies": {
+ "ansi-html-community": "0.0.8",
+ "html-entities": "^2.1.0",
+ "querystring": "^0.2.0",
+ "strip-ansi": "^6.0.0"
+ }
+ },
+ "node_modules/webpack-log": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz",
+ "integrity": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==",
+ "dev": true,
+ "dependencies": {
+ "ansi-colors": "^3.0.0",
+ "uuid": "^3.3.2"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/webpack-sources": {
+ "version": "1.4.3",
+ "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz",
+ "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==",
+ "dev": true,
+ "dependencies": {
+ "source-list-map": "^2.0.0",
+ "source-map": "~0.6.1"
+ }
+ },
+ "node_modules/webpack-sources/node_modules/source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/webpack-virtual-modules": {
+ "version": "0.2.2",
+ "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.2.2.tgz",
+ "integrity": "sha512-kDUmfm3BZrei0y+1NTHJInejzxfhtU8eDj2M7OKb2IWrPFAeO1SOH2KuQ68MSZu9IGEHcxbkKKR1v18FrUSOmA==",
+ "dev": true,
+ "dependencies": {
+ "debug": "^3.0.0"
+ }
+ },
+ "node_modules/webpack-virtual-modules/node_modules/debug": {
+ "version": "3.2.7",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
+ "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
+ "dev": true,
+ "dependencies": {
+ "ms": "^2.1.1"
+ }
+ },
+ "node_modules/webpack/node_modules/acorn": {
+ "version": "6.4.2",
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz",
+ "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==",
+ "dev": true,
+ "bin": {
+ "acorn": "bin/acorn"
+ },
+ "engines": {
+ "node": ">=0.4.0"
+ }
+ },
+ "node_modules/webpack/node_modules/braces": {
+ "version": "2.3.2",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
+ "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==",
+ "dev": true,
+ "dependencies": {
+ "arr-flatten": "^1.1.0",
+ "array-unique": "^0.3.2",
+ "extend-shallow": "^2.0.1",
+ "fill-range": "^4.0.0",
+ "isobject": "^3.0.1",
+ "repeat-element": "^1.1.2",
+ "snapdragon": "^0.8.1",
+ "snapdragon-node": "^2.0.1",
+ "split-string": "^3.0.2",
+ "to-regex": "^3.0.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/webpack/node_modules/braces/node_modules/extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+ "dev": true,
+ "dependencies": {
+ "is-extendable": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/webpack/node_modules/cacache": {
+ "version": "12.0.4",
+ "resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.4.tgz",
+ "integrity": "sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==",
+ "dev": true,
+ "dependencies": {
+ "bluebird": "^3.5.5",
+ "chownr": "^1.1.1",
+ "figgy-pudding": "^3.5.1",
+ "glob": "^7.1.4",
+ "graceful-fs": "^4.1.15",
+ "infer-owner": "^1.0.3",
+ "lru-cache": "^5.1.1",
+ "mississippi": "^3.0.0",
+ "mkdirp": "^0.5.1",
+ "move-concurrently": "^1.0.1",
+ "promise-inflight": "^1.0.1",
+ "rimraf": "^2.6.3",
+ "ssri": "^6.0.1",
+ "unique-filename": "^1.1.1",
+ "y18n": "^4.0.0"
+ }
+ },
+ "node_modules/webpack/node_modules/chownr": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz",
+ "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==",
+ "dev": true
+ },
+ "node_modules/webpack/node_modules/fill-range": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz",
+ "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=",
+ "dev": true,
+ "dependencies": {
+ "extend-shallow": "^2.0.1",
+ "is-number": "^3.0.0",
+ "repeat-string": "^1.6.1",
+ "to-regex-range": "^2.1.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/webpack/node_modules/fill-range/node_modules/extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+ "dev": true,
+ "dependencies": {
+ "is-extendable": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/webpack/node_modules/is-buffer": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
+ "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==",
+ "dev": true
+ },
+ "node_modules/webpack/node_modules/is-extendable": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+ "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/webpack/node_modules/is-number": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz",
+ "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=",
+ "dev": true,
+ "dependencies": {
+ "kind-of": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/webpack/node_modules/is-number/node_modules/kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "dependencies": {
+ "is-buffer": "^1.1.5"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/webpack/node_modules/is-wsl": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz",
+ "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=",
+ "dev": true,
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/webpack/node_modules/json5": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz",
+ "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==",
+ "dev": true,
+ "dependencies": {
+ "minimist": "^1.2.0"
+ },
+ "bin": {
+ "json5": "lib/cli.js"
+ }
+ },
+ "node_modules/webpack/node_modules/loader-utils": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz",
+ "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==",
+ "dev": true,
+ "dependencies": {
+ "big.js": "^5.2.2",
+ "emojis-list": "^3.0.0",
+ "json5": "^1.0.1"
+ },
+ "engines": {
+ "node": ">=4.0.0"
+ }
+ },
+ "node_modules/webpack/node_modules/lru-cache": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
+ "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
+ "dev": true,
+ "dependencies": {
+ "yallist": "^3.0.2"
+ }
+ },
+ "node_modules/webpack/node_modules/micromatch": {
+ "version": "3.1.10",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
+ "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
+ "dev": true,
+ "dependencies": {
+ "arr-diff": "^4.0.0",
+ "array-unique": "^0.3.2",
+ "braces": "^2.3.1",
+ "define-property": "^2.0.2",
+ "extend-shallow": "^3.0.2",
+ "extglob": "^2.0.4",
+ "fragment-cache": "^0.2.1",
+ "kind-of": "^6.0.2",
+ "nanomatch": "^1.2.9",
+ "object.pick": "^1.3.0",
+ "regex-not": "^1.0.0",
+ "snapdragon": "^0.8.1",
+ "to-regex": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/webpack/node_modules/mkdirp": {
+ "version": "0.5.5",
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz",
+ "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==",
+ "dev": true,
+ "dependencies": {
+ "minimist": "^1.2.5"
+ },
+ "bin": {
+ "mkdirp": "bin/cmd.js"
+ }
+ },
+ "node_modules/webpack/node_modules/rimraf": {
+ "version": "2.7.1",
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz",
+ "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==",
+ "dev": true,
+ "dependencies": {
+ "glob": "^7.1.3"
+ },
+ "bin": {
+ "rimraf": "bin.js"
+ }
+ },
+ "node_modules/webpack/node_modules/schema-utils": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz",
+ "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==",
+ "dev": true,
+ "dependencies": {
+ "ajv": "^6.1.0",
+ "ajv-errors": "^1.0.0",
+ "ajv-keywords": "^3.1.0"
+ },
+ "engines": {
+ "node": ">= 4"
+ }
+ },
+ "node_modules/webpack/node_modules/serialize-javascript": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz",
+ "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==",
+ "dev": true,
+ "dependencies": {
+ "randombytes": "^2.1.0"
+ }
+ },
+ "node_modules/webpack/node_modules/source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/webpack/node_modules/ssri": {
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.2.tgz",
+ "integrity": "sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q==",
+ "dev": true,
+ "dependencies": {
+ "figgy-pudding": "^3.5.1"
+ }
+ },
+ "node_modules/webpack/node_modules/terser-webpack-plugin": {
+ "version": "1.4.5",
+ "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz",
+ "integrity": "sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==",
+ "dev": true,
+ "dependencies": {
+ "cacache": "^12.0.2",
+ "find-cache-dir": "^2.1.0",
+ "is-wsl": "^1.1.0",
+ "schema-utils": "^1.0.0",
+ "serialize-javascript": "^4.0.0",
+ "source-map": "^0.6.1",
+ "terser": "^4.1.2",
+ "webpack-sources": "^1.4.0",
+ "worker-farm": "^1.7.0"
+ },
+ "engines": {
+ "node": ">= 6.9.0"
+ },
+ "peerDependencies": {
+ "webpack": "^4.0.0"
+ }
+ },
+ "node_modules/webpack/node_modules/to-regex-range": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz",
+ "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=",
+ "dev": true,
+ "dependencies": {
+ "is-number": "^3.0.0",
+ "repeat-string": "^1.6.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/webpack/node_modules/watchpack": {
+ "version": "1.7.5",
+ "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.7.5.tgz",
+ "integrity": "sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==",
+ "dev": true,
+ "dependencies": {
+ "graceful-fs": "^4.1.2",
+ "neo-async": "^2.5.0"
+ },
+ "optionalDependencies": {
+ "chokidar": "^3.4.1",
+ "watchpack-chokidar2": "^2.0.1"
+ }
+ },
+ "node_modules/webpack/node_modules/y18n": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz",
+ "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==",
+ "dev": true
+ },
+ "node_modules/webpack/node_modules/yallist": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
+ "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
+ "dev": true
+ },
+ "node_modules/whatwg-encoding": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz",
+ "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==",
+ "dev": true,
+ "dependencies": {
+ "iconv-lite": "0.4.24"
+ }
+ },
+ "node_modules/whatwg-mimetype": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz",
+ "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==",
+ "dev": true
+ },
+ "node_modules/whatwg-url": {
+ "version": "8.7.0",
+ "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz",
+ "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==",
+ "dev": true,
+ "dependencies": {
+ "lodash": "^4.7.0",
+ "tr46": "^2.1.0",
+ "webidl-conversions": "^6.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/which": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
+ "dev": true,
+ "dependencies": {
+ "isexe": "^2.0.0"
+ },
+ "bin": {
+ "node-which": "bin/node-which"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/which-boxed-primitive": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz",
+ "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==",
+ "dev": true,
+ "dependencies": {
+ "is-bigint": "^1.0.1",
+ "is-boolean-object": "^1.1.0",
+ "is-number-object": "^1.0.4",
+ "is-string": "^1.0.5",
+ "is-symbol": "^1.0.3"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/wide-align": {
+ "version": "1.1.5",
+ "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz",
+ "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==",
+ "dev": true,
+ "dependencies": {
+ "string-width": "^1.0.2 || 2 || 3 || 4"
+ }
+ },
+ "node_modules/widest-line": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz",
+ "integrity": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==",
+ "dev": true,
+ "dependencies": {
+ "string-width": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/word-wrap": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz",
+ "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/wordwrap": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz",
+ "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=",
+ "dev": true
+ },
+ "node_modules/worker-farm": {
+ "version": "1.7.0",
+ "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz",
+ "integrity": "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==",
+ "dev": true,
+ "dependencies": {
+ "errno": "~0.1.7"
+ }
+ },
+ "node_modules/worker-rpc": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/worker-rpc/-/worker-rpc-0.1.1.tgz",
+ "integrity": "sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg==",
+ "dev": true,
+ "dependencies": {
+ "microevent.ts": "~0.1.1"
+ }
+ },
+ "node_modules/wrap-ansi": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
+ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
+ "dev": true,
+ "dependencies": {
+ "ansi-styles": "^4.0.0",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
+ }
+ },
+ "node_modules/wrap-ansi/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/wrappy": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
+ "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=",
+ "dev": true
+ },
+ "node_modules/write-file-atomic": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz",
+ "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==",
+ "dev": true,
+ "dependencies": {
+ "imurmurhash": "^0.1.4",
+ "is-typedarray": "^1.0.0",
+ "signal-exit": "^3.0.2",
+ "typedarray-to-buffer": "^3.1.5"
+ }
+ },
+ "node_modules/ws": {
+ "version": "7.5.6",
+ "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.6.tgz",
+ "integrity": "sha512-6GLgCqo2cy2A2rjCNFlxQS6ZljG/coZfZXclldI8FB/1G3CCI36Zd8xy2HrFVACi8tfk5XrgLQEk+P0Tnz9UcA==",
+ "dev": true,
+ "engines": {
+ "node": ">=8.3.0"
+ },
+ "peerDependencies": {
+ "bufferutil": "^4.0.1",
+ "utf-8-validate": "^5.0.2"
+ },
+ "peerDependenciesMeta": {
+ "bufferutil": {
+ "optional": true
+ },
+ "utf-8-validate": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/xml": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/xml/-/xml-1.0.1.tgz",
+ "integrity": "sha1-eLpyAgApxbyHuKgaPPzXS0ovweU="
+ },
+ "node_modules/xml-js": {
+ "version": "1.6.11",
+ "resolved": "https://registry.npmjs.org/xml-js/-/xml-js-1.6.11.tgz",
+ "integrity": "sha512-7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g==",
+ "dependencies": {
+ "sax": "^1.2.4"
+ },
+ "bin": {
+ "xml-js": "bin/cli.js"
+ }
+ },
+ "node_modules/xml-name-validator": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz",
+ "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==",
+ "dev": true
+ },
+ "node_modules/xmlchars": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz",
+ "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==",
+ "dev": true
+ },
+ "node_modules/xtend": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz",
+ "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.4"
+ }
+ },
+ "node_modules/y18n": {
+ "version": "5.0.8",
+ "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
+ "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
+ "dev": true,
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/yallist": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
+ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
+ "dev": true
+ },
+ "node_modules/yaml": {
+ "version": "1.10.2",
+ "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz",
+ "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==",
+ "dev": true,
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/yargs": {
+ "version": "16.2.0",
+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz",
+ "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==",
+ "dev": true,
+ "dependencies": {
+ "cliui": "^7.0.2",
+ "escalade": "^3.1.1",
+ "get-caller-file": "^2.0.5",
+ "require-directory": "^2.1.1",
+ "string-width": "^4.2.0",
+ "y18n": "^5.0.5",
+ "yargs-parser": "^20.2.2"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/yargs-parser": {
+ "version": "20.2.9",
+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz",
+ "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==",
+ "dev": true,
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/yocto-queue": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
+ "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
+ "dev": true,
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/zwitch": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-1.0.5.tgz",
+ "integrity": "sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==",
+ "dev": true,
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ }
+ },
+ "dependencies": {
+ "@babel/code-frame": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz",
+ "integrity": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==",
+ "dev": true,
+ "requires": {
+ "@babel/highlight": "^7.16.7"
+ }
+ },
+ "@babel/compat-data": {
+ "version": "7.16.4",
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.16.4.tgz",
+ "integrity": "sha512-1o/jo7D+kC9ZjHX5v+EHrdjl3PhxMrLSOTGsOdHJ+KL8HCaEK6ehrVL2RS6oHDZp+L7xLirLrPmQtEng769J/Q==",
+ "dev": true
+ },
+ "@babel/core": {
+ "version": "7.15.5",
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.15.5.tgz",
+ "integrity": "sha512-pYgXxiwAgQpgM1bNkZsDEq85f0ggXMA5L7c+o3tskGMh2BunCI9QUwB9Z4jpvXUOuMdyGKiGKQiRe11VS6Jzvg==",
+ "dev": true,
+ "requires": {
+ "@babel/code-frame": "^7.14.5",
+ "@babel/generator": "^7.15.4",
+ "@babel/helper-compilation-targets": "^7.15.4",
+ "@babel/helper-module-transforms": "^7.15.4",
+ "@babel/helpers": "^7.15.4",
+ "@babel/parser": "^7.15.5",
+ "@babel/template": "^7.15.4",
+ "@babel/traverse": "^7.15.4",
+ "@babel/types": "^7.15.4",
+ "convert-source-map": "^1.7.0",
+ "debug": "^4.1.0",
+ "gensync": "^1.0.0-beta.2",
+ "json5": "^2.1.2",
+ "semver": "^6.3.0",
+ "source-map": "^0.5.0"
+ }
+ },
+ "@babel/generator": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.16.7.tgz",
+ "integrity": "sha512-/ST3Sg8MLGY5HVYmrjOgL60ENux/HfO/CsUh7y4MalThufhE/Ff/6EibFDHi4jiDCaWfJKoqbE6oTh21c5hrRg==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.16.7",
+ "jsesc": "^2.5.1",
+ "source-map": "^0.5.0"
+ }
+ },
+ "@babel/helper-annotate-as-pure": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz",
+ "integrity": "sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.16.7"
+ }
+ },
+ "@babel/helper-builder-binary-assignment-operator-visitor": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.16.7.tgz",
+ "integrity": "sha512-C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-explode-assignable-expression": "^7.16.7",
+ "@babel/types": "^7.16.7"
+ }
+ },
+ "@babel/helper-compilation-targets": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.7.tgz",
+ "integrity": "sha512-mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA==",
+ "dev": true,
+ "requires": {
+ "@babel/compat-data": "^7.16.4",
+ "@babel/helper-validator-option": "^7.16.7",
+ "browserslist": "^4.17.5",
+ "semver": "^6.3.0"
+ }
+ },
+ "@babel/helper-create-class-features-plugin": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.16.7.tgz",
+ "integrity": "sha512-kIFozAvVfK05DM4EVQYKK+zteWvY85BFdGBRQBytRyY3y+6PX0DkDOn/CZ3lEuczCfrCxEzwt0YtP/87YPTWSw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-annotate-as-pure": "^7.16.7",
+ "@babel/helper-environment-visitor": "^7.16.7",
+ "@babel/helper-function-name": "^7.16.7",
+ "@babel/helper-member-expression-to-functions": "^7.16.7",
+ "@babel/helper-optimise-call-expression": "^7.16.7",
+ "@babel/helper-replace-supers": "^7.16.7",
+ "@babel/helper-split-export-declaration": "^7.16.7"
+ }
+ },
+ "@babel/helper-create-regexp-features-plugin": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.16.7.tgz",
+ "integrity": "sha512-fk5A6ymfp+O5+p2yCkXAu5Kyj6v0xh0RBeNcAkYUMDvvAAoxvSKXn+Jb37t/yWFiQVDFK1ELpUTD8/aLhCPu+g==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-annotate-as-pure": "^7.16.7",
+ "regexpu-core": "^4.7.1"
+ }
+ },
+ "@babel/helper-define-polyfill-provider": {
+ "version": "0.2.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.2.4.tgz",
+ "integrity": "sha512-OrpPZ97s+aPi6h2n1OXzdhVis1SGSsMU2aMHgLcOKfsp4/v1NWpx3CWT3lBj5eeBq9cDkPkh+YCfdF7O12uNDQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-compilation-targets": "^7.13.0",
+ "@babel/helper-module-imports": "^7.12.13",
+ "@babel/helper-plugin-utils": "^7.13.0",
+ "@babel/traverse": "^7.13.0",
+ "debug": "^4.1.1",
+ "lodash.debounce": "^4.0.8",
+ "resolve": "^1.14.2",
+ "semver": "^6.1.2"
+ }
+ },
+ "@babel/helper-environment-visitor": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz",
+ "integrity": "sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.16.7"
+ }
+ },
+ "@babel/helper-explode-assignable-expression": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.16.7.tgz",
+ "integrity": "sha512-KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.16.7"
+ }
+ },
+ "@babel/helper-function-name": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.7.tgz",
+ "integrity": "sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-get-function-arity": "^7.16.7",
+ "@babel/template": "^7.16.7",
+ "@babel/types": "^7.16.7"
+ }
+ },
+ "@babel/helper-get-function-arity": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz",
+ "integrity": "sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.16.7"
+ }
+ },
+ "@babel/helper-hoist-variables": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz",
+ "integrity": "sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.16.7"
+ }
+ },
+ "@babel/helper-member-expression-to-functions": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.16.7.tgz",
+ "integrity": "sha512-VtJ/65tYiU/6AbMTDwyoXGPKHgTsfRarivm+YbB5uAzKUyuPjgZSgAFeG87FCigc7KNHu2Pegh1XIT3lXjvz3Q==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.16.7"
+ }
+ },
+ "@babel/helper-module-imports": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz",
+ "integrity": "sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.16.7"
+ }
+ },
+ "@babel/helper-module-transforms": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.16.7.tgz",
+ "integrity": "sha512-gaqtLDxJEFCeQbYp9aLAefjhkKdjKcdh6DB7jniIGU3Pz52WAmP268zK0VgPz9hUNkMSYeH976K2/Y6yPadpng==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-environment-visitor": "^7.16.7",
+ "@babel/helper-module-imports": "^7.16.7",
+ "@babel/helper-simple-access": "^7.16.7",
+ "@babel/helper-split-export-declaration": "^7.16.7",
+ "@babel/helper-validator-identifier": "^7.16.7",
+ "@babel/template": "^7.16.7",
+ "@babel/traverse": "^7.16.7",
+ "@babel/types": "^7.16.7"
+ }
+ },
+ "@babel/helper-optimise-call-expression": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.7.tgz",
+ "integrity": "sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.16.7"
+ }
+ },
+ "@babel/helper-plugin-utils": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz",
+ "integrity": "sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==",
+ "dev": true
+ },
+ "@babel/helper-remap-async-to-generator": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.7.tgz",
+ "integrity": "sha512-C3o117GnP/j/N2OWo+oepeWbFEKRfNaay+F1Eo5Mj3A1SRjyx+qaFhm23nlipub7Cjv2azdUUiDH+VlpdwUFRg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-annotate-as-pure": "^7.16.7",
+ "@babel/helper-wrap-function": "^7.16.7",
+ "@babel/types": "^7.16.7"
+ }
+ },
+ "@babel/helper-replace-supers": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.16.7.tgz",
+ "integrity": "sha512-y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-environment-visitor": "^7.16.7",
+ "@babel/helper-member-expression-to-functions": "^7.16.7",
+ "@babel/helper-optimise-call-expression": "^7.16.7",
+ "@babel/traverse": "^7.16.7",
+ "@babel/types": "^7.16.7"
+ }
+ },
+ "@babel/helper-simple-access": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.16.7.tgz",
+ "integrity": "sha512-ZIzHVyoeLMvXMN/vok/a4LWRy8G2v205mNP0XOuf9XRLyX5/u9CnVulUtDgUTama3lT+bf/UqucuZjqiGuTS1g==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.16.7"
+ }
+ },
+ "@babel/helper-skip-transparent-expression-wrappers": {
+ "version": "7.16.0",
+ "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.16.0.tgz",
+ "integrity": "sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.16.0"
+ }
+ },
+ "@babel/helper-split-export-declaration": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz",
+ "integrity": "sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.16.7"
+ }
+ },
+ "@babel/helper-validator-identifier": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz",
+ "integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==",
+ "dev": true
+ },
+ "@babel/helper-validator-option": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz",
+ "integrity": "sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==",
+ "dev": true
+ },
+ "@babel/helper-wrap-function": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.16.7.tgz",
+ "integrity": "sha512-7a9sABeVwcunnztZZ7WTgSw6jVYLzM1wua0Z4HIXm9S3/HC96WKQTkFgGEaj5W06SHHihPJ6Le6HzS5cGOQMNw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-function-name": "^7.16.7",
+ "@babel/template": "^7.16.7",
+ "@babel/traverse": "^7.16.7",
+ "@babel/types": "^7.16.7"
+ }
+ },
+ "@babel/helpers": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.16.7.tgz",
+ "integrity": "sha512-9ZDoqtfY7AuEOt3cxchfii6C7GDyyMBffktR5B2jvWv8u2+efwvpnVKXMWzNehqy68tKgAfSwfdw/lWpthS2bw==",
+ "dev": true,
+ "requires": {
+ "@babel/template": "^7.16.7",
+ "@babel/traverse": "^7.16.7",
+ "@babel/types": "^7.16.7"
+ }
+ },
+ "@babel/highlight": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.7.tgz",
+ "integrity": "sha512-aKpPMfLvGO3Q97V0qhw/V2SWNWlwfJknuwAunU7wZLSfrM4xTBvg7E5opUVi1kJTBKihE38CPg4nBiqX83PWYw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-validator-identifier": "^7.16.7",
+ "chalk": "^2.0.0",
+ "js-tokens": "^4.0.0"
+ }
+ },
+ "@babel/parser": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.16.7.tgz",
+ "integrity": "sha512-sR4eaSrnM7BV7QPzGfEX5paG/6wrZM3I0HDzfIAK06ESvo9oy3xBuVBxE3MbQaKNhvg8g/ixjMWo2CGpzpHsDA==",
+ "dev": true
+ },
+ "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7.tgz",
+ "integrity": "sha512-di8vUHRdf+4aJ7ltXhaDbPoszdkh59AQtJM5soLsuHpQJdFQZOA4uGj0V2u/CZ8bJ/u8ULDL5yq6FO/bCXnKHw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0",
+ "@babel/plugin-proposal-optional-chaining": "^7.16.7"
+ }
+ },
+ "@babel/plugin-proposal-async-generator-functions": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.16.7.tgz",
+ "integrity": "sha512-TTXBT3A5c11eqRzaC6beO6rlFT3Mo9C2e8eB44tTr52ESXSK2CIc2fOp1ynpAwQA8HhBMho+WXhMHWlAe3xkpw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/helper-remap-async-to-generator": "^7.16.7",
+ "@babel/plugin-syntax-async-generators": "^7.8.4"
+ }
+ },
+ "@babel/plugin-proposal-class-properties": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.16.7.tgz",
+ "integrity": "sha512-IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-create-class-features-plugin": "^7.16.7",
+ "@babel/helper-plugin-utils": "^7.16.7"
+ }
+ },
+ "@babel/plugin-proposal-class-static-block": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.16.7.tgz",
+ "integrity": "sha512-dgqJJrcZoG/4CkMopzhPJjGxsIe9A8RlkQLnL/Vhhx8AA9ZuaRwGSlscSh42hazc7WSrya/IK7mTeoF0DP9tEw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-create-class-features-plugin": "^7.16.7",
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/plugin-syntax-class-static-block": "^7.14.5"
+ }
+ },
+ "@babel/plugin-proposal-decorators": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.16.7.tgz",
+ "integrity": "sha512-DoEpnuXK14XV9btI1k8tzNGCutMclpj4yru8aXKoHlVmbO1s+2A+g2+h4JhcjrxkFJqzbymnLG6j/niOf3iFXQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-create-class-features-plugin": "^7.16.7",
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/plugin-syntax-decorators": "^7.16.7"
+ }
+ },
+ "@babel/plugin-proposal-dynamic-import": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.16.7.tgz",
+ "integrity": "sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/plugin-syntax-dynamic-import": "^7.8.3"
+ }
+ },
+ "@babel/plugin-proposal-export-default-from": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.16.7.tgz",
+ "integrity": "sha512-+cENpW1rgIjExn+o5c8Jw/4BuH4eGKKYvkMB8/0ZxFQ9mC0t4z09VsPIwNg6waF69QYC81zxGeAsREGuqQoKeg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/plugin-syntax-export-default-from": "^7.16.7"
+ }
+ },
+ "@babel/plugin-proposal-export-namespace-from": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.16.7.tgz",
+ "integrity": "sha512-ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/plugin-syntax-export-namespace-from": "^7.8.3"
+ }
+ },
+ "@babel/plugin-proposal-json-strings": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.16.7.tgz",
+ "integrity": "sha512-lNZ3EEggsGY78JavgbHsK9u5P3pQaW7k4axlgFLYkMd7UBsiNahCITShLjNQschPyjtO6dADrL24757IdhBrsQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/plugin-syntax-json-strings": "^7.8.3"
+ }
+ },
+ "@babel/plugin-proposal-logical-assignment-operators": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.16.7.tgz",
+ "integrity": "sha512-K3XzyZJGQCr00+EtYtrDjmwX7o7PLK6U9bi1nCwkQioRFVUv6dJoxbQjtWVtP+bCPy82bONBKG8NPyQ4+i6yjg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4"
+ }
+ },
+ "@babel/plugin-proposal-nullish-coalescing-operator": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.16.7.tgz",
+ "integrity": "sha512-aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3"
+ }
+ },
+ "@babel/plugin-proposal-numeric-separator": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.16.7.tgz",
+ "integrity": "sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/plugin-syntax-numeric-separator": "^7.10.4"
+ }
+ },
+ "@babel/plugin-proposal-object-rest-spread": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.16.7.tgz",
+ "integrity": "sha512-3O0Y4+dw94HA86qSg9IHfyPktgR7q3gpNVAeiKQd+8jBKFaU5NQS1Yatgo4wY+UFNuLjvxcSmzcsHqrhgTyBUA==",
+ "dev": true,
+ "requires": {
+ "@babel/compat-data": "^7.16.4",
+ "@babel/helper-compilation-targets": "^7.16.7",
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/plugin-syntax-object-rest-spread": "^7.8.3",
+ "@babel/plugin-transform-parameters": "^7.16.7"
+ }
+ },
+ "@babel/plugin-proposal-optional-catch-binding": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.16.7.tgz",
+ "integrity": "sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/plugin-syntax-optional-catch-binding": "^7.8.3"
+ }
+ },
+ "@babel/plugin-proposal-optional-chaining": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.16.7.tgz",
+ "integrity": "sha512-eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0",
+ "@babel/plugin-syntax-optional-chaining": "^7.8.3"
+ }
+ },
+ "@babel/plugin-proposal-private-methods": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.7.tgz",
+ "integrity": "sha512-7twV3pzhrRxSwHeIvFE6coPgvo+exNDOiGUMg39o2LiLo1Y+4aKpfkcLGcg1UHonzorCt7SNXnoMyCnnIOA8Sw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-create-class-features-plugin": "^7.16.7",
+ "@babel/helper-plugin-utils": "^7.16.7"
+ }
+ },
+ "@babel/plugin-proposal-private-property-in-object": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.16.7.tgz",
+ "integrity": "sha512-rMQkjcOFbm+ufe3bTZLyOfsOUOxyvLXZJCTARhJr+8UMSoZmqTe1K1BgkFcrW37rAchWg57yI69ORxiWvUINuQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-annotate-as-pure": "^7.16.7",
+ "@babel/helper-create-class-features-plugin": "^7.16.7",
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/plugin-syntax-private-property-in-object": "^7.14.5"
+ }
+ },
+ "@babel/plugin-proposal-unicode-property-regex": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.16.7.tgz",
+ "integrity": "sha512-QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-create-regexp-features-plugin": "^7.16.7",
+ "@babel/helper-plugin-utils": "^7.16.7"
+ }
+ },
+ "@babel/plugin-syntax-async-generators": {
+ "version": "7.8.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz",
+ "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ }
+ },
+ "@babel/plugin-syntax-bigint": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz",
+ "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ }
+ },
+ "@babel/plugin-syntax-class-properties": {
+ "version": "7.12.13",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz",
+ "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.12.13"
+ }
+ },
+ "@babel/plugin-syntax-class-static-block": {
+ "version": "7.14.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz",
+ "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.14.5"
+ }
+ },
+ "@babel/plugin-syntax-decorators": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.16.7.tgz",
+ "integrity": "sha512-vQ+PxL+srA7g6Rx6I1e15m55gftknl2X8GCUW1JTlkTaXZLJOS0UcaY0eK9jYT7IYf4awn6qwyghVHLDz1WyMw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.16.7"
+ }
+ },
+ "@babel/plugin-syntax-dynamic-import": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz",
+ "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ }
+ },
+ "@babel/plugin-syntax-export-default-from": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.16.7.tgz",
+ "integrity": "sha512-4C3E4NsrLOgftKaTYTULhHsuQrGv3FHrBzOMDiS7UYKIpgGBkAdawg4h+EI8zPeK9M0fiIIh72hIwsI24K7MbA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.16.7"
+ }
+ },
+ "@babel/plugin-syntax-export-namespace-from": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz",
+ "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-syntax-flow": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.16.7.tgz",
+ "integrity": "sha512-UDo3YGQO0jH6ytzVwgSLv9i/CzMcUjbKenL67dTrAZPPv6GFAtDhe6jqnvmoKzC/7htNTohhos+onPtDMqJwaQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.16.7"
+ }
+ },
+ "@babel/plugin-syntax-import-meta": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz",
+ "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4"
+ }
+ },
+ "@babel/plugin-syntax-json-strings": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz",
+ "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ }
+ },
+ "@babel/plugin-syntax-jsx": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.16.7.tgz",
+ "integrity": "sha512-Esxmk7YjA8QysKeT3VhTXvF6y77f/a91SIs4pWb4H2eWGQkCKFgQaG6hdoEVZtGsrAcb2K5BW66XsOErD4WU3Q==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.16.7"
+ }
+ },
+ "@babel/plugin-syntax-logical-assignment-operators": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz",
+ "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4"
+ }
+ },
+ "@babel/plugin-syntax-nullish-coalescing-operator": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz",
+ "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ }
+ },
+ "@babel/plugin-syntax-numeric-separator": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz",
+ "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4"
+ }
+ },
+ "@babel/plugin-syntax-object-rest-spread": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz",
+ "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ }
+ },
+ "@babel/plugin-syntax-optional-catch-binding": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz",
+ "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ }
+ },
+ "@babel/plugin-syntax-optional-chaining": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz",
+ "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ }
+ },
+ "@babel/plugin-syntax-private-property-in-object": {
+ "version": "7.14.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz",
+ "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.14.5"
+ }
+ },
+ "@babel/plugin-syntax-top-level-await": {
+ "version": "7.14.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz",
+ "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.14.5"
+ }
+ },
+ "@babel/plugin-syntax-typescript": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.16.7.tgz",
+ "integrity": "sha512-YhUIJHHGkqPgEcMYkPCKTyGUdoGKWtopIycQyjJH8OjvRgOYsXsaKehLVPScKJWAULPxMa4N1vCe6szREFlZ7A==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.16.7"
+ }
+ },
+ "@babel/plugin-transform-arrow-functions": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.16.7.tgz",
+ "integrity": "sha512-9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.16.7"
+ }
+ },
+ "@babel/plugin-transform-async-to-generator": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.16.7.tgz",
+ "integrity": "sha512-pFEfjnK4DfXCfAlA5I98BYdDJD8NltMzx19gt6DAmfE+2lXRfPUoa0/5SUjT4+TDE1W/rcxU/1lgN55vpAjjdg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-module-imports": "^7.16.7",
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/helper-remap-async-to-generator": "^7.16.7"
+ }
+ },
+ "@babel/plugin-transform-block-scoped-functions": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.7.tgz",
+ "integrity": "sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.16.7"
+ }
+ },
+ "@babel/plugin-transform-block-scoping": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.16.7.tgz",
+ "integrity": "sha512-ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.16.7"
+ }
+ },
+ "@babel/plugin-transform-classes": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.16.7.tgz",
+ "integrity": "sha512-WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-annotate-as-pure": "^7.16.7",
+ "@babel/helper-environment-visitor": "^7.16.7",
+ "@babel/helper-function-name": "^7.16.7",
+ "@babel/helper-optimise-call-expression": "^7.16.7",
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/helper-replace-supers": "^7.16.7",
+ "@babel/helper-split-export-declaration": "^7.16.7",
+ "globals": "^11.1.0"
+ }
+ },
+ "@babel/plugin-transform-computed-properties": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.16.7.tgz",
+ "integrity": "sha512-gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.16.7"
+ }
+ },
+ "@babel/plugin-transform-destructuring": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.16.7.tgz",
+ "integrity": "sha512-VqAwhTHBnu5xBVDCvrvqJbtLUa++qZaWC0Fgr2mqokBlulZARGyIvZDoqbPlPaKImQ9dKAcCzbv+ul//uqu70A==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.16.7"
+ }
+ },
+ "@babel/plugin-transform-dotall-regex": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.16.7.tgz",
+ "integrity": "sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-create-regexp-features-plugin": "^7.16.7",
+ "@babel/helper-plugin-utils": "^7.16.7"
+ }
+ },
+ "@babel/plugin-transform-duplicate-keys": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.16.7.tgz",
+ "integrity": "sha512-03DvpbRfvWIXyK0/6QiR1KMTWeT6OcQ7tbhjrXyFS02kjuX/mu5Bvnh5SDSWHxyawit2g5aWhKwI86EE7GUnTw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.16.7"
+ }
+ },
+ "@babel/plugin-transform-exponentiation-operator": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.16.7.tgz",
+ "integrity": "sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-builder-binary-assignment-operator-visitor": "^7.16.7",
+ "@babel/helper-plugin-utils": "^7.16.7"
+ }
+ },
+ "@babel/plugin-transform-flow-strip-types": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.16.7.tgz",
+ "integrity": "sha512-mzmCq3cNsDpZZu9FADYYyfZJIOrSONmHcop2XEKPdBNMa4PDC4eEvcOvzZaCNcjKu72v0XQlA5y1g58aLRXdYg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/plugin-syntax-flow": "^7.16.7"
+ }
+ },
+ "@babel/plugin-transform-for-of": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.16.7.tgz",
+ "integrity": "sha512-/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.16.7"
+ }
+ },
+ "@babel/plugin-transform-function-name": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.7.tgz",
+ "integrity": "sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-compilation-targets": "^7.16.7",
+ "@babel/helper-function-name": "^7.16.7",
+ "@babel/helper-plugin-utils": "^7.16.7"
+ }
+ },
+ "@babel/plugin-transform-literals": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.16.7.tgz",
+ "integrity": "sha512-6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.16.7"
+ }
+ },
+ "@babel/plugin-transform-member-expression-literals": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.7.tgz",
+ "integrity": "sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.16.7"
+ }
+ },
+ "@babel/plugin-transform-modules-amd": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.16.7.tgz",
+ "integrity": "sha512-KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-module-transforms": "^7.16.7",
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "babel-plugin-dynamic-import-node": "^2.3.3"
+ }
+ },
+ "@babel/plugin-transform-modules-commonjs": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.16.7.tgz",
+ "integrity": "sha512-h2RP2kE7He1ZWKyAlanMZrAbdv+Acw1pA8dQZhE025WJZE2z0xzFADAinXA9fxd5bn7JnM+SdOGcndGx1ARs9w==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-module-transforms": "^7.16.7",
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/helper-simple-access": "^7.16.7",
+ "babel-plugin-dynamic-import-node": "^2.3.3"
+ }
+ },
+ "@babel/plugin-transform-modules-systemjs": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.16.7.tgz",
+ "integrity": "sha512-DuK5E3k+QQmnOqBR9UkusByy5WZWGRxfzV529s9nPra1GE7olmxfqO2FHobEOYSPIjPBTr4p66YDcjQnt8cBmw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-hoist-variables": "^7.16.7",
+ "@babel/helper-module-transforms": "^7.16.7",
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/helper-validator-identifier": "^7.16.7",
+ "babel-plugin-dynamic-import-node": "^2.3.3"
+ }
+ },
+ "@babel/plugin-transform-modules-umd": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.16.7.tgz",
+ "integrity": "sha512-EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-module-transforms": "^7.16.7",
+ "@babel/helper-plugin-utils": "^7.16.7"
+ }
+ },
+ "@babel/plugin-transform-named-capturing-groups-regex": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.16.7.tgz",
+ "integrity": "sha512-kFy35VwmwIQwCjwrAQhl3+c/kr292i4KdLPKp5lPH03Ltc51qnFlIADoyPxc/6Naz3ok3WdYKg+KK6AH+D4utg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-create-regexp-features-plugin": "^7.16.7"
+ }
+ },
+ "@babel/plugin-transform-new-target": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.16.7.tgz",
+ "integrity": "sha512-xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.16.7"
+ }
+ },
+ "@babel/plugin-transform-object-super": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.16.7.tgz",
+ "integrity": "sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/helper-replace-supers": "^7.16.7"
+ }
+ },
+ "@babel/plugin-transform-parameters": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.16.7.tgz",
+ "integrity": "sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.16.7"
+ }
+ },
+ "@babel/plugin-transform-property-literals": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.16.7.tgz",
+ "integrity": "sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.16.7"
+ }
+ },
+ "@babel/plugin-transform-react-display-name": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.16.7.tgz",
+ "integrity": "sha512-qgIg8BcZgd0G/Cz916D5+9kqX0c7nPZyXaP8R2tLNN5tkyIZdG5fEwBrxwplzSnjC1jvQmyMNVwUCZPcbGY7Pg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.16.7"
+ }
+ },
+ "@babel/plugin-transform-react-jsx": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.16.7.tgz",
+ "integrity": "sha512-8D16ye66fxiE8m890w0BpPpngG9o9OVBBy0gH2E+2AR7qMR2ZpTYJEqLxAsoroenMId0p/wMW+Blc0meDgu0Ag==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-annotate-as-pure": "^7.16.7",
+ "@babel/helper-module-imports": "^7.16.7",
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/plugin-syntax-jsx": "^7.16.7",
+ "@babel/types": "^7.16.7"
+ }
+ },
+ "@babel/plugin-transform-react-jsx-development": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.16.7.tgz",
+ "integrity": "sha512-RMvQWvpla+xy6MlBpPlrKZCMRs2AGiHOGHY3xRwl0pEeim348dDyxeH4xBsMPbIMhujeq7ihE702eM2Ew0Wo+A==",
+ "dev": true,
+ "requires": {
+ "@babel/plugin-transform-react-jsx": "^7.16.7"
+ }
+ },
+ "@babel/plugin-transform-react-pure-annotations": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.16.7.tgz",
+ "integrity": "sha512-hs71ToC97k3QWxswh2ElzMFABXHvGiJ01IB1TbYQDGeWRKWz/MPUTh5jGExdHvosYKpnJW5Pm3S4+TA3FyX+GA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-annotate-as-pure": "^7.16.7",
+ "@babel/helper-plugin-utils": "^7.16.7"
+ }
+ },
+ "@babel/plugin-transform-regenerator": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.16.7.tgz",
+ "integrity": "sha512-mF7jOgGYCkSJagJ6XCujSQg+6xC1M77/03K2oBmVJWoFGNUtnVJO4WHKJk3dnPC8HCcj4xBQP1Egm8DWh3Pb3Q==",
+ "dev": true,
+ "requires": {
+ "regenerator-transform": "^0.14.2"
+ }
+ },
+ "@babel/plugin-transform-reserved-words": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.16.7.tgz",
+ "integrity": "sha512-KQzzDnZ9hWQBjwi5lpY5v9shmm6IVG0U9pB18zvMu2i4H90xpT4gmqwPYsn8rObiadYe2M0gmgsiOIF5A/2rtg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.16.7"
+ }
+ },
+ "@babel/plugin-transform-shorthand-properties": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.7.tgz",
+ "integrity": "sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.16.7"
+ }
+ },
+ "@babel/plugin-transform-spread": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.16.7.tgz",
+ "integrity": "sha512-+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0"
+ }
+ },
+ "@babel/plugin-transform-sticky-regex": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.16.7.tgz",
+ "integrity": "sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.16.7"
+ }
+ },
+ "@babel/plugin-transform-template-literals": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.16.7.tgz",
+ "integrity": "sha512-VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.16.7"
+ }
+ },
+ "@babel/plugin-transform-typeof-symbol": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.16.7.tgz",
+ "integrity": "sha512-p2rOixCKRJzpg9JB4gjnG4gjWkWa89ZoYUnl9snJ1cWIcTH/hvxZqfO+WjG6T8DRBpctEol5jw1O5rA8gkCokQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.16.7"
+ }
+ },
+ "@babel/plugin-transform-typescript": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.16.7.tgz",
+ "integrity": "sha512-Hzx1lvBtOCWuCEwMmYOfpQpO7joFeXLgoPuzZZBtTxXqSqUGUubvFGZv2ygo1tB5Bp9q6PXV3H0E/kf7KM0RLA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-create-class-features-plugin": "^7.16.7",
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/plugin-syntax-typescript": "^7.16.7"
+ }
+ },
+ "@babel/plugin-transform-unicode-escapes": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.16.7.tgz",
+ "integrity": "sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.16.7"
+ }
+ },
+ "@babel/plugin-transform-unicode-regex": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.16.7.tgz",
+ "integrity": "sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-create-regexp-features-plugin": "^7.16.7",
+ "@babel/helper-plugin-utils": "^7.16.7"
+ }
+ },
+ "@babel/preset-env": {
+ "version": "7.15.6",
+ "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.15.6.tgz",
+ "integrity": "sha512-L+6jcGn7EWu7zqaO2uoTDjjMBW+88FXzV8KvrBl2z6MtRNxlsmUNRlZPaNNPUTgqhyC5DHNFk/2Jmra+ublZWw==",
+ "dev": true,
+ "requires": {
+ "@babel/compat-data": "^7.15.0",
+ "@babel/helper-compilation-targets": "^7.15.4",
+ "@babel/helper-plugin-utils": "^7.14.5",
+ "@babel/helper-validator-option": "^7.14.5",
+ "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.15.4",
+ "@babel/plugin-proposal-async-generator-functions": "^7.15.4",
+ "@babel/plugin-proposal-class-properties": "^7.14.5",
+ "@babel/plugin-proposal-class-static-block": "^7.15.4",
+ "@babel/plugin-proposal-dynamic-import": "^7.14.5",
+ "@babel/plugin-proposal-export-namespace-from": "^7.14.5",
+ "@babel/plugin-proposal-json-strings": "^7.14.5",
+ "@babel/plugin-proposal-logical-assignment-operators": "^7.14.5",
+ "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5",
+ "@babel/plugin-proposal-numeric-separator": "^7.14.5",
+ "@babel/plugin-proposal-object-rest-spread": "^7.15.6",
+ "@babel/plugin-proposal-optional-catch-binding": "^7.14.5",
+ "@babel/plugin-proposal-optional-chaining": "^7.14.5",
+ "@babel/plugin-proposal-private-methods": "^7.14.5",
+ "@babel/plugin-proposal-private-property-in-object": "^7.15.4",
+ "@babel/plugin-proposal-unicode-property-regex": "^7.14.5",
+ "@babel/plugin-syntax-async-generators": "^7.8.4",
+ "@babel/plugin-syntax-class-properties": "^7.12.13",
+ "@babel/plugin-syntax-class-static-block": "^7.14.5",
+ "@babel/plugin-syntax-dynamic-import": "^7.8.3",
+ "@babel/plugin-syntax-export-namespace-from": "^7.8.3",
+ "@babel/plugin-syntax-json-strings": "^7.8.3",
+ "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4",
+ "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",
+ "@babel/plugin-syntax-numeric-separator": "^7.10.4",
+ "@babel/plugin-syntax-object-rest-spread": "^7.8.3",
+ "@babel/plugin-syntax-optional-catch-binding": "^7.8.3",
+ "@babel/plugin-syntax-optional-chaining": "^7.8.3",
+ "@babel/plugin-syntax-private-property-in-object": "^7.14.5",
+ "@babel/plugin-syntax-top-level-await": "^7.14.5",
+ "@babel/plugin-transform-arrow-functions": "^7.14.5",
+ "@babel/plugin-transform-async-to-generator": "^7.14.5",
+ "@babel/plugin-transform-block-scoped-functions": "^7.14.5",
+ "@babel/plugin-transform-block-scoping": "^7.15.3",
+ "@babel/plugin-transform-classes": "^7.15.4",
+ "@babel/plugin-transform-computed-properties": "^7.14.5",
+ "@babel/plugin-transform-destructuring": "^7.14.7",
+ "@babel/plugin-transform-dotall-regex": "^7.14.5",
+ "@babel/plugin-transform-duplicate-keys": "^7.14.5",
+ "@babel/plugin-transform-exponentiation-operator": "^7.14.5",
+ "@babel/plugin-transform-for-of": "^7.15.4",
+ "@babel/plugin-transform-function-name": "^7.14.5",
+ "@babel/plugin-transform-literals": "^7.14.5",
+ "@babel/plugin-transform-member-expression-literals": "^7.14.5",
+ "@babel/plugin-transform-modules-amd": "^7.14.5",
+ "@babel/plugin-transform-modules-commonjs": "^7.15.4",
+ "@babel/plugin-transform-modules-systemjs": "^7.15.4",
+ "@babel/plugin-transform-modules-umd": "^7.14.5",
+ "@babel/plugin-transform-named-capturing-groups-regex": "^7.14.9",
+ "@babel/plugin-transform-new-target": "^7.14.5",
+ "@babel/plugin-transform-object-super": "^7.14.5",
+ "@babel/plugin-transform-parameters": "^7.15.4",
+ "@babel/plugin-transform-property-literals": "^7.14.5",
+ "@babel/plugin-transform-regenerator": "^7.14.5",
+ "@babel/plugin-transform-reserved-words": "^7.14.5",
+ "@babel/plugin-transform-shorthand-properties": "^7.14.5",
+ "@babel/plugin-transform-spread": "^7.14.6",
+ "@babel/plugin-transform-sticky-regex": "^7.14.5",
+ "@babel/plugin-transform-template-literals": "^7.14.5",
+ "@babel/plugin-transform-typeof-symbol": "^7.14.5",
+ "@babel/plugin-transform-unicode-escapes": "^7.14.5",
+ "@babel/plugin-transform-unicode-regex": "^7.14.5",
+ "@babel/preset-modules": "^0.1.4",
+ "@babel/types": "^7.15.6",
+ "babel-plugin-polyfill-corejs2": "^0.2.2",
+ "babel-plugin-polyfill-corejs3": "^0.2.2",
+ "babel-plugin-polyfill-regenerator": "^0.2.2",
+ "core-js-compat": "^3.16.0",
+ "semver": "^6.3.0"
+ }
+ },
+ "@babel/preset-flow": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/preset-flow/-/preset-flow-7.16.7.tgz",
+ "integrity": "sha512-6ceP7IyZdUYQ3wUVqyRSQXztd1YmFHWI4Xv11MIqAlE4WqxBSd/FZ61V9k+TS5Gd4mkHOtQtPp9ymRpxH4y1Ug==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/helper-validator-option": "^7.16.7",
+ "@babel/plugin-transform-flow-strip-types": "^7.16.7"
+ }
+ },
+ "@babel/preset-modules": {
+ "version": "0.1.5",
+ "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz",
+ "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.0.0",
+ "@babel/plugin-proposal-unicode-property-regex": "^7.4.4",
+ "@babel/plugin-transform-dotall-regex": "^7.4.4",
+ "@babel/types": "^7.4.4",
+ "esutils": "^2.0.2"
+ }
+ },
+ "@babel/preset-react": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.16.7.tgz",
+ "integrity": "sha512-fWpyI8UM/HE6DfPBzD8LnhQ/OcH8AgTaqcqP2nGOXEUV+VKBR5JRN9hCk9ai+zQQ57vtm9oWeXguBCPNUjytgA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/helper-validator-option": "^7.16.7",
+ "@babel/plugin-transform-react-display-name": "^7.16.7",
+ "@babel/plugin-transform-react-jsx": "^7.16.7",
+ "@babel/plugin-transform-react-jsx-development": "^7.16.7",
+ "@babel/plugin-transform-react-pure-annotations": "^7.16.7"
+ }
+ },
+ "@babel/preset-typescript": {
+ "version": "7.15.0",
+ "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.15.0.tgz",
+ "integrity": "sha512-lt0Y/8V3y06Wq/8H/u0WakrqciZ7Fz7mwPDHWUJAXlABL5hiUG42BNlRXiELNjeWjO5rWmnNKlx+yzJvxezHow==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.14.5",
+ "@babel/helper-validator-option": "^7.14.5",
+ "@babel/plugin-transform-typescript": "^7.15.0"
+ }
+ },
+ "@babel/register": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/register/-/register-7.16.7.tgz",
+ "integrity": "sha512-Ft+cuxorVxFj4RrPDs9TbJNE7ZbuJTyazUC6jLWRvBQT/qIDZPMe7MHgjlrA+11+XDLh+I0Pnx7sxPp4LRhzcA==",
+ "dev": true,
+ "requires": {
+ "clone-deep": "^4.0.1",
+ "find-cache-dir": "^2.0.0",
+ "make-dir": "^2.1.0",
+ "pirates": "^4.0.0",
+ "source-map-support": "^0.5.16"
+ }
+ },
+ "@babel/runtime": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.7.tgz",
+ "integrity": "sha512-9E9FJowqAsytyOY6LG+1KuueckRL+aQW+mKvXRXnuFGyRAyepJPmEo9vgMfXUA6O9u3IeEdv9MAkppFcaQwogQ==",
+ "dev": true,
+ "requires": {
+ "regenerator-runtime": "^0.13.4"
+ }
+ },
+ "@babel/template": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz",
+ "integrity": "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==",
+ "dev": true,
+ "requires": {
+ "@babel/code-frame": "^7.16.7",
+ "@babel/parser": "^7.16.7",
+ "@babel/types": "^7.16.7"
+ }
+ },
+ "@babel/traverse": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.7.tgz",
+ "integrity": "sha512-8KWJPIb8c2VvY8AJrydh6+fVRo2ODx1wYBU2398xJVq0JomuLBZmVQzLPBblJgHIGYG4znCpUZUZ0Pt2vdmVYQ==",
+ "dev": true,
+ "requires": {
+ "@babel/code-frame": "^7.16.7",
+ "@babel/generator": "^7.16.7",
+ "@babel/helper-environment-visitor": "^7.16.7",
+ "@babel/helper-function-name": "^7.16.7",
+ "@babel/helper-hoist-variables": "^7.16.7",
+ "@babel/helper-split-export-declaration": "^7.16.7",
+ "@babel/parser": "^7.16.7",
+ "@babel/types": "^7.16.7",
+ "debug": "^4.1.0",
+ "globals": "^11.1.0"
+ }
+ },
+ "@babel/types": {
+ "version": "7.16.7",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.16.7.tgz",
+ "integrity": "sha512-E8HuV7FO9qLpx6OtoGfUQ2cjIYnbFwvZWYBS+87EwtdMvmUPJSwykpovFB+8insbpF0uJcpr8KMUi64XZntZcg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-validator-identifier": "^7.16.7",
+ "to-fast-properties": "^2.0.0"
+ }
+ },
+ "@base2/pretty-print-object": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/@base2/pretty-print-object/-/pretty-print-object-1.0.1.tgz",
+ "integrity": "sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==",
+ "dev": true
+ },
+ "@bcoe/v8-coverage": {
+ "version": "0.2.3",
+ "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz",
+ "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==",
+ "dev": true
+ },
+ "@cnakazawa/watch": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.4.tgz",
+ "integrity": "sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==",
+ "dev": true,
+ "requires": {
+ "exec-sh": "^0.3.2",
+ "minimist": "^1.2.0"
+ }
+ },
+ "@discoveryjs/json-ext": {
+ "version": "0.5.6",
+ "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.6.tgz",
+ "integrity": "sha512-ws57AidsDvREKrZKYffXddNkyaF14iHNHm8VQnZH6t99E8gczjNN0GpvcGny0imC80yQ0tHz1xVUKk/KFQSUyA==",
+ "dev": true
+ },
+ "@emotion/cache": {
+ "version": "10.0.29",
+ "resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-10.0.29.tgz",
+ "integrity": "sha512-fU2VtSVlHiF27empSbxi1O2JFdNWZO+2NFHfwO0pxgTep6Xa3uGb+3pVKfLww2l/IBGLNEZl5Xf/++A4wAYDYQ==",
+ "dev": true,
+ "requires": {
+ "@emotion/sheet": "0.9.4",
+ "@emotion/stylis": "0.8.5",
+ "@emotion/utils": "0.11.3",
+ "@emotion/weak-memoize": "0.2.5"
+ }
+ },
+ "@emotion/core": {
+ "version": "10.3.1",
+ "resolved": "https://registry.npmjs.org/@emotion/core/-/core-10.3.1.tgz",
+ "integrity": "sha512-447aUEjPIm0MnE6QYIaFz9VQOHSXf4Iu6EWOIqq11EAPqinkSZmfymPTmlOE3QjLv846lH4JVZBUOtwGbuQoww==",
+ "dev": true,
+ "requires": {
+ "@babel/runtime": "^7.5.5",
+ "@emotion/cache": "^10.0.27",
+ "@emotion/css": "^10.0.27",
+ "@emotion/serialize": "^0.11.15",
+ "@emotion/sheet": "0.9.4",
+ "@emotion/utils": "0.11.3"
+ }
+ },
+ "@emotion/css": {
+ "version": "10.0.27",
+ "resolved": "https://registry.npmjs.org/@emotion/css/-/css-10.0.27.tgz",
+ "integrity": "sha512-6wZjsvYeBhyZQYNrGoR5yPMYbMBNEnanDrqmsqS1mzDm1cOTu12shvl2j4QHNS36UaTE0USIJawCH9C8oW34Zw==",
+ "dev": true,
+ "requires": {
+ "@emotion/serialize": "^0.11.15",
+ "@emotion/utils": "0.11.3",
+ "babel-plugin-emotion": "^10.0.27"
+ }
+ },
+ "@emotion/hash": {
+ "version": "0.8.0",
+ "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.8.0.tgz",
+ "integrity": "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==",
+ "dev": true
+ },
+ "@emotion/is-prop-valid": {
+ "version": "0.8.8",
+ "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz",
+ "integrity": "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==",
+ "dev": true,
+ "requires": {
+ "@emotion/memoize": "0.7.4"
+ }
+ },
+ "@emotion/memoize": {
+ "version": "0.7.4",
+ "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz",
+ "integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==",
+ "dev": true
+ },
+ "@emotion/serialize": {
+ "version": "0.11.16",
+ "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-0.11.16.tgz",
+ "integrity": "sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg==",
+ "dev": true,
+ "requires": {
+ "@emotion/hash": "0.8.0",
+ "@emotion/memoize": "0.7.4",
+ "@emotion/unitless": "0.7.5",
+ "@emotion/utils": "0.11.3",
+ "csstype": "^2.5.7"
+ }
+ },
+ "@emotion/sheet": {
+ "version": "0.9.4",
+ "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-0.9.4.tgz",
+ "integrity": "sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA==",
+ "dev": true
+ },
+ "@emotion/styled": {
+ "version": "10.3.0",
+ "resolved": "https://registry.npmjs.org/@emotion/styled/-/styled-10.3.0.tgz",
+ "integrity": "sha512-GgcUpXBBEU5ido+/p/mCT2/Xx+Oqmp9JzQRuC+a4lYM4i4LBBn/dWvc0rQ19N9ObA8/T4NWMrPNe79kMBDJqoQ==",
+ "dev": true,
+ "requires": {
+ "@emotion/styled-base": "^10.3.0",
+ "babel-plugin-emotion": "^10.0.27"
+ }
+ },
+ "@emotion/styled-base": {
+ "version": "10.3.0",
+ "resolved": "https://registry.npmjs.org/@emotion/styled-base/-/styled-base-10.3.0.tgz",
+ "integrity": "sha512-PBRqsVKR7QRNkmfH78hTSSwHWcwDpecH9W6heujWAcyp2wdz/64PP73s7fWS1dIPm8/Exc8JAzYS8dEWXjv60w==",
+ "dev": true,
+ "requires": {
+ "@babel/runtime": "^7.5.5",
+ "@emotion/is-prop-valid": "0.8.8",
+ "@emotion/serialize": "^0.11.15",
+ "@emotion/utils": "0.11.3"
+ }
+ },
+ "@emotion/stylis": {
+ "version": "0.8.5",
+ "resolved": "https://registry.npmjs.org/@emotion/stylis/-/stylis-0.8.5.tgz",
+ "integrity": "sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==",
+ "dev": true
+ },
+ "@emotion/unitless": {
+ "version": "0.7.5",
+ "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.7.5.tgz",
+ "integrity": "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==",
+ "dev": true
+ },
+ "@emotion/utils": {
+ "version": "0.11.3",
+ "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-0.11.3.tgz",
+ "integrity": "sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw==",
+ "dev": true
+ },
+ "@emotion/weak-memoize": {
+ "version": "0.2.5",
+ "resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz",
+ "integrity": "sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==",
+ "dev": true
+ },
+ "@gar/promisify": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.2.tgz",
+ "integrity": "sha512-82cpyJyKRoQoRi+14ibCeGPu0CwypgtBAdBhq1WfvagpCZNKqwXbKwXllYSMG91DhmG4jt9gN8eP6lGOtozuaw==",
+ "dev": true
+ },
+ "@istanbuljs/load-nyc-config": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz",
+ "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==",
+ "dev": true,
+ "requires": {
+ "camelcase": "^5.3.1",
+ "find-up": "^4.1.0",
+ "get-package-type": "^0.1.0",
+ "js-yaml": "^3.13.1",
+ "resolve-from": "^5.0.0"
+ },
+ "dependencies": {
+ "find-up": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
+ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
+ "dev": true,
+ "requires": {
+ "locate-path": "^5.0.0",
+ "path-exists": "^4.0.0"
+ }
+ },
+ "locate-path": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
+ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
+ "dev": true,
+ "requires": {
+ "p-locate": "^4.1.0"
+ }
+ },
+ "p-limit": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
+ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
+ "dev": true,
+ "requires": {
+ "p-try": "^2.0.0"
+ }
+ },
+ "p-locate": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
+ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
+ "dev": true,
+ "requires": {
+ "p-limit": "^2.2.0"
+ }
+ }
+ }
+ },
+ "@istanbuljs/schema": {
+ "version": "0.1.3",
+ "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz",
+ "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==",
+ "dev": true
+ },
+ "@jest/console": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.4.6.tgz",
+ "integrity": "sha512-jauXyacQD33n47A44KrlOVeiXHEXDqapSdfb9kTekOchH/Pd18kBIO1+xxJQRLuG+LUuljFCwTG92ra4NW7SpA==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "jest-message-util": "^27.4.6",
+ "jest-util": "^27.4.2",
+ "slash": "^3.0.0"
+ },
+ "dependencies": {
+ "@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "requires": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ }
+ },
+ "@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "requires": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "jest-util": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.4.2.tgz",
+ "integrity": "sha512-YuxxpXU6nlMan9qyLuxHaMMOzXAl5aGZWCSzben5DhLHemYQxCc4YK+4L3ZrCutT8GPQ+ui9k5D8rUJoDioMnA==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.4",
+ "picomatch": "^2.2.3"
+ }
+ },
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "@jest/core": {
+ "version": "27.4.7",
+ "resolved": "https://registry.npmjs.org/@jest/core/-/core-27.4.7.tgz",
+ "integrity": "sha512-n181PurSJkVMS+kClIFSX/LLvw9ExSb+4IMtD6YnfxZVerw9ANYtW0bPrm0MJu2pfe9SY9FJ9FtQ+MdZkrZwjg==",
+ "dev": true,
+ "requires": {
+ "@jest/console": "^27.4.6",
+ "@jest/reporters": "^27.4.6",
+ "@jest/test-result": "^27.4.6",
+ "@jest/transform": "^27.4.6",
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "ansi-escapes": "^4.2.1",
+ "chalk": "^4.0.0",
+ "emittery": "^0.8.1",
+ "exit": "^0.1.2",
+ "graceful-fs": "^4.2.4",
+ "jest-changed-files": "^27.4.2",
+ "jest-config": "^27.4.7",
+ "jest-haste-map": "^27.4.6",
+ "jest-message-util": "^27.4.6",
+ "jest-regex-util": "^27.4.0",
+ "jest-resolve": "^27.4.6",
+ "jest-resolve-dependencies": "^27.4.6",
+ "jest-runner": "^27.4.6",
+ "jest-runtime": "^27.4.6",
+ "jest-snapshot": "^27.4.6",
+ "jest-util": "^27.4.2",
+ "jest-validate": "^27.4.6",
+ "jest-watcher": "^27.4.6",
+ "micromatch": "^4.0.4",
+ "rimraf": "^3.0.0",
+ "slash": "^3.0.0",
+ "strip-ansi": "^6.0.0"
+ },
+ "dependencies": {
+ "@jest/transform": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.4.6.tgz",
+ "integrity": "sha512-9MsufmJC8t5JTpWEQJ0OcOOAXaH5ioaIX6uHVBLBMoCZPfKKQF+EqP8kACAvCZ0Y1h2Zr3uOccg8re+Dr5jxyw==",
+ "dev": true,
+ "requires": {
+ "@babel/core": "^7.1.0",
+ "@jest/types": "^27.4.2",
+ "babel-plugin-istanbul": "^6.1.1",
+ "chalk": "^4.0.0",
+ "convert-source-map": "^1.4.0",
+ "fast-json-stable-stringify": "^2.0.0",
+ "graceful-fs": "^4.2.4",
+ "jest-haste-map": "^27.4.6",
+ "jest-regex-util": "^27.4.0",
+ "jest-util": "^27.4.2",
+ "micromatch": "^4.0.4",
+ "pirates": "^4.0.4",
+ "slash": "^3.0.0",
+ "source-map": "^0.6.1",
+ "write-file-atomic": "^3.0.0"
+ }
+ },
+ "@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "requires": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ }
+ },
+ "@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "requires": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "jest-haste-map": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.4.6.tgz",
+ "integrity": "sha512-0tNpgxg7BKurZeFkIOvGCkbmOHbLFf4LUQOxrQSMjvrQaQe3l6E8x6jYC1NuWkGo5WDdbr8FEzUxV2+LWNawKQ==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^27.4.2",
+ "@types/graceful-fs": "^4.1.2",
+ "@types/node": "*",
+ "anymatch": "^3.0.3",
+ "fb-watchman": "^2.0.0",
+ "fsevents": "^2.3.2",
+ "graceful-fs": "^4.2.4",
+ "jest-regex-util": "^27.4.0",
+ "jest-serializer": "^27.4.0",
+ "jest-util": "^27.4.2",
+ "jest-worker": "^27.4.6",
+ "micromatch": "^4.0.4",
+ "walker": "^1.0.7"
+ }
+ },
+ "jest-regex-util": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.4.0.tgz",
+ "integrity": "sha512-WeCpMpNnqJYMQoOjm1nTtsgbR4XHAk1u00qDoNBQoykM280+/TmgA5Qh5giC1ecy6a5d4hbSsHzpBtu5yvlbEg==",
+ "dev": true
+ },
+ "jest-serializer": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.4.0.tgz",
+ "integrity": "sha512-RDhpcn5f1JYTX2pvJAGDcnsNTnsV9bjYPU8xcV+xPwOXnUPOQwf4ZEuiU6G9H1UztH+OapMgu/ckEVwO87PwnQ==",
+ "dev": true,
+ "requires": {
+ "@types/node": "*",
+ "graceful-fs": "^4.2.4"
+ }
+ },
+ "jest-util": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.4.2.tgz",
+ "integrity": "sha512-YuxxpXU6nlMan9qyLuxHaMMOzXAl5aGZWCSzben5DhLHemYQxCc4YK+4L3ZrCutT8GPQ+ui9k5D8rUJoDioMnA==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.4",
+ "picomatch": "^2.2.3"
+ }
+ },
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "@jest/environment": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.4.6.tgz",
+ "integrity": "sha512-E6t+RXPfATEEGVidr84WngLNWZ8ffCPky8RqqRK6u1Bn0LK92INe0MDttyPl/JOzaq92BmDzOeuqk09TvM22Sg==",
+ "dev": true,
+ "requires": {
+ "@jest/fake-timers": "^27.4.6",
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "jest-mock": "^27.4.6"
+ },
+ "dependencies": {
+ "@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "requires": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ }
+ },
+ "@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "requires": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "@jest/fake-timers": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.4.6.tgz",
+ "integrity": "sha512-mfaethuYF8scV8ntPpiVGIHQgS0XIALbpY2jt2l7wb/bvq4Q5pDLk4EP4D7SAvYT1QrPOPVZAtbdGAOOyIgs7A==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^27.4.2",
+ "@sinonjs/fake-timers": "^8.0.1",
+ "@types/node": "*",
+ "jest-message-util": "^27.4.6",
+ "jest-mock": "^27.4.6",
+ "jest-util": "^27.4.2"
+ },
+ "dependencies": {
+ "@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "requires": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ }
+ },
+ "@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "requires": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "jest-util": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.4.2.tgz",
+ "integrity": "sha512-YuxxpXU6nlMan9qyLuxHaMMOzXAl5aGZWCSzben5DhLHemYQxCc4YK+4L3ZrCutT8GPQ+ui9k5D8rUJoDioMnA==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.4",
+ "picomatch": "^2.2.3"
+ }
+ },
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "@jest/globals": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-27.4.6.tgz",
+ "integrity": "sha512-kAiwMGZ7UxrgPzu8Yv9uvWmXXxsy0GciNejlHvfPIfWkSxChzv6bgTS3YqBkGuHcis+ouMFI2696n2t+XYIeFw==",
+ "dev": true,
+ "requires": {
+ "@jest/environment": "^27.4.6",
+ "@jest/types": "^27.4.2",
+ "expect": "^27.4.6"
+ },
+ "dependencies": {
+ "@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "requires": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ }
+ },
+ "@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "requires": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "@jest/reporters": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-27.4.6.tgz",
+ "integrity": "sha512-+Zo9gV81R14+PSq4wzee4GC2mhAN9i9a7qgJWL90Gpx7fHYkWpTBvwWNZUXvJByYR9tAVBdc8VxDWqfJyIUrIQ==",
+ "dev": true,
+ "requires": {
+ "@bcoe/v8-coverage": "^0.2.3",
+ "@jest/console": "^27.4.6",
+ "@jest/test-result": "^27.4.6",
+ "@jest/transform": "^27.4.6",
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "collect-v8-coverage": "^1.0.0",
+ "exit": "^0.1.2",
+ "glob": "^7.1.2",
+ "graceful-fs": "^4.2.4",
+ "istanbul-lib-coverage": "^3.0.0",
+ "istanbul-lib-instrument": "^5.1.0",
+ "istanbul-lib-report": "^3.0.0",
+ "istanbul-lib-source-maps": "^4.0.0",
+ "istanbul-reports": "^3.1.3",
+ "jest-haste-map": "^27.4.6",
+ "jest-resolve": "^27.4.6",
+ "jest-util": "^27.4.2",
+ "jest-worker": "^27.4.6",
+ "slash": "^3.0.0",
+ "source-map": "^0.6.0",
+ "string-length": "^4.0.1",
+ "terminal-link": "^2.0.0",
+ "v8-to-istanbul": "^8.1.0"
+ },
+ "dependencies": {
+ "@jest/transform": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.4.6.tgz",
+ "integrity": "sha512-9MsufmJC8t5JTpWEQJ0OcOOAXaH5ioaIX6uHVBLBMoCZPfKKQF+EqP8kACAvCZ0Y1h2Zr3uOccg8re+Dr5jxyw==",
+ "dev": true,
+ "requires": {
+ "@babel/core": "^7.1.0",
+ "@jest/types": "^27.4.2",
+ "babel-plugin-istanbul": "^6.1.1",
+ "chalk": "^4.0.0",
+ "convert-source-map": "^1.4.0",
+ "fast-json-stable-stringify": "^2.0.0",
+ "graceful-fs": "^4.2.4",
+ "jest-haste-map": "^27.4.6",
+ "jest-regex-util": "^27.4.0",
+ "jest-util": "^27.4.2",
+ "micromatch": "^4.0.4",
+ "pirates": "^4.0.4",
+ "slash": "^3.0.0",
+ "source-map": "^0.6.1",
+ "write-file-atomic": "^3.0.0"
+ }
+ },
+ "@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "requires": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ }
+ },
+ "@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "requires": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "jest-haste-map": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.4.6.tgz",
+ "integrity": "sha512-0tNpgxg7BKurZeFkIOvGCkbmOHbLFf4LUQOxrQSMjvrQaQe3l6E8x6jYC1NuWkGo5WDdbr8FEzUxV2+LWNawKQ==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^27.4.2",
+ "@types/graceful-fs": "^4.1.2",
+ "@types/node": "*",
+ "anymatch": "^3.0.3",
+ "fb-watchman": "^2.0.0",
+ "fsevents": "^2.3.2",
+ "graceful-fs": "^4.2.4",
+ "jest-regex-util": "^27.4.0",
+ "jest-serializer": "^27.4.0",
+ "jest-util": "^27.4.2",
+ "jest-worker": "^27.4.6",
+ "micromatch": "^4.0.4",
+ "walker": "^1.0.7"
+ }
+ },
+ "jest-regex-util": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.4.0.tgz",
+ "integrity": "sha512-WeCpMpNnqJYMQoOjm1nTtsgbR4XHAk1u00qDoNBQoykM280+/TmgA5Qh5giC1ecy6a5d4hbSsHzpBtu5yvlbEg==",
+ "dev": true
+ },
+ "jest-serializer": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.4.0.tgz",
+ "integrity": "sha512-RDhpcn5f1JYTX2pvJAGDcnsNTnsV9bjYPU8xcV+xPwOXnUPOQwf4ZEuiU6G9H1UztH+OapMgu/ckEVwO87PwnQ==",
+ "dev": true,
+ "requires": {
+ "@types/node": "*",
+ "graceful-fs": "^4.2.4"
+ }
+ },
+ "jest-util": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.4.2.tgz",
+ "integrity": "sha512-YuxxpXU6nlMan9qyLuxHaMMOzXAl5aGZWCSzben5DhLHemYQxCc4YK+4L3ZrCutT8GPQ+ui9k5D8rUJoDioMnA==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.4",
+ "picomatch": "^2.2.3"
+ }
+ },
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "@jest/source-map": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-27.4.0.tgz",
+ "integrity": "sha512-Ntjx9jzP26Bvhbm93z/AKcPRj/9wrkI88/gK60glXDx1q+IeI0rf7Lw2c89Ch6ofonB0On/iRDreQuQ6te9pgQ==",
+ "dev": true,
+ "requires": {
+ "callsites": "^3.0.0",
+ "graceful-fs": "^4.2.4",
+ "source-map": "^0.6.0"
+ },
+ "dependencies": {
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ }
+ }
+ },
+ "@jest/test-result": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.4.6.tgz",
+ "integrity": "sha512-fi9IGj3fkOrlMmhQqa/t9xum8jaJOOAi/lZlm6JXSc55rJMXKHxNDN1oCP39B0/DhNOa2OMupF9BcKZnNtXMOQ==",
+ "dev": true,
+ "requires": {
+ "@jest/console": "^27.4.6",
+ "@jest/types": "^27.4.2",
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "collect-v8-coverage": "^1.0.0"
+ },
+ "dependencies": {
+ "@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "requires": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ }
+ },
+ "@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "requires": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "@jest/test-sequencer": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.4.6.tgz",
+ "integrity": "sha512-3GL+nsf6E1PsyNsJuvPyIz+DwFuCtBdtvPpm/LMXVkBJbdFvQYCDpccYT56qq5BGniXWlE81n2qk1sdXfZebnw==",
+ "dev": true,
+ "requires": {
+ "@jest/test-result": "^27.4.6",
+ "graceful-fs": "^4.2.4",
+ "jest-haste-map": "^27.4.6",
+ "jest-runtime": "^27.4.6"
+ },
+ "dependencies": {
+ "@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "requires": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ }
+ },
+ "@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "requires": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "jest-haste-map": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.4.6.tgz",
+ "integrity": "sha512-0tNpgxg7BKurZeFkIOvGCkbmOHbLFf4LUQOxrQSMjvrQaQe3l6E8x6jYC1NuWkGo5WDdbr8FEzUxV2+LWNawKQ==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^27.4.2",
+ "@types/graceful-fs": "^4.1.2",
+ "@types/node": "*",
+ "anymatch": "^3.0.3",
+ "fb-watchman": "^2.0.0",
+ "fsevents": "^2.3.2",
+ "graceful-fs": "^4.2.4",
+ "jest-regex-util": "^27.4.0",
+ "jest-serializer": "^27.4.0",
+ "jest-util": "^27.4.2",
+ "jest-worker": "^27.4.6",
+ "micromatch": "^4.0.4",
+ "walker": "^1.0.7"
+ }
+ },
+ "jest-regex-util": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.4.0.tgz",
+ "integrity": "sha512-WeCpMpNnqJYMQoOjm1nTtsgbR4XHAk1u00qDoNBQoykM280+/TmgA5Qh5giC1ecy6a5d4hbSsHzpBtu5yvlbEg==",
+ "dev": true
+ },
+ "jest-serializer": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.4.0.tgz",
+ "integrity": "sha512-RDhpcn5f1JYTX2pvJAGDcnsNTnsV9bjYPU8xcV+xPwOXnUPOQwf4ZEuiU6G9H1UztH+OapMgu/ckEVwO87PwnQ==",
+ "dev": true,
+ "requires": {
+ "@types/node": "*",
+ "graceful-fs": "^4.2.4"
+ }
+ },
+ "jest-util": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.4.2.tgz",
+ "integrity": "sha512-YuxxpXU6nlMan9qyLuxHaMMOzXAl5aGZWCSzben5DhLHemYQxCc4YK+4L3ZrCutT8GPQ+ui9k5D8rUJoDioMnA==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.4",
+ "picomatch": "^2.2.3"
+ }
+ },
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "@jest/transform": {
+ "version": "26.6.2",
+ "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-26.6.2.tgz",
+ "integrity": "sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==",
+ "dev": true,
+ "requires": {
+ "@babel/core": "^7.1.0",
+ "@jest/types": "^26.6.2",
+ "babel-plugin-istanbul": "^6.0.0",
+ "chalk": "^4.0.0",
+ "convert-source-map": "^1.4.0",
+ "fast-json-stable-stringify": "^2.0.0",
+ "graceful-fs": "^4.2.4",
+ "jest-haste-map": "^26.6.2",
+ "jest-regex-util": "^26.0.0",
+ "jest-util": "^26.6.2",
+ "micromatch": "^4.0.2",
+ "pirates": "^4.0.1",
+ "slash": "^3.0.0",
+ "source-map": "^0.6.1",
+ "write-file-atomic": "^3.0.0"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "@jest/types": {
+ "version": "26.6.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz",
+ "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==",
+ "dev": true,
+ "requires": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^15.0.0",
+ "chalk": "^4.0.0"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "@mdx-js/loader": {
+ "version": "1.6.22",
+ "resolved": "https://registry.npmjs.org/@mdx-js/loader/-/loader-1.6.22.tgz",
+ "integrity": "sha512-9CjGwy595NaxAYp0hF9B/A0lH6C8Rms97e2JS9d3jVUtILn6pT5i5IV965ra3lIWc7Rs1GG1tBdVF7dCowYe6Q==",
+ "dev": true,
+ "requires": {
+ "@mdx-js/mdx": "1.6.22",
+ "@mdx-js/react": "1.6.22",
+ "loader-utils": "2.0.0"
+ },
+ "dependencies": {
+ "loader-utils": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz",
+ "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==",
+ "dev": true,
+ "requires": {
+ "big.js": "^5.2.2",
+ "emojis-list": "^3.0.0",
+ "json5": "^2.1.2"
+ }
+ }
+ }
+ },
+ "@mdx-js/mdx": {
+ "version": "1.6.22",
+ "resolved": "https://registry.npmjs.org/@mdx-js/mdx/-/mdx-1.6.22.tgz",
+ "integrity": "sha512-AMxuLxPz2j5/6TpF/XSdKpQP1NlG0z11dFOlq+2IP/lSgl11GY8ji6S/rgsViN/L0BDvHvUMruRb7ub+24LUYA==",
+ "dev": true,
+ "requires": {
+ "@babel/core": "7.12.9",
+ "@babel/plugin-syntax-jsx": "7.12.1",
+ "@babel/plugin-syntax-object-rest-spread": "7.8.3",
+ "@mdx-js/util": "1.6.22",
+ "babel-plugin-apply-mdx-type-prop": "1.6.22",
+ "babel-plugin-extract-import-names": "1.6.22",
+ "camelcase-css": "2.0.1",
+ "detab": "2.0.4",
+ "hast-util-raw": "6.0.1",
+ "lodash.uniq": "4.5.0",
+ "mdast-util-to-hast": "10.0.1",
+ "remark-footnotes": "2.0.0",
+ "remark-mdx": "1.6.22",
+ "remark-parse": "8.0.3",
+ "remark-squeeze-paragraphs": "4.0.0",
+ "style-to-object": "0.3.0",
+ "unified": "9.2.0",
+ "unist-builder": "2.0.3",
+ "unist-util-visit": "2.0.3"
+ },
+ "dependencies": {
+ "@babel/core": {
+ "version": "7.12.9",
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.12.9.tgz",
+ "integrity": "sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==",
+ "dev": true,
+ "requires": {
+ "@babel/code-frame": "^7.10.4",
+ "@babel/generator": "^7.12.5",
+ "@babel/helper-module-transforms": "^7.12.1",
+ "@babel/helpers": "^7.12.5",
+ "@babel/parser": "^7.12.7",
+ "@babel/template": "^7.12.7",
+ "@babel/traverse": "^7.12.9",
+ "@babel/types": "^7.12.7",
+ "convert-source-map": "^1.7.0",
+ "debug": "^4.1.0",
+ "gensync": "^1.0.0-beta.1",
+ "json5": "^2.1.2",
+ "lodash": "^4.17.19",
+ "resolve": "^1.3.2",
+ "semver": "^5.4.1",
+ "source-map": "^0.5.0"
+ }
+ },
+ "@babel/plugin-syntax-jsx": {
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.1.tgz",
+ "integrity": "sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4"
+ }
+ },
+ "bail": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/bail/-/bail-1.0.5.tgz",
+ "integrity": "sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==",
+ "dev": true
+ },
+ "ccount": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/ccount/-/ccount-1.1.0.tgz",
+ "integrity": "sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==",
+ "dev": true
+ },
+ "is-plain-obj": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz",
+ "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==",
+ "dev": true
+ },
+ "remark-footnotes": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/remark-footnotes/-/remark-footnotes-2.0.0.tgz",
+ "integrity": "sha512-3Clt8ZMH75Ayjp9q4CorNeyjwIxHFcTkaektplKGl2A1jNGEUey8cKL0ZC5vJwfcD5GFGsNLImLG/NGzWIzoMQ==",
+ "dev": true
+ },
+ "remark-parse": {
+ "version": "8.0.3",
+ "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-8.0.3.tgz",
+ "integrity": "sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q==",
+ "dev": true,
+ "requires": {
+ "ccount": "^1.0.0",
+ "collapse-white-space": "^1.0.2",
+ "is-alphabetical": "^1.0.0",
+ "is-decimal": "^1.0.0",
+ "is-whitespace-character": "^1.0.0",
+ "is-word-character": "^1.0.0",
+ "markdown-escapes": "^1.0.0",
+ "parse-entities": "^2.0.0",
+ "repeat-string": "^1.5.4",
+ "state-toggle": "^1.0.0",
+ "trim": "0.0.1",
+ "trim-trailing-lines": "^1.0.0",
+ "unherit": "^1.0.4",
+ "unist-util-remove-position": "^2.0.0",
+ "vfile-location": "^3.0.0",
+ "xtend": "^4.0.1"
+ }
+ },
+ "semver": {
+ "version": "5.7.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
+ "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
+ "dev": true
+ },
+ "trough": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/trough/-/trough-1.0.5.tgz",
+ "integrity": "sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==",
+ "dev": true
+ },
+ "unified": {
+ "version": "9.2.0",
+ "resolved": "https://registry.npmjs.org/unified/-/unified-9.2.0.tgz",
+ "integrity": "sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==",
+ "dev": true,
+ "requires": {
+ "bail": "^1.0.0",
+ "extend": "^3.0.0",
+ "is-buffer": "^2.0.0",
+ "is-plain-obj": "^2.0.0",
+ "trough": "^1.0.0",
+ "vfile": "^4.0.0"
+ }
+ },
+ "unist-util-visit": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz",
+ "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==",
+ "dev": true,
+ "requires": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0",
+ "unist-util-visit-parents": "^3.0.0"
+ }
+ },
+ "unist-util-visit-parents": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz",
+ "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==",
+ "dev": true,
+ "requires": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0"
+ }
+ }
+ }
+ },
+ "@mdx-js/react": {
+ "version": "1.6.22",
+ "resolved": "https://registry.npmjs.org/@mdx-js/react/-/react-1.6.22.tgz",
+ "integrity": "sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==",
+ "dev": true
+ },
+ "@mdx-js/util": {
+ "version": "1.6.22",
+ "resolved": "https://registry.npmjs.org/@mdx-js/util/-/util-1.6.22.tgz",
+ "integrity": "sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA==",
+ "dev": true
+ },
+ "@mrmlnc/readdir-enhanced": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz",
+ "integrity": "sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==",
+ "dev": true,
+ "requires": {
+ "call-me-maybe": "^1.0.1",
+ "glob-to-regexp": "^0.3.0"
+ },
+ "dependencies": {
+ "glob-to-regexp": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz",
+ "integrity": "sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs=",
+ "dev": true
+ }
+ }
+ },
+ "@nodelib/fs.scandir": {
+ "version": "2.1.5",
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
+ "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
+ "dev": true,
+ "requires": {
+ "@nodelib/fs.stat": "2.0.5",
+ "run-parallel": "^1.1.9"
+ }
+ },
+ "@nodelib/fs.stat": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
+ "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
+ "dev": true
+ },
+ "@nodelib/fs.walk": {
+ "version": "1.2.8",
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
+ "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
+ "dev": true,
+ "requires": {
+ "@nodelib/fs.scandir": "2.1.5",
+ "fastq": "^1.6.0"
+ }
+ },
+ "@npmcli/fs": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-1.1.0.tgz",
+ "integrity": "sha512-VhP1qZLXcrXRIaPoqb4YA55JQxLNF3jNR4T55IdOJa3+IFJKNYHtPvtXx8slmeMavj37vCzCfrqQM1vWLsYKLA==",
+ "dev": true,
+ "requires": {
+ "@gar/promisify": "^1.0.1",
+ "semver": "^7.3.5"
+ },
+ "dependencies": {
+ "semver": {
+ "version": "7.3.5",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz",
+ "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==",
+ "dev": true,
+ "requires": {
+ "lru-cache": "^6.0.0"
+ }
+ }
+ }
+ },
+ "@npmcli/move-file": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz",
+ "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==",
+ "dev": true,
+ "requires": {
+ "mkdirp": "^1.0.4",
+ "rimraf": "^3.0.2"
+ }
+ },
+ "@pmmmwh/react-refresh-webpack-plugin": {
+ "version": "0.5.4",
+ "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.4.tgz",
+ "integrity": "sha512-zZbZeHQDnoTlt2AF+diQT0wsSXpvWiaIOZwBRdltNFhG1+I3ozyaw7U/nBiUwyJ0D+zwdXp0E3bWOl38Ag2BMw==",
+ "dev": true,
+ "requires": {
+ "ansi-html-community": "^0.0.8",
+ "common-path-prefix": "^3.0.0",
+ "core-js-pure": "^3.8.1",
+ "error-stack-parser": "^2.0.6",
+ "find-up": "^5.0.0",
+ "html-entities": "^2.1.0",
+ "loader-utils": "^2.0.0",
+ "schema-utils": "^3.0.0",
+ "source-map": "^0.7.3"
+ },
+ "dependencies": {
+ "source-map": {
+ "version": "0.7.3",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz",
+ "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==",
+ "dev": true
+ }
+ }
+ },
+ "@popperjs/core": {
+ "version": "2.11.2",
+ "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.2.tgz",
+ "integrity": "sha512-92FRmppjjqz29VMJ2dn+xdyXZBrMlE42AV6Kq6BwjWV7CNUW1hs2FtxSNLQE+gJhaZ6AAmYuO9y8dshhcBl7vA==",
+ "dev": true
+ },
+ "@rollup/plugin-typescript": {
+ "version": "8.2.5",
+ "resolved": "https://registry.npmjs.org/@rollup/plugin-typescript/-/plugin-typescript-8.2.5.tgz",
+ "integrity": "sha512-QL/LvDol/PAGB2O0S7/+q2HpSUNodpw7z6nGn9BfoVCPOZ0r4EALrojFU29Bkoi2Hr2jgTocTejJ5GGWZfOxbQ==",
+ "dev": true,
+ "requires": {
+ "@rollup/pluginutils": "^3.1.0",
+ "resolve": "^1.17.0"
+ }
+ },
+ "@rollup/pluginutils": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz",
+ "integrity": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==",
+ "dev": true,
+ "requires": {
+ "@types/estree": "0.0.39",
+ "estree-walker": "^1.0.1",
+ "picomatch": "^2.2.2"
+ }
+ },
+ "@sinonjs/commons": {
+ "version": "1.8.3",
+ "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz",
+ "integrity": "sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==",
+ "dev": true,
+ "requires": {
+ "type-detect": "4.0.8"
+ }
+ },
+ "@sinonjs/fake-timers": {
+ "version": "8.1.0",
+ "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz",
+ "integrity": "sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==",
+ "dev": true,
+ "requires": {
+ "@sinonjs/commons": "^1.7.0"
+ }
+ },
+ "@storybook/addon-actions": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/addon-actions/-/addon-actions-6.4.9.tgz",
+ "integrity": "sha512-L1N66p/vr+wPUBfrH3qffjNAcWSS/wvuL370T7cWxALA9LLA8yY9U2EpITc5btuCC5QOxApCeyHkFnrBhNa94g==",
+ "dev": true,
+ "requires": {
+ "@storybook/addons": "6.4.9",
+ "@storybook/api": "6.4.9",
+ "@storybook/components": "6.4.9",
+ "@storybook/core-events": "6.4.9",
+ "@storybook/csf": "0.0.2--canary.87bc651.0",
+ "@storybook/theming": "6.4.9",
+ "core-js": "^3.8.2",
+ "fast-deep-equal": "^3.1.3",
+ "global": "^4.4.0",
+ "lodash": "^4.17.21",
+ "polished": "^4.0.5",
+ "prop-types": "^15.7.2",
+ "react-inspector": "^5.1.0",
+ "regenerator-runtime": "^0.13.7",
+ "telejson": "^5.3.2",
+ "ts-dedent": "^2.0.0",
+ "util-deprecate": "^1.0.2",
+ "uuid-browser": "^3.1.0"
+ }
+ },
+ "@storybook/addon-backgrounds": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/addon-backgrounds/-/addon-backgrounds-6.4.9.tgz",
+ "integrity": "sha512-/jqUZvk+x8TpDedyFnJamSYC91w/e8prj42xtgLG4+yBlb0UmewX7BAq9i/lhowhUjuLKaOX9E8E0AHftg8L6A==",
+ "dev": true,
+ "requires": {
+ "@storybook/addons": "6.4.9",
+ "@storybook/api": "6.4.9",
+ "@storybook/client-logger": "6.4.9",
+ "@storybook/components": "6.4.9",
+ "@storybook/core-events": "6.4.9",
+ "@storybook/csf": "0.0.2--canary.87bc651.0",
+ "@storybook/theming": "6.4.9",
+ "core-js": "^3.8.2",
+ "global": "^4.4.0",
+ "memoizerific": "^1.11.3",
+ "regenerator-runtime": "^0.13.7",
+ "ts-dedent": "^2.0.0",
+ "util-deprecate": "^1.0.2"
+ }
+ },
+ "@storybook/addon-controls": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/addon-controls/-/addon-controls-6.4.9.tgz",
+ "integrity": "sha512-2eqtiYugCAOw8MCv0HOfjaZRQ4lHydMYoKIFy/QOv6/mjcJeG9dF01dA30n3miErQ18BaVyAB5+7rrmuqMwXVA==",
+ "dev": true,
+ "requires": {
+ "@storybook/addons": "6.4.9",
+ "@storybook/api": "6.4.9",
+ "@storybook/client-logger": "6.4.9",
+ "@storybook/components": "6.4.9",
+ "@storybook/core-common": "6.4.9",
+ "@storybook/csf": "0.0.2--canary.87bc651.0",
+ "@storybook/node-logger": "6.4.9",
+ "@storybook/store": "6.4.9",
+ "@storybook/theming": "6.4.9",
+ "core-js": "^3.8.2",
+ "lodash": "^4.17.21",
+ "ts-dedent": "^2.0.0"
+ }
+ },
+ "@storybook/addon-docs": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/addon-docs/-/addon-docs-6.4.9.tgz",
+ "integrity": "sha512-sJvnbp6Z+e7B1+vDE8gZVhCg1eNotIa7bx9LYd1Y2QwJ4PEv9hE2YxnzmWt3NZJGtrn4gdGaMCk7pmksugHi7g==",
+ "dev": true,
+ "requires": {
+ "@babel/core": "^7.12.10",
+ "@babel/generator": "^7.12.11",
+ "@babel/parser": "^7.12.11",
+ "@babel/plugin-transform-react-jsx": "^7.12.12",
+ "@babel/preset-env": "^7.12.11",
+ "@jest/transform": "^26.6.2",
+ "@mdx-js/loader": "^1.6.22",
+ "@mdx-js/mdx": "^1.6.22",
+ "@mdx-js/react": "^1.6.22",
+ "@storybook/addons": "6.4.9",
+ "@storybook/api": "6.4.9",
+ "@storybook/builder-webpack4": "6.4.9",
+ "@storybook/client-logger": "6.4.9",
+ "@storybook/components": "6.4.9",
+ "@storybook/core": "6.4.9",
+ "@storybook/core-events": "6.4.9",
+ "@storybook/csf": "0.0.2--canary.87bc651.0",
+ "@storybook/csf-tools": "6.4.9",
+ "@storybook/node-logger": "6.4.9",
+ "@storybook/postinstall": "6.4.9",
+ "@storybook/preview-web": "6.4.9",
+ "@storybook/source-loader": "6.4.9",
+ "@storybook/store": "6.4.9",
+ "@storybook/theming": "6.4.9",
+ "acorn": "^7.4.1",
+ "acorn-jsx": "^5.3.1",
+ "acorn-walk": "^7.2.0",
+ "core-js": "^3.8.2",
+ "doctrine": "^3.0.0",
+ "escodegen": "^2.0.0",
+ "fast-deep-equal": "^3.1.3",
+ "global": "^4.4.0",
+ "html-tags": "^3.1.0",
+ "js-string-escape": "^1.0.1",
+ "loader-utils": "^2.0.0",
+ "lodash": "^4.17.21",
+ "nanoid": "^3.1.23",
+ "p-limit": "^3.1.0",
+ "prettier": "^2.2.1",
+ "prop-types": "^15.7.2",
+ "react-element-to-jsx-string": "^14.3.4",
+ "regenerator-runtime": "^0.13.7",
+ "remark-external-links": "^8.0.0",
+ "remark-slug": "^6.0.0",
+ "ts-dedent": "^2.0.0",
+ "util-deprecate": "^1.0.2"
+ }
+ },
+ "@storybook/addon-essentials": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/addon-essentials/-/addon-essentials-6.4.9.tgz",
+ "integrity": "sha512-3YOtGJsmS7A4aIaclnEqTgO+fUEX63pHq2CvqIKPGLVPgLmn6MnEhkkV2j30MfAkoe3oynLqFBvkCdYwzwJxNQ==",
+ "dev": true,
+ "requires": {
+ "@storybook/addon-actions": "6.4.9",
+ "@storybook/addon-backgrounds": "6.4.9",
+ "@storybook/addon-controls": "6.4.9",
+ "@storybook/addon-docs": "6.4.9",
+ "@storybook/addon-measure": "6.4.9",
+ "@storybook/addon-outline": "6.4.9",
+ "@storybook/addon-toolbars": "6.4.9",
+ "@storybook/addon-viewport": "6.4.9",
+ "@storybook/addons": "6.4.9",
+ "@storybook/api": "6.4.9",
+ "@storybook/node-logger": "6.4.9",
+ "core-js": "^3.8.2",
+ "regenerator-runtime": "^0.13.7",
+ "ts-dedent": "^2.0.0"
+ }
+ },
+ "@storybook/addon-links": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/addon-links/-/addon-links-6.4.9.tgz",
+ "integrity": "sha512-xXFz/bmw67u4+zPVqJdiJkCtGrO2wAhcsLc4QSTc2+Xgkvkk7ulcRguiujAy5bfinhPa6U1vpJrrg5GFGV+trA==",
+ "dev": true,
+ "requires": {
+ "@storybook/addons": "6.4.9",
+ "@storybook/client-logger": "6.4.9",
+ "@storybook/core-events": "6.4.9",
+ "@storybook/csf": "0.0.2--canary.87bc651.0",
+ "@storybook/router": "6.4.9",
+ "@types/qs": "^6.9.5",
+ "core-js": "^3.8.2",
+ "global": "^4.4.0",
+ "prop-types": "^15.7.2",
+ "qs": "^6.10.0",
+ "regenerator-runtime": "^0.13.7",
+ "ts-dedent": "^2.0.0"
+ }
+ },
+ "@storybook/addon-measure": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/addon-measure/-/addon-measure-6.4.9.tgz",
+ "integrity": "sha512-c7r98kZM0i7ZrNf0BZe/12BwTYGDLUnmyNcLhugquvezkm32R1SaqXF8K1bGkWkSuzBvt49lAXXPPGUh+ByWEQ==",
+ "dev": true,
+ "requires": {
+ "@storybook/addons": "6.4.9",
+ "@storybook/api": "6.4.9",
+ "@storybook/client-logger": "6.4.9",
+ "@storybook/components": "6.4.9",
+ "@storybook/core-events": "6.4.9",
+ "@storybook/csf": "0.0.2--canary.87bc651.0",
+ "core-js": "^3.8.2",
+ "global": "^4.4.0"
+ }
+ },
+ "@storybook/addon-outline": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/addon-outline/-/addon-outline-6.4.9.tgz",
+ "integrity": "sha512-pXXfqisYfdoxyJuSogNBOUiqIugv0sZGYDJXuwEgEDZ27bZD6fCQmsK3mqSmRzAfXwDqTKvWuu2SRbEk/cRRGA==",
+ "dev": true,
+ "requires": {
+ "@storybook/addons": "6.4.9",
+ "@storybook/api": "6.4.9",
+ "@storybook/client-logger": "6.4.9",
+ "@storybook/components": "6.4.9",
+ "@storybook/core-events": "6.4.9",
+ "@storybook/csf": "0.0.2--canary.87bc651.0",
+ "core-js": "^3.8.2",
+ "global": "^4.4.0",
+ "regenerator-runtime": "^0.13.7",
+ "ts-dedent": "^2.0.0"
+ }
+ },
+ "@storybook/addon-toolbars": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/addon-toolbars/-/addon-toolbars-6.4.9.tgz",
+ "integrity": "sha512-fep1lLDcyaQJdR8rC/lJTamiiJ8Ilio580d9aXDM651b7uHqhxM0dJvM9hObBU8dOj/R3hIAszgTvdTzYlL2cQ==",
+ "dev": true,
+ "requires": {
+ "@storybook/addons": "6.4.9",
+ "@storybook/api": "6.4.9",
+ "@storybook/components": "6.4.9",
+ "@storybook/theming": "6.4.9",
+ "core-js": "^3.8.2",
+ "regenerator-runtime": "^0.13.7"
+ }
+ },
+ "@storybook/addon-viewport": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/addon-viewport/-/addon-viewport-6.4.9.tgz",
+ "integrity": "sha512-iqDcfbOG3TClybDEIi+hOKq8PDKNldyAiqBeak4AfGp+lIZ4NvhHgS5RCNylMVKpOUMbGIeWiSFxQ/oglEN1zA==",
+ "dev": true,
+ "requires": {
+ "@storybook/addons": "6.4.9",
+ "@storybook/api": "6.4.9",
+ "@storybook/client-logger": "6.4.9",
+ "@storybook/components": "6.4.9",
+ "@storybook/core-events": "6.4.9",
+ "@storybook/theming": "6.4.9",
+ "core-js": "^3.8.2",
+ "global": "^4.4.0",
+ "memoizerific": "^1.11.3",
+ "prop-types": "^15.7.2",
+ "regenerator-runtime": "^0.13.7"
+ }
+ },
+ "@storybook/addons": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/addons/-/addons-6.4.9.tgz",
+ "integrity": "sha512-y+oiN2zd+pbRWwkf6aQj4tPDFn+rQkrv7fiVoMxsYub+kKyZ3CNOuTSJH+A1A+eBL6DmzocChUyO6jvZFuh6Dg==",
+ "dev": true,
+ "requires": {
+ "@storybook/api": "6.4.9",
+ "@storybook/channels": "6.4.9",
+ "@storybook/client-logger": "6.4.9",
+ "@storybook/core-events": "6.4.9",
+ "@storybook/csf": "0.0.2--canary.87bc651.0",
+ "@storybook/router": "6.4.9",
+ "@storybook/theming": "6.4.9",
+ "@types/webpack-env": "^1.16.0",
+ "core-js": "^3.8.2",
+ "global": "^4.4.0",
+ "regenerator-runtime": "^0.13.7"
+ }
+ },
+ "@storybook/api": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/api/-/api-6.4.9.tgz",
+ "integrity": "sha512-U+YKcDQg8xal9sE5eSMXB9vcqk8fD1pSyewyAjjbsW5hV0B3L3i4u7z/EAD9Ujbnor+Cvxq+XGvp+Qnc5Gd40A==",
+ "dev": true,
+ "requires": {
+ "@storybook/channels": "6.4.9",
+ "@storybook/client-logger": "6.4.9",
+ "@storybook/core-events": "6.4.9",
+ "@storybook/csf": "0.0.2--canary.87bc651.0",
+ "@storybook/router": "6.4.9",
+ "@storybook/semver": "^7.3.2",
+ "@storybook/theming": "6.4.9",
+ "core-js": "^3.8.2",
+ "fast-deep-equal": "^3.1.3",
+ "global": "^4.4.0",
+ "lodash": "^4.17.21",
+ "memoizerific": "^1.11.3",
+ "regenerator-runtime": "^0.13.7",
+ "store2": "^2.12.0",
+ "telejson": "^5.3.2",
+ "ts-dedent": "^2.0.0",
+ "util-deprecate": "^1.0.2"
+ }
+ },
+ "@storybook/builder-webpack4": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/builder-webpack4/-/builder-webpack4-6.4.9.tgz",
+ "integrity": "sha512-nDbXDd3A8dvalCiuBZuUT6/GQP14+fuxTj5g+AppCgV1gLO45lXWtX75Hc0IbZrIQte6tDg5xeFQamZSLPMcGg==",
+ "dev": true,
+ "requires": {
+ "@babel/core": "^7.12.10",
+ "@babel/plugin-proposal-class-properties": "^7.12.1",
+ "@babel/plugin-proposal-decorators": "^7.12.12",
+ "@babel/plugin-proposal-export-default-from": "^7.12.1",
+ "@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
+ "@babel/plugin-proposal-object-rest-spread": "^7.12.1",
+ "@babel/plugin-proposal-optional-chaining": "^7.12.7",
+ "@babel/plugin-proposal-private-methods": "^7.12.1",
+ "@babel/plugin-syntax-dynamic-import": "^7.8.3",
+ "@babel/plugin-transform-arrow-functions": "^7.12.1",
+ "@babel/plugin-transform-block-scoping": "^7.12.12",
+ "@babel/plugin-transform-classes": "^7.12.1",
+ "@babel/plugin-transform-destructuring": "^7.12.1",
+ "@babel/plugin-transform-for-of": "^7.12.1",
+ "@babel/plugin-transform-parameters": "^7.12.1",
+ "@babel/plugin-transform-shorthand-properties": "^7.12.1",
+ "@babel/plugin-transform-spread": "^7.12.1",
+ "@babel/plugin-transform-template-literals": "^7.12.1",
+ "@babel/preset-env": "^7.12.11",
+ "@babel/preset-react": "^7.12.10",
+ "@babel/preset-typescript": "^7.12.7",
+ "@storybook/addons": "6.4.9",
+ "@storybook/api": "6.4.9",
+ "@storybook/channel-postmessage": "6.4.9",
+ "@storybook/channels": "6.4.9",
+ "@storybook/client-api": "6.4.9",
+ "@storybook/client-logger": "6.4.9",
+ "@storybook/components": "6.4.9",
+ "@storybook/core-common": "6.4.9",
+ "@storybook/core-events": "6.4.9",
+ "@storybook/node-logger": "6.4.9",
+ "@storybook/preview-web": "6.4.9",
+ "@storybook/router": "6.4.9",
+ "@storybook/semver": "^7.3.2",
+ "@storybook/store": "6.4.9",
+ "@storybook/theming": "6.4.9",
+ "@storybook/ui": "6.4.9",
+ "@types/node": "^14.0.10",
+ "@types/webpack": "^4.41.26",
+ "autoprefixer": "^9.8.6",
+ "babel-loader": "^8.0.0",
+ "babel-plugin-macros": "^2.8.0",
+ "babel-plugin-polyfill-corejs3": "^0.1.0",
+ "case-sensitive-paths-webpack-plugin": "^2.3.0",
+ "core-js": "^3.8.2",
+ "css-loader": "^3.6.0",
+ "file-loader": "^6.2.0",
+ "find-up": "^5.0.0",
+ "fork-ts-checker-webpack-plugin": "^4.1.6",
+ "glob": "^7.1.6",
+ "glob-promise": "^3.4.0",
+ "global": "^4.4.0",
+ "html-webpack-plugin": "^4.0.0",
+ "pnp-webpack-plugin": "1.6.4",
+ "postcss": "^7.0.36",
+ "postcss-flexbugs-fixes": "^4.2.1",
+ "postcss-loader": "^4.2.0",
+ "raw-loader": "^4.0.2",
+ "react-dev-utils": "^11.0.4",
+ "stable": "^0.1.8",
+ "style-loader": "^1.3.0",
+ "terser-webpack-plugin": "^4.2.3",
+ "ts-dedent": "^2.0.0",
+ "url-loader": "^4.1.1",
+ "util-deprecate": "^1.0.2",
+ "webpack": "4",
+ "webpack-dev-middleware": "^3.7.3",
+ "webpack-filter-warnings-plugin": "^1.2.1",
+ "webpack-hot-middleware": "^2.25.1",
+ "webpack-virtual-modules": "^0.2.2"
+ },
+ "dependencies": {
+ "@babel/helper-define-polyfill-provider": {
+ "version": "0.1.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.1.5.tgz",
+ "integrity": "sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-compilation-targets": "^7.13.0",
+ "@babel/helper-module-imports": "^7.12.13",
+ "@babel/helper-plugin-utils": "^7.13.0",
+ "@babel/traverse": "^7.13.0",
+ "debug": "^4.1.1",
+ "lodash.debounce": "^4.0.8",
+ "resolve": "^1.14.2",
+ "semver": "^6.1.2"
+ }
+ },
+ "@types/node": {
+ "version": "14.18.5",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.5.tgz",
+ "integrity": "sha512-LMy+vDDcQR48EZdEx5wRX1q/sEl6NdGuHXPnfeL8ixkwCOSZ2qnIyIZmcCbdX0MeRqHhAcHmX+haCbrS8Run+A==",
+ "dev": true
+ },
+ "babel-plugin-polyfill-corejs3": {
+ "version": "0.1.7",
+ "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.1.7.tgz",
+ "integrity": "sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-define-polyfill-provider": "^0.1.5",
+ "core-js-compat": "^3.8.1"
+ }
+ }
+ }
+ },
+ "@storybook/channel-postmessage": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/channel-postmessage/-/channel-postmessage-6.4.9.tgz",
+ "integrity": "sha512-0Oif4e6/oORv4oc2tHhIRts9faE/ID9BETn4uqIUWSl2CX1wYpKYDm04rEg3M6WvSzsi+6fzoSFvkr9xC5Ns2w==",
+ "dev": true,
+ "requires": {
+ "@storybook/channels": "6.4.9",
+ "@storybook/client-logger": "6.4.9",
+ "@storybook/core-events": "6.4.9",
+ "core-js": "^3.8.2",
+ "global": "^4.4.0",
+ "qs": "^6.10.0",
+ "telejson": "^5.3.2"
+ }
+ },
+ "@storybook/channel-websocket": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/channel-websocket/-/channel-websocket-6.4.9.tgz",
+ "integrity": "sha512-R1O5yrNtN+dIAghqMXUqoaH7XWBcrKi5miVRn7QelKG3qZwPL8HQa7gIPc/b6S2D6hD3kQdSuv/zTIjjMg7wyw==",
+ "dev": true,
+ "requires": {
+ "@storybook/channels": "6.4.9",
+ "@storybook/client-logger": "6.4.9",
+ "core-js": "^3.8.2",
+ "global": "^4.4.0",
+ "telejson": "^5.3.2"
+ }
+ },
+ "@storybook/channels": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-6.4.9.tgz",
+ "integrity": "sha512-DNW1qDg+1WFS2aMdGh658WJXh8xBXliO5KAn0786DKcWCsKjfsPPQg/QCHczHK0+s5SZyzQT5aOBb4kTRHELQA==",
+ "dev": true,
+ "requires": {
+ "core-js": "^3.8.2",
+ "ts-dedent": "^2.0.0",
+ "util-deprecate": "^1.0.2"
+ }
+ },
+ "@storybook/client-api": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/client-api/-/client-api-6.4.9.tgz",
+ "integrity": "sha512-1IljlTr+ea2pIr6oiPhygORtccOdEb7SqaVzWDfLCHOhUnJ2Ka5UY9ADqDa35jvSSdRdynfk9Yl5/msY0yY1yg==",
+ "dev": true,
+ "requires": {
+ "@storybook/addons": "6.4.9",
+ "@storybook/channel-postmessage": "6.4.9",
+ "@storybook/channels": "6.4.9",
+ "@storybook/client-logger": "6.4.9",
+ "@storybook/core-events": "6.4.9",
+ "@storybook/csf": "0.0.2--canary.87bc651.0",
+ "@storybook/store": "6.4.9",
+ "@types/qs": "^6.9.5",
+ "@types/webpack-env": "^1.16.0",
+ "core-js": "^3.8.2",
+ "fast-deep-equal": "^3.1.3",
+ "global": "^4.4.0",
+ "lodash": "^4.17.21",
+ "memoizerific": "^1.11.3",
+ "qs": "^6.10.0",
+ "regenerator-runtime": "^0.13.7",
+ "store2": "^2.12.0",
+ "synchronous-promise": "^2.0.15",
+ "ts-dedent": "^2.0.0",
+ "util-deprecate": "^1.0.2"
+ }
+ },
+ "@storybook/client-logger": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-6.4.9.tgz",
+ "integrity": "sha512-BVagmmHcuKDZ/XROADfN3tiolaDW2qG0iLmDhyV1gONnbGE6X5Qm19Jt2VYu3LvjKF1zMPSWm4mz7HtgdwKbuQ==",
+ "dev": true,
+ "requires": {
+ "core-js": "^3.8.2",
+ "global": "^4.4.0"
+ }
+ },
+ "@storybook/components": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/components/-/components-6.4.9.tgz",
+ "integrity": "sha512-uOUR97S6kjptkMCh15pYNM1vAqFXtpyneuonmBco5vADJb3ds0n2a8NeVd+myIbhIXn55x0OHKiSwBH/u7swCQ==",
+ "dev": true,
+ "requires": {
+ "@popperjs/core": "^2.6.0",
+ "@storybook/client-logger": "6.4.9",
+ "@storybook/csf": "0.0.2--canary.87bc651.0",
+ "@storybook/theming": "6.4.9",
+ "@types/color-convert": "^2.0.0",
+ "@types/overlayscrollbars": "^1.12.0",
+ "@types/react-syntax-highlighter": "11.0.5",
+ "color-convert": "^2.0.1",
+ "core-js": "^3.8.2",
+ "fast-deep-equal": "^3.1.3",
+ "global": "^4.4.0",
+ "lodash": "^4.17.21",
+ "markdown-to-jsx": "^7.1.3",
+ "memoizerific": "^1.11.3",
+ "overlayscrollbars": "^1.13.1",
+ "polished": "^4.0.5",
+ "prop-types": "^15.7.2",
+ "react-colorful": "^5.1.2",
+ "react-popper-tooltip": "^3.1.1",
+ "react-syntax-highlighter": "^13.5.3",
+ "react-textarea-autosize": "^8.3.0",
+ "regenerator-runtime": "^0.13.7",
+ "ts-dedent": "^2.0.0",
+ "util-deprecate": "^1.0.2"
+ }
+ },
+ "@storybook/core": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/core/-/core-6.4.9.tgz",
+ "integrity": "sha512-Mzhiy13loMSd3PCygK3t7HIT3X3L35iZmbe6+2xVbVmc/3ypCmq4PQALCUoDOGk37Ifrhop6bo6sl4s9YQ6UFw==",
+ "dev": true,
+ "requires": {
+ "@storybook/core-client": "6.4.9",
+ "@storybook/core-server": "6.4.9"
+ }
+ },
+ "@storybook/core-client": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/core-client/-/core-client-6.4.9.tgz",
+ "integrity": "sha512-LZSpTtvBlpcn+Ifh0jQXlm/8wva2zZ2v13yxYIxX6tAwQvmB54U0N4VdGVmtkiszEp7TQUAzA8Pcyp4GWE+UMA==",
+ "dev": true,
+ "requires": {
+ "@storybook/addons": "6.4.9",
+ "@storybook/channel-postmessage": "6.4.9",
+ "@storybook/channel-websocket": "6.4.9",
+ "@storybook/client-api": "6.4.9",
+ "@storybook/client-logger": "6.4.9",
+ "@storybook/core-events": "6.4.9",
+ "@storybook/csf": "0.0.2--canary.87bc651.0",
+ "@storybook/preview-web": "6.4.9",
+ "@storybook/store": "6.4.9",
+ "@storybook/ui": "6.4.9",
+ "airbnb-js-shims": "^2.2.1",
+ "ansi-to-html": "^0.6.11",
+ "core-js": "^3.8.2",
+ "global": "^4.4.0",
+ "lodash": "^4.17.21",
+ "qs": "^6.10.0",
+ "regenerator-runtime": "^0.13.7",
+ "ts-dedent": "^2.0.0",
+ "unfetch": "^4.2.0",
+ "util-deprecate": "^1.0.2"
+ }
+ },
+ "@storybook/core-common": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/core-common/-/core-common-6.4.9.tgz",
+ "integrity": "sha512-wVHRfUGnj/Tv8nGjv128NDQ5Zp6c63rSXd1lYLzfZPTJmGOz4rpPPez2IZSnnDwbAWeqUSMekFVZPj4v6yuujQ==",
+ "dev": true,
+ "requires": {
+ "@babel/core": "^7.12.10",
+ "@babel/plugin-proposal-class-properties": "^7.12.1",
+ "@babel/plugin-proposal-decorators": "^7.12.12",
+ "@babel/plugin-proposal-export-default-from": "^7.12.1",
+ "@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
+ "@babel/plugin-proposal-object-rest-spread": "^7.12.1",
+ "@babel/plugin-proposal-optional-chaining": "^7.12.7",
+ "@babel/plugin-proposal-private-methods": "^7.12.1",
+ "@babel/plugin-syntax-dynamic-import": "^7.8.3",
+ "@babel/plugin-transform-arrow-functions": "^7.12.1",
+ "@babel/plugin-transform-block-scoping": "^7.12.12",
+ "@babel/plugin-transform-classes": "^7.12.1",
+ "@babel/plugin-transform-destructuring": "^7.12.1",
+ "@babel/plugin-transform-for-of": "^7.12.1",
+ "@babel/plugin-transform-parameters": "^7.12.1",
+ "@babel/plugin-transform-shorthand-properties": "^7.12.1",
+ "@babel/plugin-transform-spread": "^7.12.1",
+ "@babel/preset-env": "^7.12.11",
+ "@babel/preset-react": "^7.12.10",
+ "@babel/preset-typescript": "^7.12.7",
+ "@babel/register": "^7.12.1",
+ "@storybook/node-logger": "6.4.9",
+ "@storybook/semver": "^7.3.2",
+ "@types/node": "^14.0.10",
+ "@types/pretty-hrtime": "^1.0.0",
+ "babel-loader": "^8.0.0",
+ "babel-plugin-macros": "^3.0.1",
+ "babel-plugin-polyfill-corejs3": "^0.1.0",
+ "chalk": "^4.1.0",
+ "core-js": "^3.8.2",
+ "express": "^4.17.1",
+ "file-system-cache": "^1.0.5",
+ "find-up": "^5.0.0",
+ "fork-ts-checker-webpack-plugin": "^6.0.4",
+ "fs-extra": "^9.0.1",
+ "glob": "^7.1.6",
+ "handlebars": "^4.7.7",
+ "interpret": "^2.2.0",
+ "json5": "^2.1.3",
+ "lazy-universal-dotenv": "^3.0.1",
+ "picomatch": "^2.3.0",
+ "pkg-dir": "^5.0.0",
+ "pretty-hrtime": "^1.0.3",
+ "resolve-from": "^5.0.0",
+ "slash": "^3.0.0",
+ "telejson": "^5.3.2",
+ "ts-dedent": "^2.0.0",
+ "util-deprecate": "^1.0.2",
+ "webpack": "4"
+ },
+ "dependencies": {
+ "@babel/helper-define-polyfill-provider": {
+ "version": "0.1.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.1.5.tgz",
+ "integrity": "sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-compilation-targets": "^7.13.0",
+ "@babel/helper-module-imports": "^7.12.13",
+ "@babel/helper-plugin-utils": "^7.13.0",
+ "@babel/traverse": "^7.13.0",
+ "debug": "^4.1.1",
+ "lodash.debounce": "^4.0.8",
+ "resolve": "^1.14.2",
+ "semver": "^6.1.2"
+ }
+ },
+ "@types/node": {
+ "version": "14.18.5",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.5.tgz",
+ "integrity": "sha512-LMy+vDDcQR48EZdEx5wRX1q/sEl6NdGuHXPnfeL8ixkwCOSZ2qnIyIZmcCbdX0MeRqHhAcHmX+haCbrS8Run+A==",
+ "dev": true
+ },
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^2.0.1"
+ }
+ },
+ "babel-plugin-macros": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz",
+ "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==",
+ "dev": true,
+ "requires": {
+ "@babel/runtime": "^7.12.5",
+ "cosmiconfig": "^7.0.0",
+ "resolve": "^1.19.0"
+ },
+ "dependencies": {
+ "cosmiconfig": {
+ "version": "7.0.1",
+ "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz",
+ "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==",
+ "dev": true,
+ "requires": {
+ "@types/parse-json": "^4.0.0",
+ "import-fresh": "^3.2.1",
+ "parse-json": "^5.0.0",
+ "path-type": "^4.0.0",
+ "yaml": "^1.10.0"
+ }
+ }
+ }
+ },
+ "babel-plugin-polyfill-corejs3": {
+ "version": "0.1.7",
+ "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.1.7.tgz",
+ "integrity": "sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-define-polyfill-provider": "^0.1.5",
+ "core-js-compat": "^3.8.1"
+ }
+ },
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "fork-ts-checker-webpack-plugin": {
+ "version": "6.5.0",
+ "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.0.tgz",
+ "integrity": "sha512-cS178Y+xxtIjEUorcHddKS7yCMlrDPV31mt47blKKRfMd70Kxu5xruAFE2o9sDY6wVC5deuob/u/alD04YYHnw==",
+ "dev": true,
+ "requires": {
+ "@babel/code-frame": "^7.8.3",
+ "@types/json-schema": "^7.0.5",
+ "chalk": "^4.1.0",
+ "chokidar": "^3.4.2",
+ "cosmiconfig": "^6.0.0",
+ "deepmerge": "^4.2.2",
+ "fs-extra": "^9.0.0",
+ "glob": "^7.1.6",
+ "memfs": "^3.1.2",
+ "minimatch": "^3.0.4",
+ "schema-utils": "2.7.0",
+ "semver": "^7.3.2",
+ "tapable": "^1.0.0"
+ },
+ "dependencies": {
+ "semver": {
+ "version": "7.3.5",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz",
+ "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==",
+ "dev": true,
+ "requires": {
+ "lru-cache": "^6.0.0"
+ }
+ }
+ }
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "schema-utils": {
+ "version": "2.7.0",
+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz",
+ "integrity": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==",
+ "dev": true,
+ "requires": {
+ "@types/json-schema": "^7.0.4",
+ "ajv": "^6.12.2",
+ "ajv-keywords": "^3.4.1"
+ }
+ },
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "@storybook/core-events": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-6.4.9.tgz",
+ "integrity": "sha512-YhU2zJr6wzvh5naYYuy/0UKNJ/SaXu73sIr0Tx60ur3bL08XkRg7eZ9vBhNBTlAa35oZqI0iiGCh0ljiX7yEVQ==",
+ "dev": true,
+ "requires": {
+ "core-js": "^3.8.2"
+ }
+ },
+ "@storybook/core-server": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/core-server/-/core-server-6.4.9.tgz",
+ "integrity": "sha512-Ht/e17/SNW9BgdvBsnKmqNrlZ6CpHeVsClEUnauMov8I5rxjvKBVmI/UsbJJIy6H6VLiL/RwrA3RvLoAoZE8dA==",
+ "dev": true,
+ "requires": {
+ "@discoveryjs/json-ext": "^0.5.3",
+ "@storybook/builder-webpack4": "6.4.9",
+ "@storybook/core-client": "6.4.9",
+ "@storybook/core-common": "6.4.9",
+ "@storybook/core-events": "6.4.9",
+ "@storybook/csf": "0.0.2--canary.87bc651.0",
+ "@storybook/csf-tools": "6.4.9",
+ "@storybook/manager-webpack4": "6.4.9",
+ "@storybook/node-logger": "6.4.9",
+ "@storybook/semver": "^7.3.2",
+ "@storybook/store": "6.4.9",
+ "@types/node": "^14.0.10",
+ "@types/node-fetch": "^2.5.7",
+ "@types/pretty-hrtime": "^1.0.0",
+ "@types/webpack": "^4.41.26",
+ "better-opn": "^2.1.1",
+ "boxen": "^5.1.2",
+ "chalk": "^4.1.0",
+ "cli-table3": "0.6.0",
+ "commander": "^6.2.1",
+ "compression": "^1.7.4",
+ "core-js": "^3.8.2",
+ "cpy": "^8.1.2",
+ "detect-port": "^1.3.0",
+ "express": "^4.17.1",
+ "file-system-cache": "^1.0.5",
+ "fs-extra": "^9.0.1",
+ "globby": "^11.0.2",
+ "ip": "^1.1.5",
+ "lodash": "^4.17.21",
+ "node-fetch": "^2.6.1",
+ "pretty-hrtime": "^1.0.3",
+ "prompts": "^2.4.0",
+ "regenerator-runtime": "^0.13.7",
+ "serve-favicon": "^2.5.0",
+ "slash": "^3.0.0",
+ "telejson": "^5.3.3",
+ "ts-dedent": "^2.0.0",
+ "util-deprecate": "^1.0.2",
+ "watchpack": "^2.2.0",
+ "webpack": "4",
+ "ws": "^8.2.3"
+ },
+ "dependencies": {
+ "@types/node": {
+ "version": "14.18.5",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.5.tgz",
+ "integrity": "sha512-LMy+vDDcQR48EZdEx5wRX1q/sEl6NdGuHXPnfeL8ixkwCOSZ2qnIyIZmcCbdX0MeRqHhAcHmX+haCbrS8Run+A==",
+ "dev": true
+ },
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ },
+ "ws": {
+ "version": "8.4.0",
+ "resolved": "https://registry.npmjs.org/ws/-/ws-8.4.0.tgz",
+ "integrity": "sha512-IHVsKe2pjajSUIl4KYMQOdlyliovpEPquKkqbwswulszzI7r0SfQrxnXdWAEqOlDCLrVSJzo+O1hAwdog2sKSQ==",
+ "dev": true
+ }
+ }
+ },
+ "@storybook/csf": {
+ "version": "0.0.2--canary.87bc651.0",
+ "resolved": "https://registry.npmjs.org/@storybook/csf/-/csf-0.0.2--canary.87bc651.0.tgz",
+ "integrity": "sha512-ajk1Uxa+rBpFQHKrCcTmJyQBXZ5slfwHVEaKlkuFaW77it8RgbPJp/ccna3sgoi8oZ7FkkOyvv1Ve4SmwFqRqw==",
+ "dev": true,
+ "requires": {
+ "lodash": "^4.17.15"
+ }
+ },
+ "@storybook/csf-tools": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/csf-tools/-/csf-tools-6.4.9.tgz",
+ "integrity": "sha512-zbgsx9vY5XOA9bBmyw+KyuRspFXAjEJ6I3d/6Z3G1kNBeOEj9i3DT7O99Rd/THfL/3mWl8DJ/7CJVPk1ZYxunA==",
+ "dev": true,
+ "requires": {
+ "@babel/core": "^7.12.10",
+ "@babel/generator": "^7.12.11",
+ "@babel/parser": "^7.12.11",
+ "@babel/plugin-transform-react-jsx": "^7.12.12",
+ "@babel/preset-env": "^7.12.11",
+ "@babel/traverse": "^7.12.11",
+ "@babel/types": "^7.12.11",
+ "@mdx-js/mdx": "^1.6.22",
+ "@storybook/csf": "0.0.2--canary.87bc651.0",
+ "core-js": "^3.8.2",
+ "fs-extra": "^9.0.1",
+ "global": "^4.4.0",
+ "js-string-escape": "^1.0.1",
+ "lodash": "^4.17.21",
+ "prettier": "^2.2.1",
+ "regenerator-runtime": "^0.13.7",
+ "ts-dedent": "^2.0.0"
+ }
+ },
+ "@storybook/manager-webpack4": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/manager-webpack4/-/manager-webpack4-6.4.9.tgz",
+ "integrity": "sha512-828x3rqMuzBNSb13MSDo2nchY7fuywh+8+Vk+fn00MvBYJjogd5RQFx5ocwhHzmwXbnESIerlGwe81AzMck8ng==",
+ "dev": true,
+ "requires": {
+ "@babel/core": "^7.12.10",
+ "@babel/plugin-transform-template-literals": "^7.12.1",
+ "@babel/preset-react": "^7.12.10",
+ "@storybook/addons": "6.4.9",
+ "@storybook/core-client": "6.4.9",
+ "@storybook/core-common": "6.4.9",
+ "@storybook/node-logger": "6.4.9",
+ "@storybook/theming": "6.4.9",
+ "@storybook/ui": "6.4.9",
+ "@types/node": "^14.0.10",
+ "@types/webpack": "^4.41.26",
+ "babel-loader": "^8.0.0",
+ "case-sensitive-paths-webpack-plugin": "^2.3.0",
+ "chalk": "^4.1.0",
+ "core-js": "^3.8.2",
+ "css-loader": "^3.6.0",
+ "express": "^4.17.1",
+ "file-loader": "^6.2.0",
+ "file-system-cache": "^1.0.5",
+ "find-up": "^5.0.0",
+ "fs-extra": "^9.0.1",
+ "html-webpack-plugin": "^4.0.0",
+ "node-fetch": "^2.6.1",
+ "pnp-webpack-plugin": "1.6.4",
+ "read-pkg-up": "^7.0.1",
+ "regenerator-runtime": "^0.13.7",
+ "resolve-from": "^5.0.0",
+ "style-loader": "^1.3.0",
+ "telejson": "^5.3.2",
+ "terser-webpack-plugin": "^4.2.3",
+ "ts-dedent": "^2.0.0",
+ "url-loader": "^4.1.1",
+ "util-deprecate": "^1.0.2",
+ "webpack": "4",
+ "webpack-dev-middleware": "^3.7.3",
+ "webpack-virtual-modules": "^0.2.2"
+ },
+ "dependencies": {
+ "@types/node": {
+ "version": "14.18.5",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.5.tgz",
+ "integrity": "sha512-LMy+vDDcQR48EZdEx5wRX1q/sEl6NdGuHXPnfeL8ixkwCOSZ2qnIyIZmcCbdX0MeRqHhAcHmX+haCbrS8Run+A==",
+ "dev": true
+ },
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "@storybook/node-logger": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-6.4.9.tgz",
+ "integrity": "sha512-giil8dA85poH+nslKHIS9tSxp4MP4ensOec7el6GwKiqzAQXITrm3b7gw61ETj39jAQeLIcQYGHLq1oqQo4/YQ==",
+ "dev": true,
+ "requires": {
+ "@types/npmlog": "^4.1.2",
+ "chalk": "^4.1.0",
+ "core-js": "^3.8.2",
+ "npmlog": "^5.0.1",
+ "pretty-hrtime": "^1.0.3"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "@storybook/postinstall": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/postinstall/-/postinstall-6.4.9.tgz",
+ "integrity": "sha512-LNI5ku+Q4DI7DD3Y8liYVgGPasp8r/5gzNLSJZ1ad03OW/mASjhSsOKp2eD8Jxud2T5JDe3/yKH9u/LP6SepBQ==",
+ "dev": true,
+ "requires": {
+ "core-js": "^3.8.2"
+ }
+ },
+ "@storybook/preview-web": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/preview-web/-/preview-web-6.4.9.tgz",
+ "integrity": "sha512-fMB/akK14oc+4FBkeVJBtZQdxikOraXQSVn6zoVR93WVDR7JVeV+oz8rxjuK3n6ZEWN87iKH946k4jLoZ95tdw==",
+ "dev": true,
+ "requires": {
+ "@storybook/addons": "6.4.9",
+ "@storybook/channel-postmessage": "6.4.9",
+ "@storybook/client-logger": "6.4.9",
+ "@storybook/core-events": "6.4.9",
+ "@storybook/csf": "0.0.2--canary.87bc651.0",
+ "@storybook/store": "6.4.9",
+ "ansi-to-html": "^0.6.11",
+ "core-js": "^3.8.2",
+ "global": "^4.4.0",
+ "lodash": "^4.17.21",
+ "qs": "^6.10.0",
+ "regenerator-runtime": "^0.13.7",
+ "synchronous-promise": "^2.0.15",
+ "ts-dedent": "^2.0.0",
+ "unfetch": "^4.2.0",
+ "util-deprecate": "^1.0.2"
+ }
+ },
+ "@storybook/react": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/react/-/react-6.4.9.tgz",
+ "integrity": "sha512-GVbCeii2dIKSD66pAdn9bY7mRoOzBE6ll+vRDW1n00FIvGfckmoIZtQHpurca7iNTAoufv8+t0L9i7IItdrUuw==",
+ "dev": true,
+ "requires": {
+ "@babel/preset-flow": "^7.12.1",
+ "@babel/preset-react": "^7.12.10",
+ "@pmmmwh/react-refresh-webpack-plugin": "^0.5.1",
+ "@storybook/addons": "6.4.9",
+ "@storybook/core": "6.4.9",
+ "@storybook/core-common": "6.4.9",
+ "@storybook/csf": "0.0.2--canary.87bc651.0",
+ "@storybook/node-logger": "6.4.9",
+ "@storybook/react-docgen-typescript-plugin": "1.0.2-canary.253f8c1.0",
+ "@storybook/semver": "^7.3.2",
+ "@storybook/store": "6.4.9",
+ "@types/webpack-env": "^1.16.0",
+ "babel-plugin-add-react-displayname": "^0.0.5",
+ "babel-plugin-named-asset-import": "^0.3.1",
+ "babel-plugin-react-docgen": "^4.2.1",
+ "core-js": "^3.8.2",
+ "global": "^4.4.0",
+ "lodash": "^4.17.21",
+ "prop-types": "^15.7.2",
+ "react-dev-utils": "^11.0.4",
+ "react-refresh": "^0.10.0",
+ "read-pkg-up": "^7.0.1",
+ "regenerator-runtime": "^0.13.7",
+ "ts-dedent": "^2.0.0",
+ "webpack": "4"
+ }
+ },
+ "@storybook/react-docgen-typescript-plugin": {
+ "version": "1.0.2-canary.253f8c1.0",
+ "resolved": "https://registry.npmjs.org/@storybook/react-docgen-typescript-plugin/-/react-docgen-typescript-plugin-1.0.2-canary.253f8c1.0.tgz",
+ "integrity": "sha512-mmoRG/rNzAiTbh+vGP8d57dfcR2aP+5/Ll03KKFyfy5FqWFm/Gh7u27ikx1I3LmVMI8n6jh5SdWMkMKon7/tDw==",
+ "dev": true,
+ "requires": {
+ "debug": "^4.1.1",
+ "endent": "^2.0.1",
+ "find-cache-dir": "^3.3.1",
+ "flat-cache": "^3.0.4",
+ "micromatch": "^4.0.2",
+ "react-docgen-typescript": "^2.0.0",
+ "tslib": "^2.0.0"
+ },
+ "dependencies": {
+ "find-cache-dir": {
+ "version": "3.3.2",
+ "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz",
+ "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==",
+ "dev": true,
+ "requires": {
+ "commondir": "^1.0.1",
+ "make-dir": "^3.0.2",
+ "pkg-dir": "^4.1.0"
+ }
+ },
+ "find-up": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
+ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
+ "dev": true,
+ "requires": {
+ "locate-path": "^5.0.0",
+ "path-exists": "^4.0.0"
+ }
+ },
+ "locate-path": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
+ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
+ "dev": true,
+ "requires": {
+ "p-locate": "^4.1.0"
+ }
+ },
+ "make-dir": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
+ "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
+ "dev": true,
+ "requires": {
+ "semver": "^6.0.0"
+ }
+ },
+ "p-limit": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
+ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
+ "dev": true,
+ "requires": {
+ "p-try": "^2.0.0"
+ }
+ },
+ "p-locate": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
+ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
+ "dev": true,
+ "requires": {
+ "p-limit": "^2.2.0"
+ }
+ },
+ "pkg-dir": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
+ "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
+ "dev": true,
+ "requires": {
+ "find-up": "^4.0.0"
+ }
+ }
+ }
+ },
+ "@storybook/router": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/router/-/router-6.4.9.tgz",
+ "integrity": "sha512-GT2KtVHo/mBjxDBFB5ZtVJVf8vC+3p5kRlQC4jao68caVp7H24ikPOkcY54VnQwwe4A1aXpGbJXUyTisEPFlhQ==",
+ "dev": true,
+ "requires": {
+ "@storybook/client-logger": "6.4.9",
+ "core-js": "^3.8.2",
+ "fast-deep-equal": "^3.1.3",
+ "global": "^4.4.0",
+ "history": "5.0.0",
+ "lodash": "^4.17.21",
+ "memoizerific": "^1.11.3",
+ "qs": "^6.10.0",
+ "react-router": "^6.0.0",
+ "react-router-dom": "^6.0.0",
+ "ts-dedent": "^2.0.0"
+ }
+ },
+ "@storybook/semver": {
+ "version": "7.3.2",
+ "resolved": "https://registry.npmjs.org/@storybook/semver/-/semver-7.3.2.tgz",
+ "integrity": "sha512-SWeszlsiPsMI0Ps0jVNtH64cI5c0UF3f7KgjVKJoNP30crQ6wUSddY2hsdeczZXEKVJGEn50Q60flcGsQGIcrg==",
+ "dev": true,
+ "requires": {
+ "core-js": "^3.6.5",
+ "find-up": "^4.1.0"
+ },
+ "dependencies": {
+ "find-up": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
+ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
+ "dev": true,
+ "requires": {
+ "locate-path": "^5.0.0",
+ "path-exists": "^4.0.0"
+ }
+ },
+ "locate-path": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
+ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
+ "dev": true,
+ "requires": {
+ "p-locate": "^4.1.0"
+ }
+ },
+ "p-limit": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
+ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
+ "dev": true,
+ "requires": {
+ "p-try": "^2.0.0"
+ }
+ },
+ "p-locate": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
+ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
+ "dev": true,
+ "requires": {
+ "p-limit": "^2.2.0"
+ }
+ }
+ }
+ },
+ "@storybook/source-loader": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/source-loader/-/source-loader-6.4.9.tgz",
+ "integrity": "sha512-J/Jpcc15hnWa2DB/EZ4gVJvdsY3b3CDIGW/NahuNXk36neS+g4lF3qqVNAEqQ1pPZ0O8gMgazyZPGm0MHwUWlw==",
+ "dev": true,
+ "requires": {
+ "@storybook/addons": "6.4.9",
+ "@storybook/client-logger": "6.4.9",
+ "@storybook/csf": "0.0.2--canary.87bc651.0",
+ "core-js": "^3.8.2",
+ "estraverse": "^5.2.0",
+ "global": "^4.4.0",
+ "loader-utils": "^2.0.0",
+ "lodash": "^4.17.21",
+ "prettier": "^2.2.1",
+ "regenerator-runtime": "^0.13.7"
+ }
+ },
+ "@storybook/store": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/store/-/store-6.4.9.tgz",
+ "integrity": "sha512-H30KfiM2XyGMJcLaOepCEUsU7S3C/f7t46s6Nhw0lc5w/6HTQc2jGV3GgG3lUAUAzEQoxmmu61w3N2a6eyRzmg==",
+ "dev": true,
+ "requires": {
+ "@storybook/addons": "6.4.9",
+ "@storybook/client-logger": "6.4.9",
+ "@storybook/core-events": "6.4.9",
+ "@storybook/csf": "0.0.2--canary.87bc651.0",
+ "core-js": "^3.8.2",
+ "fast-deep-equal": "^3.1.3",
+ "global": "^4.4.0",
+ "lodash": "^4.17.21",
+ "memoizerific": "^1.11.3",
+ "regenerator-runtime": "^0.13.7",
+ "slash": "^3.0.0",
+ "stable": "^0.1.8",
+ "synchronous-promise": "^2.0.15",
+ "ts-dedent": "^2.0.0",
+ "util-deprecate": "^1.0.2"
+ }
+ },
+ "@storybook/theming": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-6.4.9.tgz",
+ "integrity": "sha512-Do6GH6nKjxfnBg6djcIYAjss5FW9SRKASKxLYxX2RyWJBpz0m/8GfcGcRyORy0yFTk6jByA3Hs+WFH3GnEbWkw==",
+ "dev": true,
+ "requires": {
+ "@emotion/core": "^10.1.1",
+ "@emotion/is-prop-valid": "^0.8.6",
+ "@emotion/styled": "^10.0.27",
+ "@storybook/client-logger": "6.4.9",
+ "core-js": "^3.8.2",
+ "deep-object-diff": "^1.1.0",
+ "emotion-theming": "^10.0.27",
+ "global": "^4.4.0",
+ "memoizerific": "^1.11.3",
+ "polished": "^4.0.5",
+ "resolve-from": "^5.0.0",
+ "ts-dedent": "^2.0.0"
+ }
+ },
+ "@storybook/ui": {
+ "version": "6.4.9",
+ "resolved": "https://registry.npmjs.org/@storybook/ui/-/ui-6.4.9.tgz",
+ "integrity": "sha512-lJbsaMTH4SyhqUTmt+msSYI6fKSSfOnrzZVu6bQ73+MfRyGKh1ki2Nyhh+w8BiGEIOz02WlEpZC0y11FfgEgXw==",
+ "dev": true,
+ "requires": {
+ "@emotion/core": "^10.1.1",
+ "@storybook/addons": "6.4.9",
+ "@storybook/api": "6.4.9",
+ "@storybook/channels": "6.4.9",
+ "@storybook/client-logger": "6.4.9",
+ "@storybook/components": "6.4.9",
+ "@storybook/core-events": "6.4.9",
+ "@storybook/router": "6.4.9",
+ "@storybook/semver": "^7.3.2",
+ "@storybook/theming": "6.4.9",
+ "copy-to-clipboard": "^3.3.1",
+ "core-js": "^3.8.2",
+ "core-js-pure": "^3.8.2",
+ "downshift": "^6.0.15",
+ "emotion-theming": "^10.0.27",
+ "fuse.js": "^3.6.1",
+ "global": "^4.4.0",
+ "lodash": "^4.17.21",
+ "markdown-to-jsx": "^7.1.3",
+ "memoizerific": "^1.11.3",
+ "polished": "^4.0.5",
+ "qs": "^6.10.0",
+ "react-draggable": "^4.4.3",
+ "react-helmet-async": "^1.0.7",
+ "react-sizeme": "^3.0.1",
+ "regenerator-runtime": "^0.13.7",
+ "resolve-from": "^5.0.0",
+ "store2": "^2.12.0"
+ }
+ },
+ "@tootallnate/once": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz",
+ "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==",
+ "dev": true
+ },
+ "@types/babel__core": {
+ "version": "7.1.18",
+ "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.18.tgz",
+ "integrity": "sha512-S7unDjm/C7z2A2R9NzfKCK1I+BAALDtxEmsJBwlB3EzNfb929ykjL++1CK9LO++EIp2fQrC8O+BwjKvz6UeDyQ==",
+ "dev": true,
+ "requires": {
+ "@babel/parser": "^7.1.0",
+ "@babel/types": "^7.0.0",
+ "@types/babel__generator": "*",
+ "@types/babel__template": "*",
+ "@types/babel__traverse": "*"
+ }
+ },
+ "@types/babel__generator": {
+ "version": "7.6.4",
+ "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz",
+ "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.0.0"
+ }
+ },
+ "@types/babel__template": {
+ "version": "7.4.1",
+ "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz",
+ "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==",
+ "dev": true,
+ "requires": {
+ "@babel/parser": "^7.1.0",
+ "@babel/types": "^7.0.0"
+ }
+ },
+ "@types/babel__traverse": {
+ "version": "7.14.2",
+ "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.14.2.tgz",
+ "integrity": "sha512-K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.3.0"
+ }
+ },
+ "@types/color-convert": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/@types/color-convert/-/color-convert-2.0.0.tgz",
+ "integrity": "sha512-m7GG7IKKGuJUXvkZ1qqG3ChccdIM/qBBo913z+Xft0nKCX4hAU/IxKwZBU4cpRZ7GS5kV4vOblUkILtSShCPXQ==",
+ "dev": true,
+ "requires": {
+ "@types/color-name": "*"
+ }
+ },
+ "@types/color-name": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz",
+ "integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==",
+ "dev": true
+ },
+ "@types/debug": {
+ "version": "4.1.7",
+ "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.7.tgz",
+ "integrity": "sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg==",
+ "dev": true,
+ "requires": {
+ "@types/ms": "*"
+ }
+ },
+ "@types/estree": {
+ "version": "0.0.39",
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz",
+ "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==",
+ "dev": true
+ },
+ "@types/glob": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz",
+ "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==",
+ "dev": true,
+ "requires": {
+ "@types/minimatch": "*",
+ "@types/node": "*"
+ }
+ },
+ "@types/graceful-fs": {
+ "version": "4.1.5",
+ "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz",
+ "integrity": "sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==",
+ "dev": true,
+ "requires": {
+ "@types/node": "*"
+ }
+ },
+ "@types/hast": {
+ "version": "2.3.4",
+ "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.4.tgz",
+ "integrity": "sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==",
+ "dev": true,
+ "requires": {
+ "@types/unist": "*"
+ }
+ },
+ "@types/html-minifier-terser": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-5.1.2.tgz",
+ "integrity": "sha512-h4lTMgMJctJybDp8CQrxTUiiYmedihHWkjnF/8Pxseu2S6Nlfcy8kwboQ8yejh456rP2yWoEVm1sS/FVsfM48w==",
+ "dev": true
+ },
+ "@types/is-function": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/@types/is-function/-/is-function-1.0.1.tgz",
+ "integrity": "sha512-A79HEEiwXTFtfY+Bcbo58M2GRYzCr9itHWzbzHVFNEYCcoU/MMGwYYf721gBrnhpj1s6RGVVha/IgNFnR0Iw/Q==",
+ "dev": true
+ },
+ "@types/istanbul-lib-coverage": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz",
+ "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==",
+ "dev": true
+ },
+ "@types/istanbul-lib-report": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz",
+ "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==",
+ "dev": true,
+ "requires": {
+ "@types/istanbul-lib-coverage": "*"
+ }
+ },
+ "@types/istanbul-reports": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz",
+ "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==",
+ "dev": true,
+ "requires": {
+ "@types/istanbul-lib-report": "*"
+ }
+ },
+ "@types/jest": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/@types/jest/-/jest-27.4.0.tgz",
+ "integrity": "sha512-gHl8XuC1RZ8H2j5sHv/JqsaxXkDDM9iDOgu0Wp8sjs4u/snb2PVehyWXJPr+ORA0RPpgw231mnutWI1+0hgjIQ==",
+ "dev": true,
+ "requires": {
+ "jest-diff": "^27.0.0",
+ "pretty-format": "^27.0.0"
+ }
+ },
+ "@types/json-schema": {
+ "version": "7.0.9",
+ "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.9.tgz",
+ "integrity": "sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ==",
+ "dev": true
+ },
+ "@types/katex": {
+ "version": "0.11.1",
+ "resolved": "https://registry.npmjs.org/@types/katex/-/katex-0.11.1.tgz",
+ "integrity": "sha512-DUlIj2nk0YnJdlWgsFuVKcX27MLW0KbKmGVoUHmFr+74FYYNUDAaj9ZqTADvsbE8rfxuVmSFc7KczYn5Y09ozg==",
+ "dev": true
+ },
+ "@types/mdast": {
+ "version": "3.0.10",
+ "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.10.tgz",
+ "integrity": "sha512-W864tg/Osz1+9f4lrGTZpCSO5/z4608eUp19tbozkq2HJK6i3z1kT0H9tlADXuYIb1YYOBByU4Jsqkk75q48qA==",
+ "dev": true,
+ "requires": {
+ "@types/unist": "*"
+ }
+ },
+ "@types/minimatch": {
+ "version": "3.0.5",
+ "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz",
+ "integrity": "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==",
+ "dev": true
+ },
+ "@types/ms": {
+ "version": "0.7.31",
+ "resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.31.tgz",
+ "integrity": "sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==",
+ "dev": true
+ },
+ "@types/node": {
+ "version": "17.0.8",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.8.tgz",
+ "integrity": "sha512-YofkM6fGv4gDJq78g4j0mMuGMkZVxZDgtU0JRdx6FgiJDG+0fY0GKVolOV8WqVmEhLCXkQRjwDdKyPxJp/uucg=="
+ },
+ "@types/node-fetch": {
+ "version": "2.5.12",
+ "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.5.12.tgz",
+ "integrity": "sha512-MKgC4dlq4kKNa/mYrwpKfzQMB5X3ee5U6fSprkKpToBqBmX4nFZL9cW5jl6sWn+xpRJ7ypWh2yyqqr8UUCstSw==",
+ "dev": true,
+ "requires": {
+ "@types/node": "*",
+ "form-data": "^3.0.0"
+ }
+ },
+ "@types/normalize-package-data": {
+ "version": "2.4.1",
+ "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz",
+ "integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==",
+ "dev": true
+ },
+ "@types/npmlog": {
+ "version": "4.1.4",
+ "resolved": "https://registry.npmjs.org/@types/npmlog/-/npmlog-4.1.4.tgz",
+ "integrity": "sha512-WKG4gTr8przEZBiJ5r3s8ZIAoMXNbOgQ+j/d5O4X3x6kZJRLNvyUJuUK/KoG3+8BaOHPhp2m7WC6JKKeovDSzQ==",
+ "dev": true
+ },
+ "@types/overlayscrollbars": {
+ "version": "1.12.1",
+ "resolved": "https://registry.npmjs.org/@types/overlayscrollbars/-/overlayscrollbars-1.12.1.tgz",
+ "integrity": "sha512-V25YHbSoKQN35UasHf0EKD9U2vcmexRSp78qa8UglxFH8H3D+adEa9zGZwrqpH4TdvqeMrgMqVqsLB4woAryrQ==",
+ "dev": true
+ },
+ "@types/parse-json": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz",
+ "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==",
+ "dev": true
+ },
+ "@types/parse5": {
+ "version": "5.0.3",
+ "resolved": "https://registry.npmjs.org/@types/parse5/-/parse5-5.0.3.tgz",
+ "integrity": "sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw==",
+ "dev": true
+ },
+ "@types/prettier": {
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.4.2.tgz",
+ "integrity": "sha512-ekoj4qOQYp7CvjX8ZDBgN86w3MqQhLE1hczEJbEIjgFEumDy+na/4AJAbLXfgEWFNB2pKadM5rPFtuSGMWK7xA==",
+ "dev": true
+ },
+ "@types/pretty-hrtime": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/@types/pretty-hrtime/-/pretty-hrtime-1.0.1.tgz",
+ "integrity": "sha512-VjID5MJb1eGKthz2qUerWT8+R4b9N+CHvGCzg9fn4kWZgaF9AhdYikQio3R7wV8YY1NsQKPaCwKz1Yff+aHNUQ==",
+ "dev": true
+ },
+ "@types/prop-types": {
+ "version": "15.7.4",
+ "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.4.tgz",
+ "integrity": "sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ==",
+ "dev": true
+ },
+ "@types/qs": {
+ "version": "6.9.7",
+ "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz",
+ "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==",
+ "dev": true
+ },
+ "@types/react": {
+ "version": "17.0.38",
+ "resolved": "https://registry.npmjs.org/@types/react/-/react-17.0.38.tgz",
+ "integrity": "sha512-SI92X1IA+FMnP3qM5m4QReluXzhcmovhZnLNm3pyeQlooi02qI7sLiepEYqT678uNiyc25XfCqxREFpy3W7YhQ==",
+ "dev": true,
+ "requires": {
+ "@types/prop-types": "*",
+ "@types/scheduler": "*",
+ "csstype": "^3.0.2"
+ },
+ "dependencies": {
+ "csstype": {
+ "version": "3.0.10",
+ "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.10.tgz",
+ "integrity": "sha512-2u44ZG2OcNUO9HDp/Jl8C07x6pU/eTR3ncV91SiK3dhG9TWvRVsCoJw14Ckx5DgWkzGA3waZWO3d7pgqpUI/XA==",
+ "dev": true
+ }
+ }
+ },
+ "@types/react-syntax-highlighter": {
+ "version": "11.0.5",
+ "resolved": "https://registry.npmjs.org/@types/react-syntax-highlighter/-/react-syntax-highlighter-11.0.5.tgz",
+ "integrity": "sha512-VIOi9i2Oj5XsmWWoB72p3KlZoEbdRAcechJa8Ztebw7bDl2YmR+odxIqhtJGp1q2EozHs02US+gzxJ9nuf56qg==",
+ "dev": true,
+ "requires": {
+ "@types/react": "*"
+ }
+ },
+ "@types/scheduler": {
+ "version": "0.16.2",
+ "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz",
+ "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==",
+ "dev": true
+ },
+ "@types/source-list-map": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.2.tgz",
+ "integrity": "sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==",
+ "dev": true
+ },
+ "@types/stack-utils": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz",
+ "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==",
+ "dev": true
+ },
+ "@types/tapable": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.8.tgz",
+ "integrity": "sha512-ipixuVrh2OdNmauvtT51o3d8z12p6LtFW9in7U79der/kwejjdNchQC5UMn5u/KxNoM7VHHOs/l8KS8uHxhODQ==",
+ "dev": true
+ },
+ "@types/uglify-js": {
+ "version": "3.13.1",
+ "resolved": "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.13.1.tgz",
+ "integrity": "sha512-O3MmRAk6ZuAKa9CHgg0Pr0+lUOqoMLpc9AS4R8ano2auvsg7IE8syF3Xh/NPr26TWklxYcqoEEFdzLLs1fV9PQ==",
+ "dev": true,
+ "requires": {
+ "source-map": "^0.6.1"
+ },
+ "dependencies": {
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ }
+ }
+ },
+ "@types/unist": {
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.6.tgz",
+ "integrity": "sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ=="
+ },
+ "@types/webpack": {
+ "version": "4.41.32",
+ "resolved": "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.32.tgz",
+ "integrity": "sha512-cb+0ioil/7oz5//7tZUSwbrSAN/NWHrQylz5cW8G0dWTcF/g+/dSdMlKVZspBYuMAN1+WnwHrkxiRrLcwd0Heg==",
+ "dev": true,
+ "requires": {
+ "@types/node": "*",
+ "@types/tapable": "^1",
+ "@types/uglify-js": "*",
+ "@types/webpack-sources": "*",
+ "anymatch": "^3.0.0",
+ "source-map": "^0.6.0"
+ },
+ "dependencies": {
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ }
+ }
+ },
+ "@types/webpack-env": {
+ "version": "1.16.3",
+ "resolved": "https://registry.npmjs.org/@types/webpack-env/-/webpack-env-1.16.3.tgz",
+ "integrity": "sha512-9gtOPPkfyNoEqCQgx4qJKkuNm/x0R2hKR7fdl7zvTJyHnIisuE/LfvXOsYWL0o3qq6uiBnKZNNNzi3l0y/X+xw==",
+ "dev": true
+ },
+ "@types/webpack-sources": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-3.2.0.tgz",
+ "integrity": "sha512-Ft7YH3lEVRQ6ls8k4Ff1oB4jN6oy/XmU6tQISKdhfh+1mR+viZFphS6WL0IrtDOzvefmJg5a0s7ZQoRXwqTEFg==",
+ "dev": true,
+ "requires": {
+ "@types/node": "*",
+ "@types/source-list-map": "*",
+ "source-map": "^0.7.3"
+ },
+ "dependencies": {
+ "source-map": {
+ "version": "0.7.3",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz",
+ "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==",
+ "dev": true
+ }
+ }
+ },
+ "@types/yargs": {
+ "version": "15.0.14",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.14.tgz",
+ "integrity": "sha512-yEJzHoxf6SyQGhBhIYGXQDSCkJjB6HohDShto7m8vaKg9Yp0Yn8+71J9eakh2bnPg6BfsH9PRMhiRTZnd4eXGQ==",
+ "dev": true,
+ "requires": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "@types/yargs-parser": {
+ "version": "20.2.1",
+ "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-20.2.1.tgz",
+ "integrity": "sha512-7tFImggNeNBVMsn0vLrpn1H1uPrUBdnARPTpZoitY37ZrdJREzf7I16tMrlK3hen349gr1NYh8CmZQa7CTG6Aw==",
+ "dev": true
+ },
+ "@webassemblyjs/ast": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.9.0.tgz",
+ "integrity": "sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==",
+ "dev": true,
+ "requires": {
+ "@webassemblyjs/helper-module-context": "1.9.0",
+ "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
+ "@webassemblyjs/wast-parser": "1.9.0"
+ }
+ },
+ "@webassemblyjs/floating-point-hex-parser": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz",
+ "integrity": "sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==",
+ "dev": true
+ },
+ "@webassemblyjs/helper-api-error": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz",
+ "integrity": "sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==",
+ "dev": true
+ },
+ "@webassemblyjs/helper-buffer": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz",
+ "integrity": "sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==",
+ "dev": true
+ },
+ "@webassemblyjs/helper-code-frame": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz",
+ "integrity": "sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==",
+ "dev": true,
+ "requires": {
+ "@webassemblyjs/wast-printer": "1.9.0"
+ }
+ },
+ "@webassemblyjs/helper-fsm": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz",
+ "integrity": "sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==",
+ "dev": true
+ },
+ "@webassemblyjs/helper-module-context": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz",
+ "integrity": "sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==",
+ "dev": true,
+ "requires": {
+ "@webassemblyjs/ast": "1.9.0"
+ }
+ },
+ "@webassemblyjs/helper-wasm-bytecode": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz",
+ "integrity": "sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==",
+ "dev": true
+ },
+ "@webassemblyjs/helper-wasm-section": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz",
+ "integrity": "sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==",
+ "dev": true,
+ "requires": {
+ "@webassemblyjs/ast": "1.9.0",
+ "@webassemblyjs/helper-buffer": "1.9.0",
+ "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
+ "@webassemblyjs/wasm-gen": "1.9.0"
+ }
+ },
+ "@webassemblyjs/ieee754": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz",
+ "integrity": "sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==",
+ "dev": true,
+ "requires": {
+ "@xtuc/ieee754": "^1.2.0"
+ }
+ },
+ "@webassemblyjs/leb128": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.9.0.tgz",
+ "integrity": "sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==",
+ "dev": true,
+ "requires": {
+ "@xtuc/long": "4.2.2"
+ }
+ },
+ "@webassemblyjs/utf8": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.9.0.tgz",
+ "integrity": "sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==",
+ "dev": true
+ },
+ "@webassemblyjs/wasm-edit": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz",
+ "integrity": "sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==",
+ "dev": true,
+ "requires": {
+ "@webassemblyjs/ast": "1.9.0",
+ "@webassemblyjs/helper-buffer": "1.9.0",
+ "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
+ "@webassemblyjs/helper-wasm-section": "1.9.0",
+ "@webassemblyjs/wasm-gen": "1.9.0",
+ "@webassemblyjs/wasm-opt": "1.9.0",
+ "@webassemblyjs/wasm-parser": "1.9.0",
+ "@webassemblyjs/wast-printer": "1.9.0"
+ }
+ },
+ "@webassemblyjs/wasm-gen": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz",
+ "integrity": "sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==",
+ "dev": true,
+ "requires": {
+ "@webassemblyjs/ast": "1.9.0",
+ "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
+ "@webassemblyjs/ieee754": "1.9.0",
+ "@webassemblyjs/leb128": "1.9.0",
+ "@webassemblyjs/utf8": "1.9.0"
+ }
+ },
+ "@webassemblyjs/wasm-opt": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz",
+ "integrity": "sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==",
+ "dev": true,
+ "requires": {
+ "@webassemblyjs/ast": "1.9.0",
+ "@webassemblyjs/helper-buffer": "1.9.0",
+ "@webassemblyjs/wasm-gen": "1.9.0",
+ "@webassemblyjs/wasm-parser": "1.9.0"
+ }
+ },
+ "@webassemblyjs/wasm-parser": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz",
+ "integrity": "sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==",
+ "dev": true,
+ "requires": {
+ "@webassemblyjs/ast": "1.9.0",
+ "@webassemblyjs/helper-api-error": "1.9.0",
+ "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
+ "@webassemblyjs/ieee754": "1.9.0",
+ "@webassemblyjs/leb128": "1.9.0",
+ "@webassemblyjs/utf8": "1.9.0"
+ }
+ },
+ "@webassemblyjs/wast-parser": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz",
+ "integrity": "sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==",
+ "dev": true,
+ "requires": {
+ "@webassemblyjs/ast": "1.9.0",
+ "@webassemblyjs/floating-point-hex-parser": "1.9.0",
+ "@webassemblyjs/helper-api-error": "1.9.0",
+ "@webassemblyjs/helper-code-frame": "1.9.0",
+ "@webassemblyjs/helper-fsm": "1.9.0",
+ "@xtuc/long": "4.2.2"
+ }
+ },
+ "@webassemblyjs/wast-printer": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz",
+ "integrity": "sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==",
+ "dev": true,
+ "requires": {
+ "@webassemblyjs/ast": "1.9.0",
+ "@webassemblyjs/wast-parser": "1.9.0",
+ "@xtuc/long": "4.2.2"
+ }
+ },
+ "@xtuc/ieee754": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz",
+ "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==",
+ "dev": true
+ },
+ "@xtuc/long": {
+ "version": "4.2.2",
+ "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz",
+ "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==",
+ "dev": true
+ },
+ "abab": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz",
+ "integrity": "sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==",
+ "dev": true
+ },
+ "accepts": {
+ "version": "1.3.7",
+ "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz",
+ "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==",
+ "dev": true,
+ "requires": {
+ "mime-types": "~2.1.24",
+ "negotiator": "0.6.2"
+ }
+ },
+ "acorn": {
+ "version": "7.4.1",
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz",
+ "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==",
+ "dev": true
+ },
+ "acorn-globals": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz",
+ "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==",
+ "dev": true,
+ "requires": {
+ "acorn": "^7.1.1",
+ "acorn-walk": "^7.1.1"
+ }
+ },
+ "acorn-jsx": {
+ "version": "5.3.2",
+ "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
+ "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
+ "dev": true
+ },
+ "acorn-walk": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz",
+ "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==",
+ "dev": true
+ },
+ "address": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/address/-/address-1.1.2.tgz",
+ "integrity": "sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==",
+ "dev": true
+ },
+ "agent-base": {
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
+ "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
+ "dev": true,
+ "requires": {
+ "debug": "4"
+ }
+ },
+ "aggregate-error": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz",
+ "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==",
+ "dev": true,
+ "requires": {
+ "clean-stack": "^2.0.0",
+ "indent-string": "^4.0.0"
+ }
+ },
+ "airbnb-js-shims": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/airbnb-js-shims/-/airbnb-js-shims-2.2.1.tgz",
+ "integrity": "sha512-wJNXPH66U2xjgo1Zwyjf9EydvJ2Si94+vSdk6EERcBfB2VZkeltpqIats0cqIZMLCXP3zcyaUKGYQeIBT6XjsQ==",
+ "dev": true,
+ "requires": {
+ "array-includes": "^3.0.3",
+ "array.prototype.flat": "^1.2.1",
+ "array.prototype.flatmap": "^1.2.1",
+ "es5-shim": "^4.5.13",
+ "es6-shim": "^0.35.5",
+ "function.prototype.name": "^1.1.0",
+ "globalthis": "^1.0.0",
+ "object.entries": "^1.1.0",
+ "object.fromentries": "^2.0.0 || ^1.0.0",
+ "object.getownpropertydescriptors": "^2.0.3",
+ "object.values": "^1.1.0",
+ "promise.allsettled": "^1.0.0",
+ "promise.prototype.finally": "^3.1.0",
+ "string.prototype.matchall": "^4.0.0 || ^3.0.1",
+ "string.prototype.padend": "^3.0.0",
+ "string.prototype.padstart": "^3.0.0",
+ "symbol.prototype.description": "^1.0.0"
+ }
+ },
+ "ajv": {
+ "version": "6.12.6",
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
+ "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
+ "dev": true,
+ "requires": {
+ "fast-deep-equal": "^3.1.1",
+ "fast-json-stable-stringify": "^2.0.0",
+ "json-schema-traverse": "^0.4.1",
+ "uri-js": "^4.2.2"
+ }
+ },
+ "ajv-errors": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz",
+ "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==",
+ "dev": true
+ },
+ "ajv-keywords": {
+ "version": "3.5.2",
+ "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
+ "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==",
+ "dev": true
+ },
+ "ansi-align": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz",
+ "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==",
+ "dev": true,
+ "requires": {
+ "string-width": "^4.1.0"
+ }
+ },
+ "ansi-colors": {
+ "version": "3.2.4",
+ "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz",
+ "integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==",
+ "dev": true
+ },
+ "ansi-escapes": {
+ "version": "4.3.2",
+ "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz",
+ "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==",
+ "dev": true,
+ "requires": {
+ "type-fest": "^0.21.3"
+ },
+ "dependencies": {
+ "type-fest": {
+ "version": "0.21.3",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz",
+ "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==",
+ "dev": true
+ }
+ }
+ },
+ "ansi-html-community": {
+ "version": "0.0.8",
+ "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz",
+ "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==",
+ "dev": true
+ },
+ "ansi-regex": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
+ "dev": true
+ },
+ "ansi-styles": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
+ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^1.9.0"
+ },
+ "dependencies": {
+ "color-convert": {
+ "version": "1.9.3",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
+ "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
+ "dev": true,
+ "requires": {
+ "color-name": "1.1.3"
+ }
+ },
+ "color-name": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
+ "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=",
+ "dev": true
+ }
+ }
+ },
+ "ansi-to-html": {
+ "version": "0.6.15",
+ "resolved": "https://registry.npmjs.org/ansi-to-html/-/ansi-to-html-0.6.15.tgz",
+ "integrity": "sha512-28ijx2aHJGdzbs+O5SNQF65r6rrKYnkuwTYm8lZlChuoJ9P1vVzIpWO20sQTqTPDXYp6NFwk326vApTtLVFXpQ==",
+ "dev": true,
+ "requires": {
+ "entities": "^2.0.0"
+ }
+ },
+ "anymatch": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz",
+ "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==",
+ "dev": true,
+ "requires": {
+ "normalize-path": "^3.0.0",
+ "picomatch": "^2.0.4"
+ }
+ },
+ "app-root-dir": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/app-root-dir/-/app-root-dir-1.0.2.tgz",
+ "integrity": "sha1-OBh+wt6nV3//Az/8sSFyaS/24Rg=",
+ "dev": true
+ },
+ "aproba": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz",
+ "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==",
+ "dev": true
+ },
+ "are-we-there-yet": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz",
+ "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==",
+ "dev": true,
+ "requires": {
+ "delegates": "^1.0.0",
+ "readable-stream": "^3.6.0"
+ },
+ "dependencies": {
+ "readable-stream": {
+ "version": "3.6.0",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
+ "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
+ "dev": true,
+ "requires": {
+ "inherits": "^2.0.3",
+ "string_decoder": "^1.1.1",
+ "util-deprecate": "^1.0.1"
+ }
+ }
+ }
+ },
+ "argparse": {
+ "version": "1.0.10",
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
+ "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
+ "dev": true,
+ "requires": {
+ "sprintf-js": "~1.0.2"
+ }
+ },
+ "arr-diff": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz",
+ "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=",
+ "dev": true
+ },
+ "arr-flatten": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz",
+ "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==",
+ "dev": true
+ },
+ "arr-union": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz",
+ "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=",
+ "dev": true
+ },
+ "array-flatten": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
+ "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=",
+ "dev": true
+ },
+ "array-includes": {
+ "version": "3.1.4",
+ "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.4.tgz",
+ "integrity": "sha512-ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.19.1",
+ "get-intrinsic": "^1.1.1",
+ "is-string": "^1.0.7"
+ }
+ },
+ "array-union": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz",
+ "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==",
+ "dev": true
+ },
+ "array-uniq": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz",
+ "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=",
+ "dev": true
+ },
+ "array-unique": {
+ "version": "0.3.2",
+ "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz",
+ "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=",
+ "dev": true
+ },
+ "array.prototype.flat": {
+ "version": "1.2.5",
+ "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.2.5.tgz",
+ "integrity": "sha512-KaYU+S+ndVqyUnignHftkwc58o3uVU1jzczILJ1tN2YaIZpFIKBiP/x/j97E5MVPsaCloPbqWLB/8qCTVvT2qg==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.19.0"
+ }
+ },
+ "array.prototype.flatmap": {
+ "version": "1.2.5",
+ "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.2.5.tgz",
+ "integrity": "sha512-08u6rVyi1Lj7oqWbS9nUxliETrtIROT4XGTA4D/LWGten6E3ocm7cy9SIrmNHOL5XVbVuckUp3X6Xyg8/zpvHA==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.0",
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.19.0"
+ }
+ },
+ "array.prototype.map": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/array.prototype.map/-/array.prototype.map-1.0.4.tgz",
+ "integrity": "sha512-Qds9QnX7A0qISY7JT5WuJO0NJPE9CMlC6JzHQfhpqAAQQzufVRoeH7EzUY5GcPTx72voG8LV/5eo+b8Qi8hmhA==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.19.0",
+ "es-array-method-boxes-properly": "^1.0.0",
+ "is-string": "^1.0.7"
+ }
+ },
+ "arrify": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz",
+ "integrity": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==",
+ "dev": true
+ },
+ "asn1.js": {
+ "version": "5.4.1",
+ "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz",
+ "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==",
+ "dev": true,
+ "requires": {
+ "bn.js": "^4.0.0",
+ "inherits": "^2.0.1",
+ "minimalistic-assert": "^1.0.0",
+ "safer-buffer": "^2.1.0"
+ },
+ "dependencies": {
+ "bn.js": {
+ "version": "4.12.0",
+ "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz",
+ "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==",
+ "dev": true
+ }
+ }
+ },
+ "assert": {
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz",
+ "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==",
+ "dev": true,
+ "requires": {
+ "object-assign": "^4.1.1",
+ "util": "0.10.3"
+ },
+ "dependencies": {
+ "inherits": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz",
+ "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=",
+ "dev": true
+ },
+ "util": {
+ "version": "0.10.3",
+ "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz",
+ "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=",
+ "dev": true,
+ "requires": {
+ "inherits": "2.0.1"
+ }
+ }
+ }
+ },
+ "assign-symbols": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz",
+ "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=",
+ "dev": true
+ },
+ "ast-types": {
+ "version": "0.14.2",
+ "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.14.2.tgz",
+ "integrity": "sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==",
+ "dev": true,
+ "requires": {
+ "tslib": "^2.0.1"
+ }
+ },
+ "async-each": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz",
+ "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==",
+ "dev": true,
+ "optional": true
+ },
+ "asynckit": {
+ "version": "0.4.0",
+ "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
+ "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=",
+ "dev": true
+ },
+ "at-least-node": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz",
+ "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==",
+ "dev": true
+ },
+ "atob": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz",
+ "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==",
+ "dev": true
+ },
+ "autoprefixer": {
+ "version": "9.8.8",
+ "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.8.tgz",
+ "integrity": "sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==",
+ "dev": true,
+ "requires": {
+ "browserslist": "^4.12.0",
+ "caniuse-lite": "^1.0.30001109",
+ "normalize-range": "^0.1.2",
+ "num2fraction": "^1.2.2",
+ "picocolors": "^0.2.1",
+ "postcss": "^7.0.32",
+ "postcss-value-parser": "^4.1.0"
+ }
+ },
+ "babel-jest": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-27.4.6.tgz",
+ "integrity": "sha512-qZL0JT0HS1L+lOuH+xC2DVASR3nunZi/ozGhpgauJHgmI7f8rudxf6hUjEHympdQ/J64CdKmPkgfJ+A3U6QCrg==",
+ "dev": true,
+ "requires": {
+ "@jest/transform": "^27.4.6",
+ "@jest/types": "^27.4.2",
+ "@types/babel__core": "^7.1.14",
+ "babel-plugin-istanbul": "^6.1.1",
+ "babel-preset-jest": "^27.4.0",
+ "chalk": "^4.0.0",
+ "graceful-fs": "^4.2.4",
+ "slash": "^3.0.0"
+ },
+ "dependencies": {
+ "@jest/transform": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.4.6.tgz",
+ "integrity": "sha512-9MsufmJC8t5JTpWEQJ0OcOOAXaH5ioaIX6uHVBLBMoCZPfKKQF+EqP8kACAvCZ0Y1h2Zr3uOccg8re+Dr5jxyw==",
+ "dev": true,
+ "requires": {
+ "@babel/core": "^7.1.0",
+ "@jest/types": "^27.4.2",
+ "babel-plugin-istanbul": "^6.1.1",
+ "chalk": "^4.0.0",
+ "convert-source-map": "^1.4.0",
+ "fast-json-stable-stringify": "^2.0.0",
+ "graceful-fs": "^4.2.4",
+ "jest-haste-map": "^27.4.6",
+ "jest-regex-util": "^27.4.0",
+ "jest-util": "^27.4.2",
+ "micromatch": "^4.0.4",
+ "pirates": "^4.0.4",
+ "slash": "^3.0.0",
+ "source-map": "^0.6.1",
+ "write-file-atomic": "^3.0.0"
+ }
+ },
+ "@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "requires": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ }
+ },
+ "@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "requires": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "jest-haste-map": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.4.6.tgz",
+ "integrity": "sha512-0tNpgxg7BKurZeFkIOvGCkbmOHbLFf4LUQOxrQSMjvrQaQe3l6E8x6jYC1NuWkGo5WDdbr8FEzUxV2+LWNawKQ==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^27.4.2",
+ "@types/graceful-fs": "^4.1.2",
+ "@types/node": "*",
+ "anymatch": "^3.0.3",
+ "fb-watchman": "^2.0.0",
+ "fsevents": "^2.3.2",
+ "graceful-fs": "^4.2.4",
+ "jest-regex-util": "^27.4.0",
+ "jest-serializer": "^27.4.0",
+ "jest-util": "^27.4.2",
+ "jest-worker": "^27.4.6",
+ "micromatch": "^4.0.4",
+ "walker": "^1.0.7"
+ }
+ },
+ "jest-regex-util": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.4.0.tgz",
+ "integrity": "sha512-WeCpMpNnqJYMQoOjm1nTtsgbR4XHAk1u00qDoNBQoykM280+/TmgA5Qh5giC1ecy6a5d4hbSsHzpBtu5yvlbEg==",
+ "dev": true
+ },
+ "jest-serializer": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.4.0.tgz",
+ "integrity": "sha512-RDhpcn5f1JYTX2pvJAGDcnsNTnsV9bjYPU8xcV+xPwOXnUPOQwf4ZEuiU6G9H1UztH+OapMgu/ckEVwO87PwnQ==",
+ "dev": true,
+ "requires": {
+ "@types/node": "*",
+ "graceful-fs": "^4.2.4"
+ }
+ },
+ "jest-util": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.4.2.tgz",
+ "integrity": "sha512-YuxxpXU6nlMan9qyLuxHaMMOzXAl5aGZWCSzben5DhLHemYQxCc4YK+4L3ZrCutT8GPQ+ui9k5D8rUJoDioMnA==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.4",
+ "picomatch": "^2.2.3"
+ }
+ },
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "babel-loader": {
+ "version": "8.2.3",
+ "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.3.tgz",
+ "integrity": "sha512-n4Zeta8NC3QAsuyiizu0GkmRcQ6clkV9WFUnUf1iXP//IeSKbWjofW3UHyZVwlOB4y039YQKefawyTn64Zwbuw==",
+ "dev": true,
+ "requires": {
+ "find-cache-dir": "^3.3.1",
+ "loader-utils": "^1.4.0",
+ "make-dir": "^3.1.0",
+ "schema-utils": "^2.6.5"
+ },
+ "dependencies": {
+ "find-cache-dir": {
+ "version": "3.3.2",
+ "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz",
+ "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==",
+ "dev": true,
+ "requires": {
+ "commondir": "^1.0.1",
+ "make-dir": "^3.0.2",
+ "pkg-dir": "^4.1.0"
+ }
+ },
+ "find-up": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
+ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
+ "dev": true,
+ "requires": {
+ "locate-path": "^5.0.0",
+ "path-exists": "^4.0.0"
+ }
+ },
+ "json5": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz",
+ "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==",
+ "dev": true,
+ "requires": {
+ "minimist": "^1.2.0"
+ }
+ },
+ "loader-utils": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz",
+ "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==",
+ "dev": true,
+ "requires": {
+ "big.js": "^5.2.2",
+ "emojis-list": "^3.0.0",
+ "json5": "^1.0.1"
+ }
+ },
+ "locate-path": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
+ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
+ "dev": true,
+ "requires": {
+ "p-locate": "^4.1.0"
+ }
+ },
+ "make-dir": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
+ "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
+ "dev": true,
+ "requires": {
+ "semver": "^6.0.0"
+ }
+ },
+ "p-limit": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
+ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
+ "dev": true,
+ "requires": {
+ "p-try": "^2.0.0"
+ }
+ },
+ "p-locate": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
+ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
+ "dev": true,
+ "requires": {
+ "p-limit": "^2.2.0"
+ }
+ },
+ "pkg-dir": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
+ "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
+ "dev": true,
+ "requires": {
+ "find-up": "^4.0.0"
+ }
+ },
+ "schema-utils": {
+ "version": "2.7.1",
+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz",
+ "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==",
+ "dev": true,
+ "requires": {
+ "@types/json-schema": "^7.0.5",
+ "ajv": "^6.12.4",
+ "ajv-keywords": "^3.5.2"
+ }
+ }
+ }
+ },
+ "babel-plugin-add-react-displayname": {
+ "version": "0.0.5",
+ "resolved": "https://registry.npmjs.org/babel-plugin-add-react-displayname/-/babel-plugin-add-react-displayname-0.0.5.tgz",
+ "integrity": "sha1-M51M3be2X9YtHfnbn+BN4TQSK9U=",
+ "dev": true
+ },
+ "babel-plugin-apply-mdx-type-prop": {
+ "version": "1.6.22",
+ "resolved": "https://registry.npmjs.org/babel-plugin-apply-mdx-type-prop/-/babel-plugin-apply-mdx-type-prop-1.6.22.tgz",
+ "integrity": "sha512-VefL+8o+F/DfK24lPZMtJctrCVOfgbqLAGZSkxwhazQv4VxPg3Za/i40fu22KR2m8eEda+IfSOlPLUSIiLcnCQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "7.10.4",
+ "@mdx-js/util": "1.6.22"
+ },
+ "dependencies": {
+ "@babel/helper-plugin-utils": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
+ "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
+ "dev": true
+ }
+ }
+ },
+ "babel-plugin-dynamic-import-node": {
+ "version": "2.3.3",
+ "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz",
+ "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==",
+ "dev": true,
+ "requires": {
+ "object.assign": "^4.1.0"
+ }
+ },
+ "babel-plugin-emotion": {
+ "version": "10.2.2",
+ "resolved": "https://registry.npmjs.org/babel-plugin-emotion/-/babel-plugin-emotion-10.2.2.tgz",
+ "integrity": "sha512-SMSkGoqTbTyUTDeuVuPIWifPdUGkTk1Kf9BWRiXIOIcuyMfsdp2EjeiiFvOzX8NOBvEh/ypKYvUh2rkgAJMCLA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-module-imports": "^7.0.0",
+ "@emotion/hash": "0.8.0",
+ "@emotion/memoize": "0.7.4",
+ "@emotion/serialize": "^0.11.16",
+ "babel-plugin-macros": "^2.0.0",
+ "babel-plugin-syntax-jsx": "^6.18.0",
+ "convert-source-map": "^1.5.0",
+ "escape-string-regexp": "^1.0.5",
+ "find-root": "^1.1.0",
+ "source-map": "^0.5.7"
+ }
+ },
+ "babel-plugin-extract-import-names": {
+ "version": "1.6.22",
+ "resolved": "https://registry.npmjs.org/babel-plugin-extract-import-names/-/babel-plugin-extract-import-names-1.6.22.tgz",
+ "integrity": "sha512-yJ9BsJaISua7d8zNT7oRG1ZLBJCIdZ4PZqmH8qa9N5AK01ifk3fnkc98AXhtzE7UkfCsEumvoQWgoYLhOnJ7jQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "7.10.4"
+ },
+ "dependencies": {
+ "@babel/helper-plugin-utils": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
+ "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
+ "dev": true
+ }
+ }
+ },
+ "babel-plugin-istanbul": {
+ "version": "6.1.1",
+ "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz",
+ "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.0.0",
+ "@istanbuljs/load-nyc-config": "^1.0.0",
+ "@istanbuljs/schema": "^0.1.2",
+ "istanbul-lib-instrument": "^5.0.4",
+ "test-exclude": "^6.0.0"
+ }
+ },
+ "babel-plugin-jest-hoist": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.4.0.tgz",
+ "integrity": "sha512-Jcu7qS4OX5kTWBc45Hz7BMmgXuJqRnhatqpUhnzGC3OBYpOmf2tv6jFNwZpwM7wU7MUuv2r9IPS/ZlYOuburVw==",
+ "dev": true,
+ "requires": {
+ "@babel/template": "^7.3.3",
+ "@babel/types": "^7.3.3",
+ "@types/babel__core": "^7.0.0",
+ "@types/babel__traverse": "^7.0.6"
+ }
+ },
+ "babel-plugin-macros": {
+ "version": "2.8.0",
+ "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz",
+ "integrity": "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==",
+ "dev": true,
+ "requires": {
+ "@babel/runtime": "^7.7.2",
+ "cosmiconfig": "^6.0.0",
+ "resolve": "^1.12.0"
+ }
+ },
+ "babel-plugin-named-asset-import": {
+ "version": "0.3.8",
+ "resolved": "https://registry.npmjs.org/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.8.tgz",
+ "integrity": "sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==",
+ "dev": true
+ },
+ "babel-plugin-polyfill-corejs2": {
+ "version": "0.2.3",
+ "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.2.3.tgz",
+ "integrity": "sha512-NDZ0auNRzmAfE1oDDPW2JhzIMXUk+FFe2ICejmt5T4ocKgiQx3e0VCRx9NCAidcMtL2RUZaWtXnmjTCkx0tcbA==",
+ "dev": true,
+ "requires": {
+ "@babel/compat-data": "^7.13.11",
+ "@babel/helper-define-polyfill-provider": "^0.2.4",
+ "semver": "^6.1.1"
+ }
+ },
+ "babel-plugin-polyfill-corejs3": {
+ "version": "0.2.5",
+ "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.5.tgz",
+ "integrity": "sha512-ninF5MQNwAX9Z7c9ED+H2pGt1mXdP4TqzlHKyPIYmJIYz0N+++uwdM7RnJukklhzJ54Q84vA4ZJkgs7lu5vqcw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-define-polyfill-provider": "^0.2.2",
+ "core-js-compat": "^3.16.2"
+ }
+ },
+ "babel-plugin-polyfill-regenerator": {
+ "version": "0.2.3",
+ "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.2.3.tgz",
+ "integrity": "sha512-JVE78oRZPKFIeUqFGrSORNzQnrDwZR16oiWeGM8ZyjBn2XAT5OjP+wXx5ESuo33nUsFUEJYjtklnsKbxW5L+7g==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-define-polyfill-provider": "^0.2.4"
+ }
+ },
+ "babel-plugin-react-docgen": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/babel-plugin-react-docgen/-/babel-plugin-react-docgen-4.2.1.tgz",
+ "integrity": "sha512-UQ0NmGHj/HAqi5Bew8WvNfCk8wSsmdgNd8ZdMjBCICtyCJCq9LiqgqvjCYe570/Wg7AQArSq1VQ60Dd/CHN7mQ==",
+ "dev": true,
+ "requires": {
+ "ast-types": "^0.14.2",
+ "lodash": "^4.17.15",
+ "react-docgen": "^5.0.0"
+ }
+ },
+ "babel-plugin-syntax-jsx": {
+ "version": "6.18.0",
+ "resolved": "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz",
+ "integrity": "sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=",
+ "dev": true
+ },
+ "babel-preset-current-node-syntax": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz",
+ "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==",
+ "dev": true,
+ "requires": {
+ "@babel/plugin-syntax-async-generators": "^7.8.4",
+ "@babel/plugin-syntax-bigint": "^7.8.3",
+ "@babel/plugin-syntax-class-properties": "^7.8.3",
+ "@babel/plugin-syntax-import-meta": "^7.8.3",
+ "@babel/plugin-syntax-json-strings": "^7.8.3",
+ "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3",
+ "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",
+ "@babel/plugin-syntax-numeric-separator": "^7.8.3",
+ "@babel/plugin-syntax-object-rest-spread": "^7.8.3",
+ "@babel/plugin-syntax-optional-catch-binding": "^7.8.3",
+ "@babel/plugin-syntax-optional-chaining": "^7.8.3",
+ "@babel/plugin-syntax-top-level-await": "^7.8.3"
+ }
+ },
+ "babel-preset-jest": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.4.0.tgz",
+ "integrity": "sha512-NK4jGYpnBvNxcGo7/ZpZJr51jCGT+3bwwpVIDY2oNfTxJJldRtB4VAcYdgp1loDE50ODuTu+yBjpMAswv5tlpg==",
+ "dev": true,
+ "requires": {
+ "babel-plugin-jest-hoist": "^27.4.0",
+ "babel-preset-current-node-syntax": "^1.0.0"
+ }
+ },
+ "bail": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz",
+ "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==",
+ "dev": true
+ },
+ "balanced-match": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
+ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
+ "dev": true
+ },
+ "base": {
+ "version": "0.11.2",
+ "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz",
+ "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==",
+ "dev": true,
+ "requires": {
+ "cache-base": "^1.0.1",
+ "class-utils": "^0.3.5",
+ "component-emitter": "^1.2.1",
+ "define-property": "^1.0.0",
+ "isobject": "^3.0.1",
+ "mixin-deep": "^1.2.0",
+ "pascalcase": "^0.1.1"
+ },
+ "dependencies": {
+ "define-property": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
+ "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
+ "dev": true,
+ "requires": {
+ "is-descriptor": "^1.0.0"
+ }
+ }
+ }
+ },
+ "base64-js": {
+ "version": "1.5.1",
+ "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
+ "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
+ "dev": true
+ },
+ "batch-processor": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/batch-processor/-/batch-processor-1.0.0.tgz",
+ "integrity": "sha1-dclcMrdI4IUNEMKxaPa9vpiRrOg=",
+ "dev": true
+ },
+ "better-opn": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/better-opn/-/better-opn-2.1.1.tgz",
+ "integrity": "sha512-kIPXZS5qwyKiX/HcRvDYfmBQUa8XP17I0mYZZ0y4UhpYOSvtsLHDYqmomS+Mj20aDvD3knEiQ0ecQy2nhio3yA==",
+ "dev": true,
+ "requires": {
+ "open": "^7.0.3"
+ }
+ },
+ "big.js": {
+ "version": "5.2.2",
+ "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz",
+ "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==",
+ "dev": true
+ },
+ "binary-extensions": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz",
+ "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==",
+ "dev": true
+ },
+ "bindings": {
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz",
+ "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "file-uri-to-path": "1.0.0"
+ }
+ },
+ "bluebird": {
+ "version": "3.7.2",
+ "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz",
+ "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==",
+ "dev": true
+ },
+ "bn.js": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.0.tgz",
+ "integrity": "sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw==",
+ "dev": true
+ },
+ "body-parser": {
+ "version": "1.19.1",
+ "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.1.tgz",
+ "integrity": "sha512-8ljfQi5eBk8EJfECMrgqNGWPEY5jWP+1IzkzkGdFFEwFQZZyaZ21UqdaHktgiMlH0xLHqIFtE/u2OYE5dOtViA==",
+ "dev": true,
+ "requires": {
+ "bytes": "3.1.1",
+ "content-type": "~1.0.4",
+ "debug": "2.6.9",
+ "depd": "~1.1.2",
+ "http-errors": "1.8.1",
+ "iconv-lite": "0.4.24",
+ "on-finished": "~2.3.0",
+ "qs": "6.9.6",
+ "raw-body": "2.4.2",
+ "type-is": "~1.6.18"
+ },
+ "dependencies": {
+ "bytes": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.1.tgz",
+ "integrity": "sha512-dWe4nWO/ruEOY7HkUJ5gFt1DCFV9zPRoJr8pV0/ASQermOZjtq8jMjOprC0Kd10GLN+l7xaUPvxzJFWtxGu8Fg==",
+ "dev": true
+ },
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "dev": true,
+ "requires": {
+ "ms": "2.0.0"
+ }
+ },
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ },
+ "qs": {
+ "version": "6.9.6",
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.9.6.tgz",
+ "integrity": "sha512-TIRk4aqYLNoJUbd+g2lEdz5kLWIuTMRagAXxl78Q0RiVjAOugHmeKNGdd3cwo/ktpf9aL9epCfFqWDEKysUlLQ==",
+ "dev": true
+ }
+ }
+ },
+ "boolbase": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz",
+ "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=",
+ "dev": true
+ },
+ "boxen": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/boxen/-/boxen-5.1.2.tgz",
+ "integrity": "sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==",
+ "dev": true,
+ "requires": {
+ "ansi-align": "^3.0.0",
+ "camelcase": "^6.2.0",
+ "chalk": "^4.1.0",
+ "cli-boxes": "^2.2.1",
+ "string-width": "^4.2.2",
+ "type-fest": "^0.20.2",
+ "widest-line": "^3.1.0",
+ "wrap-ansi": "^7.0.0"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^2.0.1"
+ }
+ },
+ "camelcase": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz",
+ "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==",
+ "dev": true
+ },
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "brace-expansion": {
+ "version": "1.1.11",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
+ "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
+ "dev": true,
+ "requires": {
+ "balanced-match": "^1.0.0",
+ "concat-map": "0.0.1"
+ }
+ },
+ "braces": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
+ "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
+ "dev": true,
+ "requires": {
+ "fill-range": "^7.0.1"
+ }
+ },
+ "brorand": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz",
+ "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=",
+ "dev": true
+ },
+ "browser-process-hrtime": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz",
+ "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==",
+ "dev": true
+ },
+ "browserify-aes": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz",
+ "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==",
+ "dev": true,
+ "requires": {
+ "buffer-xor": "^1.0.3",
+ "cipher-base": "^1.0.0",
+ "create-hash": "^1.1.0",
+ "evp_bytestokey": "^1.0.3",
+ "inherits": "^2.0.1",
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "browserify-cipher": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz",
+ "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==",
+ "dev": true,
+ "requires": {
+ "browserify-aes": "^1.0.4",
+ "browserify-des": "^1.0.0",
+ "evp_bytestokey": "^1.0.0"
+ }
+ },
+ "browserify-des": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz",
+ "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==",
+ "dev": true,
+ "requires": {
+ "cipher-base": "^1.0.1",
+ "des.js": "^1.0.0",
+ "inherits": "^2.0.1",
+ "safe-buffer": "^5.1.2"
+ }
+ },
+ "browserify-rsa": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz",
+ "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==",
+ "dev": true,
+ "requires": {
+ "bn.js": "^5.0.0",
+ "randombytes": "^2.0.1"
+ }
+ },
+ "browserify-sign": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz",
+ "integrity": "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==",
+ "dev": true,
+ "requires": {
+ "bn.js": "^5.1.1",
+ "browserify-rsa": "^4.0.1",
+ "create-hash": "^1.2.0",
+ "create-hmac": "^1.1.7",
+ "elliptic": "^6.5.3",
+ "inherits": "^2.0.4",
+ "parse-asn1": "^5.1.5",
+ "readable-stream": "^3.6.0",
+ "safe-buffer": "^5.2.0"
+ },
+ "dependencies": {
+ "readable-stream": {
+ "version": "3.6.0",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
+ "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
+ "dev": true,
+ "requires": {
+ "inherits": "^2.0.3",
+ "string_decoder": "^1.1.1",
+ "util-deprecate": "^1.0.1"
+ }
+ },
+ "safe-buffer": {
+ "version": "5.2.1",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
+ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
+ "dev": true
+ }
+ }
+ },
+ "browserify-zlib": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz",
+ "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==",
+ "dev": true,
+ "requires": {
+ "pako": "~1.0.5"
+ }
+ },
+ "browserslist": {
+ "version": "4.19.1",
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.19.1.tgz",
+ "integrity": "sha512-u2tbbG5PdKRTUoctO3NBD8FQ5HdPh1ZXPHzp1rwaa5jTc+RV9/+RlWiAIKmjRPQF+xbGM9Kklj5bZQFa2s/38A==",
+ "dev": true,
+ "requires": {
+ "caniuse-lite": "^1.0.30001286",
+ "electron-to-chromium": "^1.4.17",
+ "escalade": "^3.1.1",
+ "node-releases": "^2.0.1",
+ "picocolors": "^1.0.0"
+ },
+ "dependencies": {
+ "picocolors": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz",
+ "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==",
+ "dev": true
+ }
+ }
+ },
+ "bser": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz",
+ "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==",
+ "dev": true,
+ "requires": {
+ "node-int64": "^0.4.0"
+ }
+ },
+ "buffer": {
+ "version": "4.9.2",
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz",
+ "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==",
+ "dev": true,
+ "requires": {
+ "base64-js": "^1.0.2",
+ "ieee754": "^1.1.4",
+ "isarray": "^1.0.0"
+ },
+ "dependencies": {
+ "isarray": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
+ "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
+ "dev": true
+ }
+ }
+ },
+ "buffer-from": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz",
+ "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==",
+ "dev": true
+ },
+ "buffer-xor": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz",
+ "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=",
+ "dev": true
+ },
+ "builtin-status-codes": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz",
+ "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=",
+ "dev": true
+ },
+ "bytes": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz",
+ "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=",
+ "dev": true
+ },
+ "c8": {
+ "version": "7.11.0",
+ "resolved": "https://registry.npmjs.org/c8/-/c8-7.11.0.tgz",
+ "integrity": "sha512-XqPyj1uvlHMr+Y1IeRndC2X5P7iJzJlEJwBpCdBbq2JocXOgJfr+JVfJkyNMGROke5LfKrhSFXGFXnwnRJAUJw==",
+ "dev": true,
+ "requires": {
+ "@bcoe/v8-coverage": "^0.2.3",
+ "@istanbuljs/schema": "^0.1.2",
+ "find-up": "^5.0.0",
+ "foreground-child": "^2.0.0",
+ "istanbul-lib-coverage": "^3.0.1",
+ "istanbul-lib-report": "^3.0.0",
+ "istanbul-reports": "^3.0.2",
+ "rimraf": "^3.0.0",
+ "test-exclude": "^6.0.0",
+ "v8-to-istanbul": "^8.0.0",
+ "yargs": "^16.2.0",
+ "yargs-parser": "^20.2.7"
+ }
+ },
+ "cacache": {
+ "version": "15.3.0",
+ "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz",
+ "integrity": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==",
+ "dev": true,
+ "requires": {
+ "@npmcli/fs": "^1.0.0",
+ "@npmcli/move-file": "^1.0.1",
+ "chownr": "^2.0.0",
+ "fs-minipass": "^2.0.0",
+ "glob": "^7.1.4",
+ "infer-owner": "^1.0.4",
+ "lru-cache": "^6.0.0",
+ "minipass": "^3.1.1",
+ "minipass-collect": "^1.0.2",
+ "minipass-flush": "^1.0.5",
+ "minipass-pipeline": "^1.2.2",
+ "mkdirp": "^1.0.3",
+ "p-map": "^4.0.0",
+ "promise-inflight": "^1.0.1",
+ "rimraf": "^3.0.2",
+ "ssri": "^8.0.1",
+ "tar": "^6.0.2",
+ "unique-filename": "^1.1.1"
+ },
+ "dependencies": {
+ "p-map": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz",
+ "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==",
+ "dev": true,
+ "requires": {
+ "aggregate-error": "^3.0.0"
+ }
+ }
+ }
+ },
+ "cache-base": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz",
+ "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==",
+ "dev": true,
+ "requires": {
+ "collection-visit": "^1.0.0",
+ "component-emitter": "^1.2.1",
+ "get-value": "^2.0.6",
+ "has-value": "^1.0.0",
+ "isobject": "^3.0.1",
+ "set-value": "^2.0.0",
+ "to-object-path": "^0.3.0",
+ "union-value": "^1.0.0",
+ "unset-value": "^1.0.0"
+ }
+ },
+ "call-bind": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz",
+ "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==",
+ "dev": true,
+ "requires": {
+ "function-bind": "^1.1.1",
+ "get-intrinsic": "^1.0.2"
+ }
+ },
+ "call-me-maybe": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.1.tgz",
+ "integrity": "sha1-JtII6onje1y95gJQoV8DHBak1ms=",
+ "dev": true
+ },
+ "callsites": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
+ "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
+ "dev": true
+ },
+ "camel-case": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz",
+ "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==",
+ "dev": true,
+ "requires": {
+ "pascal-case": "^3.1.2",
+ "tslib": "^2.0.3"
+ }
+ },
+ "camelcase": {
+ "version": "5.3.1",
+ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
+ "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==",
+ "dev": true
+ },
+ "camelcase-css": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz",
+ "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==",
+ "dev": true
+ },
+ "caniuse-lite": {
+ "version": "1.0.30001298",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001298.tgz",
+ "integrity": "sha512-AcKqikjMLlvghZL/vfTHorlQsLDhGRalYf1+GmWCf5SCMziSGjRYQW/JEksj14NaYHIR6KIhrFAy0HV5C25UzQ==",
+ "dev": true
+ },
+ "capture-exit": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz",
+ "integrity": "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==",
+ "dev": true,
+ "requires": {
+ "rsvp": "^4.8.4"
+ }
+ },
+ "case-sensitive-paths-webpack-plugin": {
+ "version": "2.4.0",
+ "resolved": "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.4.0.tgz",
+ "integrity": "sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==",
+ "dev": true
+ },
+ "ccount": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz",
+ "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==",
+ "dev": true
+ },
+ "chalk": {
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
+ "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^3.2.1",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^5.3.0"
+ }
+ },
+ "char-regex": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz",
+ "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==",
+ "dev": true
+ },
+ "character-entities": {
+ "version": "1.2.4",
+ "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-1.2.4.tgz",
+ "integrity": "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==",
+ "dev": true
+ },
+ "character-entities-legacy": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz",
+ "integrity": "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==",
+ "dev": true
+ },
+ "character-reference-invalid": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz",
+ "integrity": "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==",
+ "dev": true
+ },
+ "chokidar": {
+ "version": "3.5.2",
+ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz",
+ "integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==",
+ "dev": true,
+ "requires": {
+ "anymatch": "~3.1.2",
+ "braces": "~3.0.2",
+ "fsevents": "~2.3.2",
+ "glob-parent": "~5.1.2",
+ "is-binary-path": "~2.1.0",
+ "is-glob": "~4.0.1",
+ "normalize-path": "~3.0.0",
+ "readdirp": "~3.6.0"
+ }
+ },
+ "chownr": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz",
+ "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==",
+ "dev": true
+ },
+ "chrome-trace-event": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz",
+ "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==",
+ "dev": true
+ },
+ "ci-info": {
+ "version": "3.3.0",
+ "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.3.0.tgz",
+ "integrity": "sha512-riT/3vI5YpVH6/qomlDnJow6TBee2PBKSEpx3O32EGPYbWGIRsIlGRms3Sm74wYE1JMo8RnO04Hb12+v1J5ICw==",
+ "dev": true
+ },
+ "cipher-base": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz",
+ "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==",
+ "dev": true,
+ "requires": {
+ "inherits": "^2.0.1",
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "cjs-module-lexer": {
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz",
+ "integrity": "sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==",
+ "dev": true
+ },
+ "class-utils": {
+ "version": "0.3.6",
+ "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz",
+ "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==",
+ "dev": true,
+ "requires": {
+ "arr-union": "^3.1.0",
+ "define-property": "^0.2.5",
+ "isobject": "^3.0.0",
+ "static-extend": "^0.1.1"
+ },
+ "dependencies": {
+ "define-property": {
+ "version": "0.2.5",
+ "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
+ "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
+ "dev": true,
+ "requires": {
+ "is-descriptor": "^0.1.0"
+ }
+ },
+ "is-accessor-descriptor": {
+ "version": "0.1.6",
+ "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz",
+ "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=",
+ "dev": true,
+ "requires": {
+ "kind-of": "^3.0.2"
+ },
+ "dependencies": {
+ "kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "requires": {
+ "is-buffer": "^1.1.5"
+ }
+ }
+ }
+ },
+ "is-buffer": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
+ "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==",
+ "dev": true
+ },
+ "is-data-descriptor": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz",
+ "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=",
+ "dev": true,
+ "requires": {
+ "kind-of": "^3.0.2"
+ },
+ "dependencies": {
+ "kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "requires": {
+ "is-buffer": "^1.1.5"
+ }
+ }
+ }
+ },
+ "is-descriptor": {
+ "version": "0.1.6",
+ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz",
+ "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==",
+ "dev": true,
+ "requires": {
+ "is-accessor-descriptor": "^0.1.6",
+ "is-data-descriptor": "^0.1.4",
+ "kind-of": "^5.0.0"
+ }
+ },
+ "kind-of": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
+ "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==",
+ "dev": true
+ }
+ }
+ },
+ "clean-css": {
+ "version": "4.2.4",
+ "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.4.tgz",
+ "integrity": "sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==",
+ "dev": true,
+ "requires": {
+ "source-map": "~0.6.0"
+ },
+ "dependencies": {
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ }
+ }
+ },
+ "clean-stack": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz",
+ "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==",
+ "dev": true
+ },
+ "cli-boxes": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz",
+ "integrity": "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==",
+ "dev": true
+ },
+ "cli-table3": {
+ "version": "0.6.0",
+ "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.0.tgz",
+ "integrity": "sha512-gnB85c3MGC7Nm9I/FkiasNBOKjOiO1RNuXXarQms37q4QMpWdlbBgD/VnOStA2faG1dpXMv31RFApjX1/QdgWQ==",
+ "dev": true,
+ "requires": {
+ "colors": "^1.1.2",
+ "object-assign": "^4.1.0",
+ "string-width": "^4.2.0"
+ }
+ },
+ "cliui": {
+ "version": "7.0.4",
+ "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz",
+ "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==",
+ "dev": true,
+ "requires": {
+ "string-width": "^4.2.0",
+ "strip-ansi": "^6.0.0",
+ "wrap-ansi": "^7.0.0"
+ }
+ },
+ "clone-deep": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz",
+ "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==",
+ "dev": true,
+ "requires": {
+ "is-plain-object": "^2.0.4",
+ "kind-of": "^6.0.2",
+ "shallow-clone": "^3.0.0"
+ }
+ },
+ "clsx": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.1.1.tgz",
+ "integrity": "sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA==",
+ "dev": true
+ },
+ "co": {
+ "version": "4.6.0",
+ "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz",
+ "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=",
+ "dev": true
+ },
+ "collapse-white-space": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/collapse-white-space/-/collapse-white-space-1.0.6.tgz",
+ "integrity": "sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==",
+ "dev": true
+ },
+ "collect-v8-coverage": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz",
+ "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==",
+ "dev": true
+ },
+ "collection-visit": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz",
+ "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=",
+ "dev": true,
+ "requires": {
+ "map-visit": "^1.0.0",
+ "object-visit": "^1.0.0"
+ }
+ },
+ "color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dev": true,
+ "requires": {
+ "color-name": "~1.1.4"
+ }
+ },
+ "color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "dev": true
+ },
+ "color-support": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz",
+ "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==",
+ "dev": true
+ },
+ "colors": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz",
+ "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==",
+ "dev": true,
+ "optional": true
+ },
+ "combined-stream": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
+ "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
+ "dev": true,
+ "requires": {
+ "delayed-stream": "~1.0.0"
+ }
+ },
+ "comma-separated-tokens": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-1.0.8.tgz",
+ "integrity": "sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==",
+ "dev": true
+ },
+ "commander": {
+ "version": "6.2.1",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz",
+ "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==",
+ "dev": true
+ },
+ "common-path-prefix": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz",
+ "integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==",
+ "dev": true
+ },
+ "commondir": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz",
+ "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=",
+ "dev": true
+ },
+ "component-emitter": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz",
+ "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==",
+ "dev": true
+ },
+ "compressible": {
+ "version": "2.0.18",
+ "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz",
+ "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==",
+ "dev": true,
+ "requires": {
+ "mime-db": ">= 1.43.0 < 2"
+ }
+ },
+ "compression": {
+ "version": "1.7.4",
+ "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz",
+ "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==",
+ "dev": true,
+ "requires": {
+ "accepts": "~1.3.5",
+ "bytes": "3.0.0",
+ "compressible": "~2.0.16",
+ "debug": "2.6.9",
+ "on-headers": "~1.0.2",
+ "safe-buffer": "5.1.2",
+ "vary": "~1.1.2"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "dev": true,
+ "requires": {
+ "ms": "2.0.0"
+ }
+ },
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ }
+ }
+ },
+ "compute-scroll-into-view": {
+ "version": "1.0.17",
+ "resolved": "https://registry.npmjs.org/compute-scroll-into-view/-/compute-scroll-into-view-1.0.17.tgz",
+ "integrity": "sha512-j4dx+Fb0URmzbwwMUrhqWM2BEWHdFGx+qZ9qqASHRPqvTYdqvWnHg0H1hIbcyLnvgnoNAVMlwkepyqM3DaIFUg==",
+ "dev": true
+ },
+ "concat-map": {
+ "version": "0.0.1",
+ "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
+ "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=",
+ "dev": true
+ },
+ "concat-stream": {
+ "version": "1.6.2",
+ "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz",
+ "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==",
+ "dev": true,
+ "requires": {
+ "buffer-from": "^1.0.0",
+ "inherits": "^2.0.3",
+ "readable-stream": "^2.2.2",
+ "typedarray": "^0.0.6"
+ }
+ },
+ "console-browserify": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz",
+ "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==",
+ "dev": true
+ },
+ "console-control-strings": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz",
+ "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=",
+ "dev": true
+ },
+ "constants-browserify": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz",
+ "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=",
+ "dev": true
+ },
+ "content-disposition": {
+ "version": "0.5.4",
+ "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz",
+ "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==",
+ "dev": true,
+ "requires": {
+ "safe-buffer": "5.2.1"
+ },
+ "dependencies": {
+ "safe-buffer": {
+ "version": "5.2.1",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
+ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
+ "dev": true
+ }
+ }
+ },
+ "content-type": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz",
+ "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==",
+ "dev": true
+ },
+ "convert-source-map": {
+ "version": "1.8.0",
+ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz",
+ "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==",
+ "dev": true,
+ "requires": {
+ "safe-buffer": "~5.1.1"
+ }
+ },
+ "cookie": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.1.tgz",
+ "integrity": "sha512-ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA==",
+ "dev": true
+ },
+ "cookie-signature": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz",
+ "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=",
+ "dev": true
+ },
+ "copy-concurrently": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz",
+ "integrity": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==",
+ "dev": true,
+ "requires": {
+ "aproba": "^1.1.1",
+ "fs-write-stream-atomic": "^1.0.8",
+ "iferr": "^0.1.5",
+ "mkdirp": "^0.5.1",
+ "rimraf": "^2.5.4",
+ "run-queue": "^1.0.0"
+ },
+ "dependencies": {
+ "aproba": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz",
+ "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==",
+ "dev": true
+ },
+ "mkdirp": {
+ "version": "0.5.5",
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz",
+ "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==",
+ "dev": true,
+ "requires": {
+ "minimist": "^1.2.5"
+ }
+ },
+ "rimraf": {
+ "version": "2.7.1",
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz",
+ "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==",
+ "dev": true,
+ "requires": {
+ "glob": "^7.1.3"
+ }
+ }
+ }
+ },
+ "copy-descriptor": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz",
+ "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=",
+ "dev": true
+ },
+ "copy-to-clipboard": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/copy-to-clipboard/-/copy-to-clipboard-3.3.1.tgz",
+ "integrity": "sha512-i13qo6kIHTTpCm8/Wup+0b1mVWETvu2kIMzKoK8FpkLkFxlt0znUAHcMzox+T8sPlqtZXq3CulEjQHsYiGFJUw==",
+ "dev": true,
+ "requires": {
+ "toggle-selection": "^1.0.6"
+ }
+ },
+ "core-js": {
+ "version": "3.20.2",
+ "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.20.2.tgz",
+ "integrity": "sha512-nuqhq11DcOAbFBV4zCbKeGbKQsUDRqTX0oqx7AttUBuqe3h20ixsE039QHelbL6P4h+9kytVqyEtyZ6gsiwEYw==",
+ "dev": true
+ },
+ "core-js-compat": {
+ "version": "3.20.2",
+ "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.20.2.tgz",
+ "integrity": "sha512-qZEzVQ+5Qh6cROaTPFLNS4lkvQ6mBzE3R6A6EEpssj7Zr2egMHgsy4XapdifqJDGC9CBiNv7s+ejI96rLNQFdg==",
+ "dev": true,
+ "requires": {
+ "browserslist": "^4.19.1",
+ "semver": "7.0.0"
+ },
+ "dependencies": {
+ "semver": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz",
+ "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==",
+ "dev": true
+ }
+ }
+ },
+ "core-js-pure": {
+ "version": "3.20.2",
+ "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.20.2.tgz",
+ "integrity": "sha512-CmWHvSKn2vNL6p6StNp1EmMIfVY/pqn3JLAjfZQ8WZGPOlGoO92EkX9/Mk81i6GxvoPXjUqEQnpM3rJ5QxxIOg==",
+ "dev": true
+ },
+ "core-util-is": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz",
+ "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ=="
+ },
+ "cosmiconfig": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz",
+ "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==",
+ "dev": true,
+ "requires": {
+ "@types/parse-json": "^4.0.0",
+ "import-fresh": "^3.1.0",
+ "parse-json": "^5.0.0",
+ "path-type": "^4.0.0",
+ "yaml": "^1.7.2"
+ }
+ },
+ "cp-file": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/cp-file/-/cp-file-7.0.0.tgz",
+ "integrity": "sha512-0Cbj7gyvFVApzpK/uhCtQ/9kE9UnYpxMzaq5nQQC/Dh4iaj5fxp7iEFIullrYwzj8nf0qnsI1Qsx34hAeAebvw==",
+ "dev": true,
+ "requires": {
+ "graceful-fs": "^4.1.2",
+ "make-dir": "^3.0.0",
+ "nested-error-stacks": "^2.0.0",
+ "p-event": "^4.1.0"
+ },
+ "dependencies": {
+ "make-dir": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
+ "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
+ "dev": true,
+ "requires": {
+ "semver": "^6.0.0"
+ }
+ }
+ }
+ },
+ "cpy": {
+ "version": "8.1.2",
+ "resolved": "https://registry.npmjs.org/cpy/-/cpy-8.1.2.tgz",
+ "integrity": "sha512-dmC4mUesv0OYH2kNFEidtf/skUwv4zePmGeepjyyJ0qTo5+8KhA1o99oIAwVVLzQMAeDJml74d6wPPKb6EZUTg==",
+ "dev": true,
+ "requires": {
+ "arrify": "^2.0.1",
+ "cp-file": "^7.0.0",
+ "globby": "^9.2.0",
+ "has-glob": "^1.0.0",
+ "junk": "^3.1.0",
+ "nested-error-stacks": "^2.1.0",
+ "p-all": "^2.1.0",
+ "p-filter": "^2.1.0",
+ "p-map": "^3.0.0"
+ },
+ "dependencies": {
+ "@nodelib/fs.stat": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz",
+ "integrity": "sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==",
+ "dev": true
+ },
+ "array-union": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz",
+ "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=",
+ "dev": true,
+ "requires": {
+ "array-uniq": "^1.0.1"
+ }
+ },
+ "braces": {
+ "version": "2.3.2",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
+ "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==",
+ "dev": true,
+ "requires": {
+ "arr-flatten": "^1.1.0",
+ "array-unique": "^0.3.2",
+ "extend-shallow": "^2.0.1",
+ "fill-range": "^4.0.0",
+ "isobject": "^3.0.1",
+ "repeat-element": "^1.1.2",
+ "snapdragon": "^0.8.1",
+ "snapdragon-node": "^2.0.1",
+ "split-string": "^3.0.2",
+ "to-regex": "^3.0.1"
+ },
+ "dependencies": {
+ "extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+ "dev": true,
+ "requires": {
+ "is-extendable": "^0.1.0"
+ }
+ }
+ }
+ },
+ "dir-glob": {
+ "version": "2.2.2",
+ "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-2.2.2.tgz",
+ "integrity": "sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==",
+ "dev": true,
+ "requires": {
+ "path-type": "^3.0.0"
+ }
+ },
+ "fast-glob": {
+ "version": "2.2.7",
+ "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-2.2.7.tgz",
+ "integrity": "sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==",
+ "dev": true,
+ "requires": {
+ "@mrmlnc/readdir-enhanced": "^2.2.1",
+ "@nodelib/fs.stat": "^1.1.2",
+ "glob-parent": "^3.1.0",
+ "is-glob": "^4.0.0",
+ "merge2": "^1.2.3",
+ "micromatch": "^3.1.10"
+ }
+ },
+ "fill-range": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz",
+ "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=",
+ "dev": true,
+ "requires": {
+ "extend-shallow": "^2.0.1",
+ "is-number": "^3.0.0",
+ "repeat-string": "^1.6.1",
+ "to-regex-range": "^2.1.0"
+ },
+ "dependencies": {
+ "extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+ "dev": true,
+ "requires": {
+ "is-extendable": "^0.1.0"
+ }
+ }
+ }
+ },
+ "glob-parent": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz",
+ "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=",
+ "dev": true,
+ "requires": {
+ "is-glob": "^3.1.0",
+ "path-dirname": "^1.0.0"
+ },
+ "dependencies": {
+ "is-glob": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz",
+ "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=",
+ "dev": true,
+ "requires": {
+ "is-extglob": "^2.1.0"
+ }
+ }
+ }
+ },
+ "globby": {
+ "version": "9.2.0",
+ "resolved": "https://registry.npmjs.org/globby/-/globby-9.2.0.tgz",
+ "integrity": "sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg==",
+ "dev": true,
+ "requires": {
+ "@types/glob": "^7.1.1",
+ "array-union": "^1.0.2",
+ "dir-glob": "^2.2.2",
+ "fast-glob": "^2.2.6",
+ "glob": "^7.1.3",
+ "ignore": "^4.0.3",
+ "pify": "^4.0.1",
+ "slash": "^2.0.0"
+ }
+ },
+ "ignore": {
+ "version": "4.0.6",
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz",
+ "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==",
+ "dev": true
+ },
+ "is-buffer": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
+ "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==",
+ "dev": true
+ },
+ "is-extendable": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+ "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
+ "dev": true
+ },
+ "is-number": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz",
+ "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=",
+ "dev": true,
+ "requires": {
+ "kind-of": "^3.0.2"
+ },
+ "dependencies": {
+ "kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "requires": {
+ "is-buffer": "^1.1.5"
+ }
+ }
+ }
+ },
+ "micromatch": {
+ "version": "3.1.10",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
+ "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
+ "dev": true,
+ "requires": {
+ "arr-diff": "^4.0.0",
+ "array-unique": "^0.3.2",
+ "braces": "^2.3.1",
+ "define-property": "^2.0.2",
+ "extend-shallow": "^3.0.2",
+ "extglob": "^2.0.4",
+ "fragment-cache": "^0.2.1",
+ "kind-of": "^6.0.2",
+ "nanomatch": "^1.2.9",
+ "object.pick": "^1.3.0",
+ "regex-not": "^1.0.0",
+ "snapdragon": "^0.8.1",
+ "to-regex": "^3.0.2"
+ }
+ },
+ "path-type": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz",
+ "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==",
+ "dev": true,
+ "requires": {
+ "pify": "^3.0.0"
+ },
+ "dependencies": {
+ "pify": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz",
+ "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=",
+ "dev": true
+ }
+ }
+ },
+ "slash": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz",
+ "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==",
+ "dev": true
+ },
+ "to-regex-range": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz",
+ "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=",
+ "dev": true,
+ "requires": {
+ "is-number": "^3.0.0",
+ "repeat-string": "^1.6.1"
+ }
+ }
+ }
+ },
+ "create-ecdh": {
+ "version": "4.0.4",
+ "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz",
+ "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==",
+ "dev": true,
+ "requires": {
+ "bn.js": "^4.1.0",
+ "elliptic": "^6.5.3"
+ },
+ "dependencies": {
+ "bn.js": {
+ "version": "4.12.0",
+ "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz",
+ "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==",
+ "dev": true
+ }
+ }
+ },
+ "create-hash": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz",
+ "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==",
+ "dev": true,
+ "requires": {
+ "cipher-base": "^1.0.1",
+ "inherits": "^2.0.1",
+ "md5.js": "^1.3.4",
+ "ripemd160": "^2.0.1",
+ "sha.js": "^2.4.0"
+ }
+ },
+ "create-hmac": {
+ "version": "1.1.7",
+ "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz",
+ "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==",
+ "dev": true,
+ "requires": {
+ "cipher-base": "^1.0.3",
+ "create-hash": "^1.1.0",
+ "inherits": "^2.0.1",
+ "ripemd160": "^2.0.0",
+ "safe-buffer": "^5.0.1",
+ "sha.js": "^2.4.8"
+ }
+ },
+ "cross-spawn": {
+ "version": "7.0.3",
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
+ "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
+ "dev": true,
+ "requires": {
+ "path-key": "^3.1.0",
+ "shebang-command": "^2.0.0",
+ "which": "^2.0.1"
+ }
+ },
+ "crypto-browserify": {
+ "version": "3.12.0",
+ "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz",
+ "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==",
+ "dev": true,
+ "requires": {
+ "browserify-cipher": "^1.0.0",
+ "browserify-sign": "^4.0.0",
+ "create-ecdh": "^4.0.0",
+ "create-hash": "^1.1.0",
+ "create-hmac": "^1.1.0",
+ "diffie-hellman": "^5.0.0",
+ "inherits": "^2.0.1",
+ "pbkdf2": "^3.0.3",
+ "public-encrypt": "^4.0.0",
+ "randombytes": "^2.0.0",
+ "randomfill": "^1.0.3"
+ }
+ },
+ "css-loader": {
+ "version": "3.6.0",
+ "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-3.6.0.tgz",
+ "integrity": "sha512-M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ==",
+ "dev": true,
+ "requires": {
+ "camelcase": "^5.3.1",
+ "cssesc": "^3.0.0",
+ "icss-utils": "^4.1.1",
+ "loader-utils": "^1.2.3",
+ "normalize-path": "^3.0.0",
+ "postcss": "^7.0.32",
+ "postcss-modules-extract-imports": "^2.0.0",
+ "postcss-modules-local-by-default": "^3.0.2",
+ "postcss-modules-scope": "^2.2.0",
+ "postcss-modules-values": "^3.0.0",
+ "postcss-value-parser": "^4.1.0",
+ "schema-utils": "^2.7.0",
+ "semver": "^6.3.0"
+ },
+ "dependencies": {
+ "json5": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz",
+ "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==",
+ "dev": true,
+ "requires": {
+ "minimist": "^1.2.0"
+ }
+ },
+ "loader-utils": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz",
+ "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==",
+ "dev": true,
+ "requires": {
+ "big.js": "^5.2.2",
+ "emojis-list": "^3.0.0",
+ "json5": "^1.0.1"
+ }
+ },
+ "schema-utils": {
+ "version": "2.7.1",
+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz",
+ "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==",
+ "dev": true,
+ "requires": {
+ "@types/json-schema": "^7.0.5",
+ "ajv": "^6.12.4",
+ "ajv-keywords": "^3.5.2"
+ }
+ }
+ }
+ },
+ "css-select": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.2.1.tgz",
+ "integrity": "sha512-/aUslKhzkTNCQUB2qTX84lVmfia9NyjP3WpDGtj/WxhwBzWBYUV3DgUpurHTme8UTPcPlAD1DJ+b0nN/t50zDQ==",
+ "dev": true,
+ "requires": {
+ "boolbase": "^1.0.0",
+ "css-what": "^5.1.0",
+ "domhandler": "^4.3.0",
+ "domutils": "^2.8.0",
+ "nth-check": "^2.0.1"
+ }
+ },
+ "css-what": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/css-what/-/css-what-5.1.0.tgz",
+ "integrity": "sha512-arSMRWIIFY0hV8pIxZMEfmMI47Wj3R/aWpZDDxWYCPEiOMv6tfOrnpDtgxBYPEQD4V0Y/958+1TdC3iWTFcUPw==",
+ "dev": true
+ },
+ "cssesc": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
+ "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
+ "dev": true
+ },
+ "cssom": {
+ "version": "0.4.4",
+ "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz",
+ "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==",
+ "dev": true
+ },
+ "cssstyle": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz",
+ "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==",
+ "dev": true,
+ "requires": {
+ "cssom": "~0.3.6"
+ },
+ "dependencies": {
+ "cssom": {
+ "version": "0.3.8",
+ "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz",
+ "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==",
+ "dev": true
+ }
+ }
+ },
+ "csstype": {
+ "version": "2.6.19",
+ "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.19.tgz",
+ "integrity": "sha512-ZVxXaNy28/k3kJg0Fou5MiYpp88j7H9hLZp8PDC3jV0WFjfH5E9xHb56L0W59cPbKbcHXeP4qyT8PrHp8t6LcQ==",
+ "dev": true
+ },
+ "cyclist": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz",
+ "integrity": "sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk=",
+ "dev": true
+ },
+ "data-urls": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz",
+ "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==",
+ "dev": true,
+ "requires": {
+ "abab": "^2.0.3",
+ "whatwg-mimetype": "^2.3.0",
+ "whatwg-url": "^8.0.0"
+ }
+ },
+ "debug": {
+ "version": "4.3.3",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz",
+ "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==",
+ "dev": true,
+ "requires": {
+ "ms": "2.1.2"
+ }
+ },
+ "decimal.js": {
+ "version": "10.3.1",
+ "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.3.1.tgz",
+ "integrity": "sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ==",
+ "dev": true
+ },
+ "decode-named-character-reference": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.0.1.tgz",
+ "integrity": "sha512-YV/0HQHreRwKb7uBopyIkLG17jG6Sv2qUchk9qSoVJ2f+flwRsPNBO0hAnjt6mTNYUT+vw9Gy2ihXg4sUWPi2w==",
+ "dev": true,
+ "requires": {
+ "character-entities": "^2.0.0"
+ },
+ "dependencies": {
+ "character-entities": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.1.tgz",
+ "integrity": "sha512-OzmutCf2Kmc+6DrFrrPS8/tDh2+DpnrfzdICHWhcVC9eOd0N1PXmQEE1a8iM4IziIAG+8tmTq3K+oo0ubH6RRQ==",
+ "dev": true
+ }
+ }
+ },
+ "decode-uri-component": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz",
+ "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=",
+ "dev": true
+ },
+ "dedent": {
+ "version": "0.7.0",
+ "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz",
+ "integrity": "sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=",
+ "dev": true
+ },
+ "deep-is": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
+ "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
+ "dev": true
+ },
+ "deep-object-diff": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/deep-object-diff/-/deep-object-diff-1.1.0.tgz",
+ "integrity": "sha512-b+QLs5vHgS+IoSNcUE4n9HP2NwcHj7aqnJWsjPtuG75Rh5TOaGt0OjAYInh77d5T16V5cRDC+Pw/6ZZZiETBGw==",
+ "dev": true
+ },
+ "deepmerge": {
+ "version": "4.2.2",
+ "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz",
+ "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==",
+ "dev": true
+ },
+ "define-properties": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz",
+ "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==",
+ "dev": true,
+ "requires": {
+ "object-keys": "^1.0.12"
+ }
+ },
+ "define-property": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz",
+ "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==",
+ "dev": true,
+ "requires": {
+ "is-descriptor": "^1.0.2",
+ "isobject": "^3.0.1"
+ }
+ },
+ "delayed-stream": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
+ "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=",
+ "dev": true
+ },
+ "delegates": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz",
+ "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=",
+ "dev": true
+ },
+ "depd": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz",
+ "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=",
+ "dev": true
+ },
+ "dequal": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.2.tgz",
+ "integrity": "sha512-q9K8BlJVxK7hQYqa6XISGmBZbtQQWVXSrRrWreHC94rMt1QL/Impruc+7p2CYSYuVIUr+YCt6hjrs1kkdJRTug==",
+ "dev": true
+ },
+ "des.js": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz",
+ "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==",
+ "dev": true,
+ "requires": {
+ "inherits": "^2.0.1",
+ "minimalistic-assert": "^1.0.0"
+ }
+ },
+ "destroy": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz",
+ "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=",
+ "dev": true
+ },
+ "detab": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/detab/-/detab-2.0.4.tgz",
+ "integrity": "sha512-8zdsQA5bIkoRECvCrNKPla84lyoR7DSAyf7p0YgXzBO9PDJx8KntPUay7NS6yp+KdxdVtiE5SpHKtbp2ZQyA9g==",
+ "dev": true,
+ "requires": {
+ "repeat-string": "^1.5.4"
+ }
+ },
+ "detect-newline": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz",
+ "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==",
+ "dev": true
+ },
+ "detect-port": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/detect-port/-/detect-port-1.3.0.tgz",
+ "integrity": "sha512-E+B1gzkl2gqxt1IhUzwjrxBKRqx1UzC3WLONHinn8S3T6lwV/agVCyitiFOsGJ/eYuEUBvD71MZHy3Pv1G9doQ==",
+ "dev": true,
+ "requires": {
+ "address": "^1.0.1",
+ "debug": "^2.6.0"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "dev": true,
+ "requires": {
+ "ms": "2.0.0"
+ }
+ },
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ }
+ }
+ },
+ "detect-port-alt": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/detect-port-alt/-/detect-port-alt-1.1.6.tgz",
+ "integrity": "sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==",
+ "dev": true,
+ "requires": {
+ "address": "^1.0.1",
+ "debug": "^2.6.0"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "dev": true,
+ "requires": {
+ "ms": "2.0.0"
+ }
+ },
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ }
+ }
+ },
+ "diff": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/diff/-/diff-5.0.0.tgz",
+ "integrity": "sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==",
+ "dev": true
+ },
+ "diff-sequences": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.4.0.tgz",
+ "integrity": "sha512-YqiQzkrsmHMH5uuh8OdQFU9/ZpADnwzml8z0O5HvRNda+5UZsaX/xN+AAxfR2hWq1Y7HZnAzO9J5lJXOuDz2Ww==",
+ "dev": true
+ },
+ "diffie-hellman": {
+ "version": "5.0.3",
+ "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz",
+ "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==",
+ "dev": true,
+ "requires": {
+ "bn.js": "^4.1.0",
+ "miller-rabin": "^4.0.0",
+ "randombytes": "^2.0.0"
+ },
+ "dependencies": {
+ "bn.js": {
+ "version": "4.12.0",
+ "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz",
+ "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==",
+ "dev": true
+ }
+ }
+ },
+ "dir-glob": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz",
+ "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==",
+ "dev": true,
+ "requires": {
+ "path-type": "^4.0.0"
+ }
+ },
+ "doctrine": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
+ "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==",
+ "dev": true,
+ "requires": {
+ "esutils": "^2.0.2"
+ }
+ },
+ "docx": {
+ "version": "7.3.0",
+ "resolved": "https://registry.npmjs.org/docx/-/docx-7.3.0.tgz",
+ "integrity": "sha512-OkSGlDNWMRFY07OEhUTx1ouuzYi8s1b67JDI6m5/5ek4xoshtP+/Rx8eRdY8LbhvpFkngvUantvTsxY4XW8Heg==",
+ "requires": {
+ "@types/node": "^17.0.0",
+ "jszip": "^3.1.5",
+ "nanoid": "^3.1.20",
+ "xml": "^1.0.1",
+ "xml-js": "^1.6.8"
+ }
+ },
+ "dom-converter": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz",
+ "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==",
+ "dev": true,
+ "requires": {
+ "utila": "~0.4"
+ }
+ },
+ "dom-serializer": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.3.2.tgz",
+ "integrity": "sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig==",
+ "dev": true,
+ "requires": {
+ "domelementtype": "^2.0.1",
+ "domhandler": "^4.2.0",
+ "entities": "^2.0.0"
+ }
+ },
+ "dom-walk": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.2.tgz",
+ "integrity": "sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==",
+ "dev": true
+ },
+ "domain-browser": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz",
+ "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==",
+ "dev": true
+ },
+ "domelementtype": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.2.0.tgz",
+ "integrity": "sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==",
+ "dev": true
+ },
+ "domexception": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz",
+ "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==",
+ "dev": true,
+ "requires": {
+ "webidl-conversions": "^5.0.0"
+ },
+ "dependencies": {
+ "webidl-conversions": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz",
+ "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==",
+ "dev": true
+ }
+ }
+ },
+ "domhandler": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.0.tgz",
+ "integrity": "sha512-fC0aXNQXqKSFTr2wDNZDhsEYjCiYsDWl3D01kwt25hm1YIPyDGHvvi3rw+PLqHAl/m71MaiF7d5zvBr0p5UB2g==",
+ "dev": true,
+ "requires": {
+ "domelementtype": "^2.2.0"
+ }
+ },
+ "domutils": {
+ "version": "2.8.0",
+ "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz",
+ "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==",
+ "dev": true,
+ "requires": {
+ "dom-serializer": "^1.0.1",
+ "domelementtype": "^2.2.0",
+ "domhandler": "^4.2.0"
+ }
+ },
+ "dot-case": {
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz",
+ "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==",
+ "dev": true,
+ "requires": {
+ "no-case": "^3.0.4",
+ "tslib": "^2.0.3"
+ }
+ },
+ "dotenv": {
+ "version": "8.6.0",
+ "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.6.0.tgz",
+ "integrity": "sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==",
+ "dev": true
+ },
+ "dotenv-expand": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz",
+ "integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==",
+ "dev": true
+ },
+ "downshift": {
+ "version": "6.1.7",
+ "resolved": "https://registry.npmjs.org/downshift/-/downshift-6.1.7.tgz",
+ "integrity": "sha512-cVprZg/9Lvj/uhYRxELzlu1aezRcgPWBjTvspiGTVEU64gF5pRdSRKFVLcxqsZC637cLAGMbL40JavEfWnqgNg==",
+ "dev": true,
+ "requires": {
+ "@babel/runtime": "^7.14.8",
+ "compute-scroll-into-view": "^1.0.17",
+ "prop-types": "^15.7.2",
+ "react-is": "^17.0.2",
+ "tslib": "^2.3.0"
+ }
+ },
+ "duplexer": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz",
+ "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==",
+ "dev": true
+ },
+ "duplexify": {
+ "version": "3.7.1",
+ "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz",
+ "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==",
+ "dev": true,
+ "requires": {
+ "end-of-stream": "^1.0.0",
+ "inherits": "^2.0.1",
+ "readable-stream": "^2.0.0",
+ "stream-shift": "^1.0.0"
+ }
+ },
+ "ee-first": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
+ "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=",
+ "dev": true
+ },
+ "electron-to-chromium": {
+ "version": "1.4.38",
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.38.tgz",
+ "integrity": "sha512-WhHt3sZazKj0KK/UpgsbGQnUUoFeAHVishzHFExMxagpZgjiGYSC9S0ZlbhCfSH2L2i+2A1yyqOIliTctMx7KQ==",
+ "dev": true
+ },
+ "element-resize-detector": {
+ "version": "1.2.4",
+ "resolved": "https://registry.npmjs.org/element-resize-detector/-/element-resize-detector-1.2.4.tgz",
+ "integrity": "sha512-Fl5Ftk6WwXE0wqCgNoseKWndjzZlDCwuPTcoVZfCP9R3EHQF8qUtr3YUPNETegRBOKqQKPW3n4kiIWngGi8tKg==",
+ "dev": true,
+ "requires": {
+ "batch-processor": "1.0.0"
+ }
+ },
+ "elliptic": {
+ "version": "6.5.4",
+ "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz",
+ "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==",
+ "dev": true,
+ "requires": {
+ "bn.js": "^4.11.9",
+ "brorand": "^1.1.0",
+ "hash.js": "^1.0.0",
+ "hmac-drbg": "^1.0.1",
+ "inherits": "^2.0.4",
+ "minimalistic-assert": "^1.0.1",
+ "minimalistic-crypto-utils": "^1.0.1"
+ },
+ "dependencies": {
+ "bn.js": {
+ "version": "4.12.0",
+ "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz",
+ "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==",
+ "dev": true
+ }
+ }
+ },
+ "emittery": {
+ "version": "0.8.1",
+ "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.8.1.tgz",
+ "integrity": "sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==",
+ "dev": true
+ },
+ "emoji-regex": {
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
+ "dev": true
+ },
+ "emojis-list": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz",
+ "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==",
+ "dev": true
+ },
+ "emotion-theming": {
+ "version": "10.3.0",
+ "resolved": "https://registry.npmjs.org/emotion-theming/-/emotion-theming-10.3.0.tgz",
+ "integrity": "sha512-mXiD2Oj7N9b6+h/dC6oLf9hwxbtKHQjoIqtodEyL8CpkN4F3V4IK/BT4D0C7zSs4BBFOu4UlPJbvvBLa88SGEA==",
+ "dev": true,
+ "requires": {
+ "@babel/runtime": "^7.5.5",
+ "@emotion/weak-memoize": "0.2.5",
+ "hoist-non-react-statics": "^3.3.0"
+ }
+ },
+ "encodeurl": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
+ "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=",
+ "dev": true
+ },
+ "end-of-stream": {
+ "version": "1.4.4",
+ "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz",
+ "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==",
+ "dev": true,
+ "requires": {
+ "once": "^1.4.0"
+ }
+ },
+ "endent": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/endent/-/endent-2.1.0.tgz",
+ "integrity": "sha512-r8VyPX7XL8U01Xgnb1CjZ3XV+z90cXIJ9JPE/R9SEC9vpw2P6CfsRPJmp20DppC5N7ZAMCmjYkJIa744Iyg96w==",
+ "dev": true,
+ "requires": {
+ "dedent": "^0.7.0",
+ "fast-json-parse": "^1.0.3",
+ "objectorarray": "^1.0.5"
+ }
+ },
+ "enhanced-resolve": {
+ "version": "4.5.0",
+ "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz",
+ "integrity": "sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==",
+ "dev": true,
+ "requires": {
+ "graceful-fs": "^4.1.2",
+ "memory-fs": "^0.5.0",
+ "tapable": "^1.0.0"
+ },
+ "dependencies": {
+ "memory-fs": {
+ "version": "0.5.0",
+ "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz",
+ "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==",
+ "dev": true,
+ "requires": {
+ "errno": "^0.1.3",
+ "readable-stream": "^2.0.1"
+ }
+ }
+ }
+ },
+ "entities": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz",
+ "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==",
+ "dev": true
+ },
+ "errno": {
+ "version": "0.1.8",
+ "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz",
+ "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==",
+ "dev": true,
+ "requires": {
+ "prr": "~1.0.1"
+ }
+ },
+ "error-ex": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
+ "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
+ "dev": true,
+ "requires": {
+ "is-arrayish": "^0.2.1"
+ }
+ },
+ "error-stack-parser": {
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.0.6.tgz",
+ "integrity": "sha512-d51brTeqC+BHlwF0BhPtcYgF5nlzf9ZZ0ZIUQNZpc9ZB9qw5IJ2diTrBY9jlCJkTLITYPjmiX6OWCwH+fuyNgQ==",
+ "dev": true,
+ "requires": {
+ "stackframe": "^1.1.1"
+ }
+ },
+ "es-abstract": {
+ "version": "1.19.1",
+ "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.1.tgz",
+ "integrity": "sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "es-to-primitive": "^1.2.1",
+ "function-bind": "^1.1.1",
+ "get-intrinsic": "^1.1.1",
+ "get-symbol-description": "^1.0.0",
+ "has": "^1.0.3",
+ "has-symbols": "^1.0.2",
+ "internal-slot": "^1.0.3",
+ "is-callable": "^1.2.4",
+ "is-negative-zero": "^2.0.1",
+ "is-regex": "^1.1.4",
+ "is-shared-array-buffer": "^1.0.1",
+ "is-string": "^1.0.7",
+ "is-weakref": "^1.0.1",
+ "object-inspect": "^1.11.0",
+ "object-keys": "^1.1.1",
+ "object.assign": "^4.1.2",
+ "string.prototype.trimend": "^1.0.4",
+ "string.prototype.trimstart": "^1.0.4",
+ "unbox-primitive": "^1.0.1"
+ }
+ },
+ "es-array-method-boxes-properly": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz",
+ "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==",
+ "dev": true
+ },
+ "es-get-iterator": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.2.tgz",
+ "integrity": "sha512-+DTO8GYwbMCwbywjimwZMHp8AuYXOS2JZFWoi2AlPOS3ebnII9w/NLpNZtA7A0YLaVDw+O7KFCeoIV7OPvM7hQ==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "get-intrinsic": "^1.1.0",
+ "has-symbols": "^1.0.1",
+ "is-arguments": "^1.1.0",
+ "is-map": "^2.0.2",
+ "is-set": "^2.0.2",
+ "is-string": "^1.0.5",
+ "isarray": "^2.0.5"
+ }
+ },
+ "es-to-primitive": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
+ "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
+ "dev": true,
+ "requires": {
+ "is-callable": "^1.1.4",
+ "is-date-object": "^1.0.1",
+ "is-symbol": "^1.0.2"
+ }
+ },
+ "es5-shim": {
+ "version": "4.6.4",
+ "resolved": "https://registry.npmjs.org/es5-shim/-/es5-shim-4.6.4.tgz",
+ "integrity": "sha512-Z0f7OUYZ8JfqT12d3Tgh2ErxIH5Shaz97GE8qyDG9quxb2Hmh2vvFHlOFjx6lzyD0CRgvJfnNYcisjdbRp7MPw==",
+ "dev": true
+ },
+ "es6-shim": {
+ "version": "0.35.6",
+ "resolved": "https://registry.npmjs.org/es6-shim/-/es6-shim-0.35.6.tgz",
+ "integrity": "sha512-EmTr31wppcaIAgblChZiuN/l9Y7DPyw8Xtbg7fIVngn6zMW+IEBJDJngeKC3x6wr0V/vcA2wqeFnaw1bFJbDdA==",
+ "dev": true
+ },
+ "escalade": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz",
+ "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==",
+ "dev": true
+ },
+ "escape-html": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
+ "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=",
+ "dev": true
+ },
+ "escape-string-regexp": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
+ "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=",
+ "dev": true
+ },
+ "escodegen": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz",
+ "integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==",
+ "dev": true,
+ "requires": {
+ "esprima": "^4.0.1",
+ "estraverse": "^5.2.0",
+ "esutils": "^2.0.2",
+ "optionator": "^0.8.1",
+ "source-map": "~0.6.1"
+ },
+ "dependencies": {
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true,
+ "optional": true
+ }
+ }
+ },
+ "eslint-scope": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz",
+ "integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==",
+ "dev": true,
+ "requires": {
+ "esrecurse": "^4.1.0",
+ "estraverse": "^4.1.1"
+ },
+ "dependencies": {
+ "estraverse": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
+ "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
+ "dev": true
+ }
+ }
+ },
+ "esprima": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
+ "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
+ "dev": true
+ },
+ "esrecurse": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
+ "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
+ "dev": true,
+ "requires": {
+ "estraverse": "^5.2.0"
+ }
+ },
+ "estraverse": {
+ "version": "5.3.0",
+ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
+ "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
+ "dev": true
+ },
+ "estree-to-babel": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/estree-to-babel/-/estree-to-babel-3.2.1.tgz",
+ "integrity": "sha512-YNF+mZ/Wu2FU/gvmzuWtYc8rloubL7wfXCTgouFrnjGVXPA/EeYYA7pupXWrb3Iv1cTBeSSxxJIbK23l4MRNqg==",
+ "dev": true,
+ "requires": {
+ "@babel/traverse": "^7.1.6",
+ "@babel/types": "^7.2.0",
+ "c8": "^7.6.0"
+ }
+ },
+ "estree-walker": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz",
+ "integrity": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==",
+ "dev": true
+ },
+ "esutils": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
+ "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
+ "dev": true
+ },
+ "etag": {
+ "version": "1.8.1",
+ "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
+ "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=",
+ "dev": true
+ },
+ "events": {
+ "version": "3.3.0",
+ "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz",
+ "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==",
+ "dev": true
+ },
+ "evp_bytestokey": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz",
+ "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==",
+ "dev": true,
+ "requires": {
+ "md5.js": "^1.3.4",
+ "safe-buffer": "^5.1.1"
+ }
+ },
+ "exec-sh": {
+ "version": "0.3.6",
+ "resolved": "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.6.tgz",
+ "integrity": "sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w==",
+ "dev": true
+ },
+ "execa": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz",
+ "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==",
+ "dev": true,
+ "requires": {
+ "cross-spawn": "^7.0.3",
+ "get-stream": "^6.0.0",
+ "human-signals": "^2.1.0",
+ "is-stream": "^2.0.0",
+ "merge-stream": "^2.0.0",
+ "npm-run-path": "^4.0.1",
+ "onetime": "^5.1.2",
+ "signal-exit": "^3.0.3",
+ "strip-final-newline": "^2.0.0"
+ }
+ },
+ "exit": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz",
+ "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=",
+ "dev": true
+ },
+ "expand-brackets": {
+ "version": "2.1.4",
+ "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz",
+ "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=",
+ "dev": true,
+ "requires": {
+ "debug": "^2.3.3",
+ "define-property": "^0.2.5",
+ "extend-shallow": "^2.0.1",
+ "posix-character-classes": "^0.1.0",
+ "regex-not": "^1.0.0",
+ "snapdragon": "^0.8.1",
+ "to-regex": "^3.0.1"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "dev": true,
+ "requires": {
+ "ms": "2.0.0"
+ }
+ },
+ "define-property": {
+ "version": "0.2.5",
+ "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
+ "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
+ "dev": true,
+ "requires": {
+ "is-descriptor": "^0.1.0"
+ }
+ },
+ "extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+ "dev": true,
+ "requires": {
+ "is-extendable": "^0.1.0"
+ }
+ },
+ "is-accessor-descriptor": {
+ "version": "0.1.6",
+ "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz",
+ "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=",
+ "dev": true,
+ "requires": {
+ "kind-of": "^3.0.2"
+ },
+ "dependencies": {
+ "kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "requires": {
+ "is-buffer": "^1.1.5"
+ }
+ }
+ }
+ },
+ "is-buffer": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
+ "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==",
+ "dev": true
+ },
+ "is-data-descriptor": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz",
+ "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=",
+ "dev": true,
+ "requires": {
+ "kind-of": "^3.0.2"
+ },
+ "dependencies": {
+ "kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "requires": {
+ "is-buffer": "^1.1.5"
+ }
+ }
+ }
+ },
+ "is-descriptor": {
+ "version": "0.1.6",
+ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz",
+ "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==",
+ "dev": true,
+ "requires": {
+ "is-accessor-descriptor": "^0.1.6",
+ "is-data-descriptor": "^0.1.4",
+ "kind-of": "^5.0.0"
+ }
+ },
+ "is-extendable": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+ "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
+ "dev": true
+ },
+ "kind-of": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
+ "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==",
+ "dev": true
+ },
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ }
+ }
+ },
+ "expect": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/expect/-/expect-27.4.6.tgz",
+ "integrity": "sha512-1M/0kAALIaj5LaG66sFJTbRsWTADnylly82cu4bspI0nl+pgP4E6Bh/aqdHlTUjul06K7xQnnrAoqfxVU0+/ag==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^27.4.2",
+ "jest-get-type": "^27.4.0",
+ "jest-matcher-utils": "^27.4.6",
+ "jest-message-util": "^27.4.6"
+ },
+ "dependencies": {
+ "@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "requires": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ }
+ },
+ "@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "requires": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "express": {
+ "version": "4.17.2",
+ "resolved": "https://registry.npmjs.org/express/-/express-4.17.2.tgz",
+ "integrity": "sha512-oxlxJxcQlYwqPWKVJJtvQiwHgosH/LrLSPA+H4UxpyvSS6jC5aH+5MoHFM+KABgTOt0APue4w66Ha8jCUo9QGg==",
+ "dev": true,
+ "requires": {
+ "accepts": "~1.3.7",
+ "array-flatten": "1.1.1",
+ "body-parser": "1.19.1",
+ "content-disposition": "0.5.4",
+ "content-type": "~1.0.4",
+ "cookie": "0.4.1",
+ "cookie-signature": "1.0.6",
+ "debug": "2.6.9",
+ "depd": "~1.1.2",
+ "encodeurl": "~1.0.2",
+ "escape-html": "~1.0.3",
+ "etag": "~1.8.1",
+ "finalhandler": "~1.1.2",
+ "fresh": "0.5.2",
+ "merge-descriptors": "1.0.1",
+ "methods": "~1.1.2",
+ "on-finished": "~2.3.0",
+ "parseurl": "~1.3.3",
+ "path-to-regexp": "0.1.7",
+ "proxy-addr": "~2.0.7",
+ "qs": "6.9.6",
+ "range-parser": "~1.2.1",
+ "safe-buffer": "5.2.1",
+ "send": "0.17.2",
+ "serve-static": "1.14.2",
+ "setprototypeof": "1.2.0",
+ "statuses": "~1.5.0",
+ "type-is": "~1.6.18",
+ "utils-merge": "1.0.1",
+ "vary": "~1.1.2"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "dev": true,
+ "requires": {
+ "ms": "2.0.0"
+ }
+ },
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ },
+ "qs": {
+ "version": "6.9.6",
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.9.6.tgz",
+ "integrity": "sha512-TIRk4aqYLNoJUbd+g2lEdz5kLWIuTMRagAXxl78Q0RiVjAOugHmeKNGdd3cwo/ktpf9aL9epCfFqWDEKysUlLQ==",
+ "dev": true
+ },
+ "safe-buffer": {
+ "version": "5.2.1",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
+ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
+ "dev": true
+ }
+ }
+ },
+ "extend": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
+ "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
+ "dev": true
+ },
+ "extend-shallow": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz",
+ "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=",
+ "dev": true,
+ "requires": {
+ "assign-symbols": "^1.0.0",
+ "is-extendable": "^1.0.1"
+ }
+ },
+ "extglob": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz",
+ "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==",
+ "dev": true,
+ "requires": {
+ "array-unique": "^0.3.2",
+ "define-property": "^1.0.0",
+ "expand-brackets": "^2.1.4",
+ "extend-shallow": "^2.0.1",
+ "fragment-cache": "^0.2.1",
+ "regex-not": "^1.0.0",
+ "snapdragon": "^0.8.1",
+ "to-regex": "^3.0.1"
+ },
+ "dependencies": {
+ "define-property": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
+ "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
+ "dev": true,
+ "requires": {
+ "is-descriptor": "^1.0.0"
+ }
+ },
+ "extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+ "dev": true,
+ "requires": {
+ "is-extendable": "^0.1.0"
+ }
+ },
+ "is-extendable": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+ "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
+ "dev": true
+ }
+ }
+ },
+ "fast-deep-equal": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
+ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
+ "dev": true
+ },
+ "fast-glob": {
+ "version": "3.2.9",
+ "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.9.tgz",
+ "integrity": "sha512-MBwILhhD92sziIrMQwpqcuGERF+BH99ei2a3XsGJuqEKcSycAL+w0HWokFenZXona+kjFr82Lf71eTxNRC06XQ==",
+ "dev": true,
+ "requires": {
+ "@nodelib/fs.stat": "^2.0.2",
+ "@nodelib/fs.walk": "^1.2.3",
+ "glob-parent": "^5.1.2",
+ "merge2": "^1.3.0",
+ "micromatch": "^4.0.4"
+ }
+ },
+ "fast-json-parse": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/fast-json-parse/-/fast-json-parse-1.0.3.tgz",
+ "integrity": "sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==",
+ "dev": true
+ },
+ "fast-json-stable-stringify": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
+ "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
+ "dev": true
+ },
+ "fast-levenshtein": {
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
+ "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=",
+ "dev": true
+ },
+ "fastq": {
+ "version": "1.13.0",
+ "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz",
+ "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==",
+ "dev": true,
+ "requires": {
+ "reusify": "^1.0.4"
+ }
+ },
+ "fault": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/fault/-/fault-1.0.4.tgz",
+ "integrity": "sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==",
+ "dev": true,
+ "requires": {
+ "format": "^0.2.0"
+ }
+ },
+ "fb-watchman": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz",
+ "integrity": "sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==",
+ "dev": true,
+ "requires": {
+ "bser": "2.1.1"
+ }
+ },
+ "figgy-pudding": {
+ "version": "3.5.2",
+ "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.2.tgz",
+ "integrity": "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==",
+ "dev": true
+ },
+ "file-loader": {
+ "version": "6.2.0",
+ "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz",
+ "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==",
+ "dev": true,
+ "requires": {
+ "loader-utils": "^2.0.0",
+ "schema-utils": "^3.0.0"
+ }
+ },
+ "file-saver": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/file-saver/-/file-saver-2.0.5.tgz",
+ "integrity": "sha512-P9bmyZ3h/PRG+Nzga+rbdI4OEpNDzAVyy74uVO9ATgzLK6VtAsYybF/+TOCvrc0MO793d6+42lLyZTw7/ArVzA==",
+ "dev": true
+ },
+ "file-system-cache": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/file-system-cache/-/file-system-cache-1.0.5.tgz",
+ "integrity": "sha1-hCWbNqK7uNPW6xAh0xMv/mTP/08=",
+ "dev": true,
+ "requires": {
+ "bluebird": "^3.3.5",
+ "fs-extra": "^0.30.0",
+ "ramda": "^0.21.0"
+ },
+ "dependencies": {
+ "fs-extra": {
+ "version": "0.30.0",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-0.30.0.tgz",
+ "integrity": "sha1-8jP/zAjU2n1DLapEl3aYnbHfk/A=",
+ "dev": true,
+ "requires": {
+ "graceful-fs": "^4.1.2",
+ "jsonfile": "^2.1.0",
+ "klaw": "^1.0.0",
+ "path-is-absolute": "^1.0.0",
+ "rimraf": "^2.2.8"
+ }
+ },
+ "jsonfile": {
+ "version": "2.4.0",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz",
+ "integrity": "sha1-NzaitCi4e72gzIO1P6PWM6NcKug=",
+ "dev": true,
+ "requires": {
+ "graceful-fs": "^4.1.6"
+ }
+ },
+ "rimraf": {
+ "version": "2.7.1",
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz",
+ "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==",
+ "dev": true,
+ "requires": {
+ "glob": "^7.1.3"
+ }
+ }
+ }
+ },
+ "file-uri-to-path": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz",
+ "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==",
+ "dev": true,
+ "optional": true
+ },
+ "filesize": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/filesize/-/filesize-6.1.0.tgz",
+ "integrity": "sha512-LpCHtPQ3sFx67z+uh2HnSyWSLLu5Jxo21795uRDuar/EOuYWXib5EmPaGIBuSnRqH2IODiKA2k5re/K9OnN/Yg==",
+ "dev": true
+ },
+ "fill-range": {
+ "version": "7.0.1",
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
+ "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
+ "dev": true,
+ "requires": {
+ "to-regex-range": "^5.0.1"
+ }
+ },
+ "finalhandler": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz",
+ "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==",
+ "dev": true,
+ "requires": {
+ "debug": "2.6.9",
+ "encodeurl": "~1.0.2",
+ "escape-html": "~1.0.3",
+ "on-finished": "~2.3.0",
+ "parseurl": "~1.3.3",
+ "statuses": "~1.5.0",
+ "unpipe": "~1.0.0"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "dev": true,
+ "requires": {
+ "ms": "2.0.0"
+ }
+ },
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ }
+ }
+ },
+ "find-cache-dir": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz",
+ "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==",
+ "dev": true,
+ "requires": {
+ "commondir": "^1.0.1",
+ "make-dir": "^2.0.0",
+ "pkg-dir": "^3.0.0"
+ },
+ "dependencies": {
+ "find-up": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz",
+ "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==",
+ "dev": true,
+ "requires": {
+ "locate-path": "^3.0.0"
+ }
+ },
+ "locate-path": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz",
+ "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==",
+ "dev": true,
+ "requires": {
+ "p-locate": "^3.0.0",
+ "path-exists": "^3.0.0"
+ }
+ },
+ "p-limit": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
+ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
+ "dev": true,
+ "requires": {
+ "p-try": "^2.0.0"
+ }
+ },
+ "p-locate": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz",
+ "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==",
+ "dev": true,
+ "requires": {
+ "p-limit": "^2.0.0"
+ }
+ },
+ "path-exists": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz",
+ "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=",
+ "dev": true
+ },
+ "pkg-dir": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz",
+ "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==",
+ "dev": true,
+ "requires": {
+ "find-up": "^3.0.0"
+ }
+ }
+ }
+ },
+ "find-root": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz",
+ "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==",
+ "dev": true
+ },
+ "find-up": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
+ "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
+ "dev": true,
+ "requires": {
+ "locate-path": "^6.0.0",
+ "path-exists": "^4.0.0"
+ }
+ },
+ "flat-cache": {
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz",
+ "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==",
+ "dev": true,
+ "requires": {
+ "flatted": "^3.1.0",
+ "rimraf": "^3.0.2"
+ }
+ },
+ "flatted": {
+ "version": "3.2.4",
+ "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.4.tgz",
+ "integrity": "sha512-8/sOawo8tJ4QOBX8YlQBMxL8+RLZfxMQOif9o0KUKTNTjMYElWPE0r/m5VNFxTRd0NSw8qSy8dajrwX4RYI1Hw==",
+ "dev": true
+ },
+ "flush-write-stream": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz",
+ "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==",
+ "dev": true,
+ "requires": {
+ "inherits": "^2.0.3",
+ "readable-stream": "^2.3.6"
+ }
+ },
+ "for-in": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz",
+ "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=",
+ "dev": true
+ },
+ "foreground-child": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-2.0.0.tgz",
+ "integrity": "sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==",
+ "dev": true,
+ "requires": {
+ "cross-spawn": "^7.0.0",
+ "signal-exit": "^3.0.2"
+ }
+ },
+ "fork-ts-checker-webpack-plugin": {
+ "version": "4.1.6",
+ "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-4.1.6.tgz",
+ "integrity": "sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==",
+ "dev": true,
+ "requires": {
+ "@babel/code-frame": "^7.5.5",
+ "chalk": "^2.4.1",
+ "micromatch": "^3.1.10",
+ "minimatch": "^3.0.4",
+ "semver": "^5.6.0",
+ "tapable": "^1.0.0",
+ "worker-rpc": "^0.1.0"
+ },
+ "dependencies": {
+ "braces": {
+ "version": "2.3.2",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
+ "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==",
+ "dev": true,
+ "requires": {
+ "arr-flatten": "^1.1.0",
+ "array-unique": "^0.3.2",
+ "extend-shallow": "^2.0.1",
+ "fill-range": "^4.0.0",
+ "isobject": "^3.0.1",
+ "repeat-element": "^1.1.2",
+ "snapdragon": "^0.8.1",
+ "snapdragon-node": "^2.0.1",
+ "split-string": "^3.0.2",
+ "to-regex": "^3.0.1"
+ },
+ "dependencies": {
+ "extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+ "dev": true,
+ "requires": {
+ "is-extendable": "^0.1.0"
+ }
+ }
+ }
+ },
+ "fill-range": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz",
+ "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=",
+ "dev": true,
+ "requires": {
+ "extend-shallow": "^2.0.1",
+ "is-number": "^3.0.0",
+ "repeat-string": "^1.6.1",
+ "to-regex-range": "^2.1.0"
+ },
+ "dependencies": {
+ "extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+ "dev": true,
+ "requires": {
+ "is-extendable": "^0.1.0"
+ }
+ }
+ }
+ },
+ "is-buffer": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
+ "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==",
+ "dev": true
+ },
+ "is-extendable": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+ "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
+ "dev": true
+ },
+ "is-number": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz",
+ "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=",
+ "dev": true,
+ "requires": {
+ "kind-of": "^3.0.2"
+ },
+ "dependencies": {
+ "kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "requires": {
+ "is-buffer": "^1.1.5"
+ }
+ }
+ }
+ },
+ "micromatch": {
+ "version": "3.1.10",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
+ "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
+ "dev": true,
+ "requires": {
+ "arr-diff": "^4.0.0",
+ "array-unique": "^0.3.2",
+ "braces": "^2.3.1",
+ "define-property": "^2.0.2",
+ "extend-shallow": "^3.0.2",
+ "extglob": "^2.0.4",
+ "fragment-cache": "^0.2.1",
+ "kind-of": "^6.0.2",
+ "nanomatch": "^1.2.9",
+ "object.pick": "^1.3.0",
+ "regex-not": "^1.0.0",
+ "snapdragon": "^0.8.1",
+ "to-regex": "^3.0.2"
+ }
+ },
+ "semver": {
+ "version": "5.7.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
+ "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
+ "dev": true
+ },
+ "to-regex-range": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz",
+ "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=",
+ "dev": true,
+ "requires": {
+ "is-number": "^3.0.0",
+ "repeat-string": "^1.6.1"
+ }
+ }
+ }
+ },
+ "form-data": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz",
+ "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==",
+ "dev": true,
+ "requires": {
+ "asynckit": "^0.4.0",
+ "combined-stream": "^1.0.8",
+ "mime-types": "^2.1.12"
+ }
+ },
+ "format": {
+ "version": "0.2.2",
+ "resolved": "https://registry.npmjs.org/format/-/format-0.2.2.tgz",
+ "integrity": "sha1-1hcBB+nv3E7TDJ3DkBbflCtctYs=",
+ "dev": true
+ },
+ "forwarded": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
+ "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
+ "dev": true
+ },
+ "fragment-cache": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz",
+ "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=",
+ "dev": true,
+ "requires": {
+ "map-cache": "^0.2.2"
+ }
+ },
+ "fresh": {
+ "version": "0.5.2",
+ "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
+ "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=",
+ "dev": true
+ },
+ "from2": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz",
+ "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=",
+ "dev": true,
+ "requires": {
+ "inherits": "^2.0.1",
+ "readable-stream": "^2.0.0"
+ }
+ },
+ "fs-extra": {
+ "version": "9.1.0",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz",
+ "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==",
+ "dev": true,
+ "requires": {
+ "at-least-node": "^1.0.0",
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
+ }
+ },
+ "fs-minipass": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz",
+ "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==",
+ "dev": true,
+ "requires": {
+ "minipass": "^3.0.0"
+ }
+ },
+ "fs-monkey": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.3.tgz",
+ "integrity": "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==",
+ "dev": true
+ },
+ "fs-write-stream-atomic": {
+ "version": "1.0.10",
+ "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz",
+ "integrity": "sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=",
+ "dev": true,
+ "requires": {
+ "graceful-fs": "^4.1.2",
+ "iferr": "^0.1.5",
+ "imurmurhash": "^0.1.4",
+ "readable-stream": "1 || 2"
+ }
+ },
+ "fs.realpath": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
+ "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=",
+ "dev": true
+ },
+ "fsevents": {
+ "version": "2.3.2",
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz",
+ "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==",
+ "dev": true,
+ "optional": true
+ },
+ "function-bind": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
+ "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==",
+ "dev": true
+ },
+ "function.prototype.name": {
+ "version": "1.1.5",
+ "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz",
+ "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.19.0",
+ "functions-have-names": "^1.2.2"
+ }
+ },
+ "functions-have-names": {
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.2.tgz",
+ "integrity": "sha512-bLgc3asbWdwPbx2mNk2S49kmJCuQeu0nfmaOgbs8WIyzzkw3r4htszdIi9Q9EMezDPTYuJx2wvjZ/EwgAthpnA==",
+ "dev": true
+ },
+ "fuse.js": {
+ "version": "3.6.1",
+ "resolved": "https://registry.npmjs.org/fuse.js/-/fuse.js-3.6.1.tgz",
+ "integrity": "sha512-hT9yh/tiinkmirKrlv4KWOjztdoZo1mx9Qh4KvWqC7isoXwdUY3PNWUxceF4/qO9R6riA2C29jdTOeQOIROjgw==",
+ "dev": true
+ },
+ "gauge": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz",
+ "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==",
+ "dev": true,
+ "requires": {
+ "aproba": "^1.0.3 || ^2.0.0",
+ "color-support": "^1.1.2",
+ "console-control-strings": "^1.0.0",
+ "has-unicode": "^2.0.1",
+ "object-assign": "^4.1.1",
+ "signal-exit": "^3.0.0",
+ "string-width": "^4.2.3",
+ "strip-ansi": "^6.0.1",
+ "wide-align": "^1.1.2"
+ }
+ },
+ "gensync": {
+ "version": "1.0.0-beta.2",
+ "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
+ "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
+ "dev": true
+ },
+ "get-caller-file": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
+ "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
+ "dev": true
+ },
+ "get-intrinsic": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz",
+ "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==",
+ "dev": true,
+ "requires": {
+ "function-bind": "^1.1.1",
+ "has": "^1.0.3",
+ "has-symbols": "^1.0.1"
+ }
+ },
+ "get-package-type": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz",
+ "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==",
+ "dev": true
+ },
+ "get-stream": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz",
+ "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==",
+ "dev": true
+ },
+ "get-symbol-description": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz",
+ "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "get-intrinsic": "^1.1.1"
+ }
+ },
+ "get-value": {
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz",
+ "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=",
+ "dev": true
+ },
+ "github-slugger": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/github-slugger/-/github-slugger-1.4.0.tgz",
+ "integrity": "sha512-w0dzqw/nt51xMVmlaV1+JRzN+oCa1KfcgGEWhxUG16wbdA+Xnt/yoFO8Z8x/V82ZcZ0wy6ln9QDup5avbhiDhQ==",
+ "dev": true
+ },
+ "glob": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz",
+ "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==",
+ "dev": true,
+ "requires": {
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.0.4",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
+ }
+ },
+ "glob-parent": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
+ "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
+ "dev": true,
+ "requires": {
+ "is-glob": "^4.0.1"
+ }
+ },
+ "glob-promise": {
+ "version": "3.4.0",
+ "resolved": "https://registry.npmjs.org/glob-promise/-/glob-promise-3.4.0.tgz",
+ "integrity": "sha512-q08RJ6O+eJn+dVanerAndJwIcumgbDdYiUT7zFQl3Wm1xD6fBKtah7H8ZJChj4wP+8C+QfeVy8xautR7rdmKEw==",
+ "dev": true,
+ "requires": {
+ "@types/glob": "*"
+ }
+ },
+ "glob-to-regexp": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz",
+ "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==",
+ "dev": true
+ },
+ "global": {
+ "version": "4.4.0",
+ "resolved": "https://registry.npmjs.org/global/-/global-4.4.0.tgz",
+ "integrity": "sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==",
+ "dev": true,
+ "requires": {
+ "min-document": "^2.19.0",
+ "process": "^0.11.10"
+ }
+ },
+ "global-modules": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz",
+ "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==",
+ "dev": true,
+ "requires": {
+ "global-prefix": "^3.0.0"
+ }
+ },
+ "global-prefix": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz",
+ "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==",
+ "dev": true,
+ "requires": {
+ "ini": "^1.3.5",
+ "kind-of": "^6.0.2",
+ "which": "^1.3.1"
+ },
+ "dependencies": {
+ "which": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
+ "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
+ "dev": true,
+ "requires": {
+ "isexe": "^2.0.0"
+ }
+ }
+ }
+ },
+ "globals": {
+ "version": "11.12.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
+ "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
+ "dev": true
+ },
+ "globalthis": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.2.tgz",
+ "integrity": "sha512-ZQnSFO1la8P7auIOQECnm0sSuoMeaSq0EEdXMBFF2QJO4uNcwbyhSgG3MruWNbFTqCLmxVwGOl7LZ9kASvHdeQ==",
+ "dev": true,
+ "requires": {
+ "define-properties": "^1.1.3"
+ }
+ },
+ "globby": {
+ "version": "11.1.0",
+ "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz",
+ "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==",
+ "dev": true,
+ "requires": {
+ "array-union": "^2.1.0",
+ "dir-glob": "^3.0.1",
+ "fast-glob": "^3.2.9",
+ "ignore": "^5.2.0",
+ "merge2": "^1.4.1",
+ "slash": "^3.0.0"
+ }
+ },
+ "graceful-fs": {
+ "version": "4.2.9",
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.9.tgz",
+ "integrity": "sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==",
+ "dev": true
+ },
+ "gzip-size": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-5.1.1.tgz",
+ "integrity": "sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==",
+ "dev": true,
+ "requires": {
+ "duplexer": "^0.1.1",
+ "pify": "^4.0.1"
+ }
+ },
+ "handlebars": {
+ "version": "4.7.7",
+ "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz",
+ "integrity": "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==",
+ "dev": true,
+ "requires": {
+ "minimist": "^1.2.5",
+ "neo-async": "^2.6.0",
+ "source-map": "^0.6.1",
+ "uglify-js": "^3.1.4",
+ "wordwrap": "^1.0.0"
+ },
+ "dependencies": {
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ }
+ }
+ },
+ "has": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
+ "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
+ "dev": true,
+ "requires": {
+ "function-bind": "^1.1.1"
+ }
+ },
+ "has-bigints": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz",
+ "integrity": "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==",
+ "dev": true
+ },
+ "has-flag": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
+ "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=",
+ "dev": true
+ },
+ "has-glob": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/has-glob/-/has-glob-1.0.0.tgz",
+ "integrity": "sha1-mqqe7b/7G6OZCnsAEPtnjuAIEgc=",
+ "dev": true,
+ "requires": {
+ "is-glob": "^3.0.0"
+ },
+ "dependencies": {
+ "is-glob": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz",
+ "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=",
+ "dev": true,
+ "requires": {
+ "is-extglob": "^2.1.0"
+ }
+ }
+ }
+ },
+ "has-symbols": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz",
+ "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==",
+ "dev": true
+ },
+ "has-tostringtag": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz",
+ "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==",
+ "dev": true,
+ "requires": {
+ "has-symbols": "^1.0.2"
+ }
+ },
+ "has-unicode": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz",
+ "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=",
+ "dev": true
+ },
+ "has-value": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz",
+ "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=",
+ "dev": true,
+ "requires": {
+ "get-value": "^2.0.6",
+ "has-values": "^1.0.0",
+ "isobject": "^3.0.0"
+ }
+ },
+ "has-values": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz",
+ "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=",
+ "dev": true,
+ "requires": {
+ "is-number": "^3.0.0",
+ "kind-of": "^4.0.0"
+ },
+ "dependencies": {
+ "is-buffer": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
+ "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==",
+ "dev": true
+ },
+ "is-number": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz",
+ "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=",
+ "dev": true,
+ "requires": {
+ "kind-of": "^3.0.2"
+ },
+ "dependencies": {
+ "kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "requires": {
+ "is-buffer": "^1.1.5"
+ }
+ }
+ }
+ },
+ "kind-of": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz",
+ "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=",
+ "dev": true,
+ "requires": {
+ "is-buffer": "^1.1.5"
+ }
+ }
+ }
+ },
+ "hash-base": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz",
+ "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==",
+ "dev": true,
+ "requires": {
+ "inherits": "^2.0.4",
+ "readable-stream": "^3.6.0",
+ "safe-buffer": "^5.2.0"
+ },
+ "dependencies": {
+ "readable-stream": {
+ "version": "3.6.0",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
+ "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
+ "dev": true,
+ "requires": {
+ "inherits": "^2.0.3",
+ "string_decoder": "^1.1.1",
+ "util-deprecate": "^1.0.1"
+ }
+ },
+ "safe-buffer": {
+ "version": "5.2.1",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
+ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
+ "dev": true
+ }
+ }
+ },
+ "hash.js": {
+ "version": "1.1.7",
+ "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz",
+ "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==",
+ "dev": true,
+ "requires": {
+ "inherits": "^2.0.3",
+ "minimalistic-assert": "^1.0.1"
+ }
+ },
+ "hast-to-hyperscript": {
+ "version": "9.0.1",
+ "resolved": "https://registry.npmjs.org/hast-to-hyperscript/-/hast-to-hyperscript-9.0.1.tgz",
+ "integrity": "sha512-zQgLKqF+O2F72S1aa4y2ivxzSlko3MAvxkwG8ehGmNiqd98BIN3JM1rAJPmplEyLmGLO2QZYJtIneOSZ2YbJuA==",
+ "dev": true,
+ "requires": {
+ "@types/unist": "^2.0.3",
+ "comma-separated-tokens": "^1.0.0",
+ "property-information": "^5.3.0",
+ "space-separated-tokens": "^1.0.0",
+ "style-to-object": "^0.3.0",
+ "unist-util-is": "^4.0.0",
+ "web-namespaces": "^1.0.0"
+ }
+ },
+ "hast-util-from-parse5": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-6.0.1.tgz",
+ "integrity": "sha512-jeJUWiN5pSxW12Rh01smtVkZgZr33wBokLzKLwinYOUfSzm1Nl/c3GUGebDyOKjdsRgMvoVbV0VpAcpjF4NrJA==",
+ "dev": true,
+ "requires": {
+ "@types/parse5": "^5.0.0",
+ "hastscript": "^6.0.0",
+ "property-information": "^5.0.0",
+ "vfile": "^4.0.0",
+ "vfile-location": "^3.2.0",
+ "web-namespaces": "^1.0.0"
+ }
+ },
+ "hast-util-parse-selector": {
+ "version": "2.2.5",
+ "resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-2.2.5.tgz",
+ "integrity": "sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==",
+ "dev": true
+ },
+ "hast-util-raw": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/hast-util-raw/-/hast-util-raw-6.0.1.tgz",
+ "integrity": "sha512-ZMuiYA+UF7BXBtsTBNcLBF5HzXzkyE6MLzJnL605LKE8GJylNjGc4jjxazAHUtcwT5/CEt6afRKViYB4X66dig==",
+ "dev": true,
+ "requires": {
+ "@types/hast": "^2.0.0",
+ "hast-util-from-parse5": "^6.0.0",
+ "hast-util-to-parse5": "^6.0.0",
+ "html-void-elements": "^1.0.0",
+ "parse5": "^6.0.0",
+ "unist-util-position": "^3.0.0",
+ "vfile": "^4.0.0",
+ "web-namespaces": "^1.0.0",
+ "xtend": "^4.0.0",
+ "zwitch": "^1.0.0"
+ }
+ },
+ "hast-util-to-parse5": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/hast-util-to-parse5/-/hast-util-to-parse5-6.0.0.tgz",
+ "integrity": "sha512-Lu5m6Lgm/fWuz8eWnrKezHtVY83JeRGaNQ2kn9aJgqaxvVkFCZQBEhgodZUDUvoodgyROHDb3r5IxAEdl6suJQ==",
+ "dev": true,
+ "requires": {
+ "hast-to-hyperscript": "^9.0.0",
+ "property-information": "^5.0.0",
+ "web-namespaces": "^1.0.0",
+ "xtend": "^4.0.0",
+ "zwitch": "^1.0.0"
+ }
+ },
+ "hastscript": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-6.0.0.tgz",
+ "integrity": "sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==",
+ "dev": true,
+ "requires": {
+ "@types/hast": "^2.0.0",
+ "comma-separated-tokens": "^1.0.0",
+ "hast-util-parse-selector": "^2.0.0",
+ "property-information": "^5.0.0",
+ "space-separated-tokens": "^1.0.0"
+ }
+ },
+ "he": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz",
+ "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==",
+ "dev": true
+ },
+ "highlight.js": {
+ "version": "10.7.3",
+ "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-10.7.3.tgz",
+ "integrity": "sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==",
+ "dev": true
+ },
+ "history": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/history/-/history-5.0.0.tgz",
+ "integrity": "sha512-3NyRMKIiFSJmIPdq7FxkNMJkQ7ZEtVblOQ38VtKaA0zZMW1Eo6Q6W8oDKEflr1kNNTItSnk4JMCO1deeSgbLLg==",
+ "dev": true,
+ "requires": {
+ "@babel/runtime": "^7.7.6"
+ }
+ },
+ "hmac-drbg": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz",
+ "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=",
+ "dev": true,
+ "requires": {
+ "hash.js": "^1.0.3",
+ "minimalistic-assert": "^1.0.0",
+ "minimalistic-crypto-utils": "^1.0.1"
+ }
+ },
+ "hoist-non-react-statics": {
+ "version": "3.3.2",
+ "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz",
+ "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==",
+ "dev": true,
+ "requires": {
+ "react-is": "^16.7.0"
+ },
+ "dependencies": {
+ "react-is": {
+ "version": "16.13.1",
+ "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
+ "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==",
+ "dev": true
+ }
+ }
+ },
+ "hosted-git-info": {
+ "version": "2.8.9",
+ "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz",
+ "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==",
+ "dev": true
+ },
+ "html-encoding-sniffer": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz",
+ "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==",
+ "dev": true,
+ "requires": {
+ "whatwg-encoding": "^1.0.5"
+ }
+ },
+ "html-entities": {
+ "version": "2.3.2",
+ "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.3.2.tgz",
+ "integrity": "sha512-c3Ab/url5ksaT0WyleslpBEthOzWhrjQbg75y7XUsfSzi3Dgzt0l8w5e7DylRn15MTlMMD58dTfzddNS2kcAjQ==",
+ "dev": true
+ },
+ "html-escaper": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz",
+ "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==",
+ "dev": true
+ },
+ "html-minifier-terser": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz",
+ "integrity": "sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==",
+ "dev": true,
+ "requires": {
+ "camel-case": "^4.1.1",
+ "clean-css": "^4.2.3",
+ "commander": "^4.1.1",
+ "he": "^1.2.0",
+ "param-case": "^3.0.3",
+ "relateurl": "^0.2.7",
+ "terser": "^4.6.3"
+ },
+ "dependencies": {
+ "commander": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz",
+ "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==",
+ "dev": true
+ }
+ }
+ },
+ "html-tags": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.1.0.tgz",
+ "integrity": "sha512-1qYz89hW3lFDEazhjW0yVAV87lw8lVkrJocr72XmBkMKsoSVJCQx3W8BXsC7hO2qAt8BoVjYjtAcZ9perqGnNg==",
+ "dev": true
+ },
+ "html-void-elements": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/html-void-elements/-/html-void-elements-1.0.5.tgz",
+ "integrity": "sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w==",
+ "dev": true
+ },
+ "html-webpack-plugin": {
+ "version": "4.5.2",
+ "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-4.5.2.tgz",
+ "integrity": "sha512-q5oYdzjKUIPQVjOosjgvCHQOv9Ett9CYYHlgvJeXG0qQvdSojnBq4vAdQBwn1+yGveAwHCoe/rMR86ozX3+c2A==",
+ "dev": true,
+ "requires": {
+ "@types/html-minifier-terser": "^5.0.0",
+ "@types/tapable": "^1.0.5",
+ "@types/webpack": "^4.41.8",
+ "html-minifier-terser": "^5.0.1",
+ "loader-utils": "^1.2.3",
+ "lodash": "^4.17.20",
+ "pretty-error": "^2.1.1",
+ "tapable": "^1.1.3",
+ "util.promisify": "1.0.0"
+ },
+ "dependencies": {
+ "json5": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz",
+ "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==",
+ "dev": true,
+ "requires": {
+ "minimist": "^1.2.0"
+ }
+ },
+ "loader-utils": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz",
+ "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==",
+ "dev": true,
+ "requires": {
+ "big.js": "^5.2.2",
+ "emojis-list": "^3.0.0",
+ "json5": "^1.0.1"
+ }
+ }
+ }
+ },
+ "htmlparser2": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz",
+ "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==",
+ "dev": true,
+ "requires": {
+ "domelementtype": "^2.0.1",
+ "domhandler": "^4.0.0",
+ "domutils": "^2.5.2",
+ "entities": "^2.0.0"
+ }
+ },
+ "http-errors": {
+ "version": "1.8.1",
+ "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.8.1.tgz",
+ "integrity": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==",
+ "dev": true,
+ "requires": {
+ "depd": "~1.1.2",
+ "inherits": "2.0.4",
+ "setprototypeof": "1.2.0",
+ "statuses": ">= 1.5.0 < 2",
+ "toidentifier": "1.0.1"
+ }
+ },
+ "http-proxy-agent": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz",
+ "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==",
+ "dev": true,
+ "requires": {
+ "@tootallnate/once": "1",
+ "agent-base": "6",
+ "debug": "4"
+ }
+ },
+ "https-browserify": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz",
+ "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=",
+ "dev": true
+ },
+ "https-proxy-agent": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz",
+ "integrity": "sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==",
+ "dev": true,
+ "requires": {
+ "agent-base": "6",
+ "debug": "4"
+ }
+ },
+ "human-signals": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz",
+ "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==",
+ "dev": true
+ },
+ "iconv-lite": {
+ "version": "0.4.24",
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
+ "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
+ "dev": true,
+ "requires": {
+ "safer-buffer": ">= 2.1.2 < 3"
+ }
+ },
+ "icss-utils": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-4.1.1.tgz",
+ "integrity": "sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==",
+ "dev": true,
+ "requires": {
+ "postcss": "^7.0.14"
+ }
+ },
+ "ieee754": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
+ "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
+ "dev": true
+ },
+ "iferr": {
+ "version": "0.1.5",
+ "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz",
+ "integrity": "sha1-xg7taebY/bazEEofy8ocGS3FtQE=",
+ "dev": true
+ },
+ "ignore": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz",
+ "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==",
+ "dev": true
+ },
+ "immediate": {
+ "version": "3.0.6",
+ "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz",
+ "integrity": "sha1-nbHb0Pr43m++D13V5Wu2BigN5ps="
+ },
+ "immer": {
+ "version": "8.0.1",
+ "resolved": "https://registry.npmjs.org/immer/-/immer-8.0.1.tgz",
+ "integrity": "sha512-aqXhGP7//Gui2+UrEtvxZxSquQVXTpZ7KDxfCcKAF3Vysvw0CViVaW9RZ1j1xlIYqaaaipBoqdqeibkc18PNvA==",
+ "dev": true
+ },
+ "import-fresh": {
+ "version": "3.3.0",
+ "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz",
+ "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==",
+ "dev": true,
+ "requires": {
+ "parent-module": "^1.0.0",
+ "resolve-from": "^4.0.0"
+ },
+ "dependencies": {
+ "resolve-from": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
+ "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
+ "dev": true
+ }
+ }
+ },
+ "import-local": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz",
+ "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==",
+ "dev": true,
+ "requires": {
+ "pkg-dir": "^4.2.0",
+ "resolve-cwd": "^3.0.0"
+ },
+ "dependencies": {
+ "find-up": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
+ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
+ "dev": true,
+ "requires": {
+ "locate-path": "^5.0.0",
+ "path-exists": "^4.0.0"
+ }
+ },
+ "locate-path": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
+ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
+ "dev": true,
+ "requires": {
+ "p-locate": "^4.1.0"
+ }
+ },
+ "p-limit": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
+ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
+ "dev": true,
+ "requires": {
+ "p-try": "^2.0.0"
+ }
+ },
+ "p-locate": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
+ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
+ "dev": true,
+ "requires": {
+ "p-limit": "^2.2.0"
+ }
+ },
+ "pkg-dir": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
+ "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
+ "dev": true,
+ "requires": {
+ "find-up": "^4.0.0"
+ }
+ }
+ }
+ },
+ "imurmurhash": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
+ "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=",
+ "dev": true
+ },
+ "indent-string": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz",
+ "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==",
+ "dev": true
+ },
+ "infer-owner": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz",
+ "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==",
+ "dev": true
+ },
+ "inflight": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
+ "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=",
+ "dev": true,
+ "requires": {
+ "once": "^1.3.0",
+ "wrappy": "1"
+ }
+ },
+ "inherits": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
+ },
+ "ini": {
+ "version": "1.3.8",
+ "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
+ "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==",
+ "dev": true
+ },
+ "inline-style-parser": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz",
+ "integrity": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==",
+ "dev": true
+ },
+ "internal-slot": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz",
+ "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==",
+ "dev": true,
+ "requires": {
+ "get-intrinsic": "^1.1.0",
+ "has": "^1.0.3",
+ "side-channel": "^1.0.4"
+ }
+ },
+ "interpret": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/interpret/-/interpret-2.2.0.tgz",
+ "integrity": "sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==",
+ "dev": true
+ },
+ "invariant": {
+ "version": "2.2.4",
+ "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz",
+ "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==",
+ "dev": true,
+ "requires": {
+ "loose-envify": "^1.0.0"
+ }
+ },
+ "ip": {
+ "version": "1.1.5",
+ "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz",
+ "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=",
+ "dev": true
+ },
+ "ipaddr.js": {
+ "version": "1.9.1",
+ "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
+ "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
+ "dev": true
+ },
+ "is-absolute-url": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz",
+ "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==",
+ "dev": true
+ },
+ "is-accessor-descriptor": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
+ "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
+ "dev": true,
+ "requires": {
+ "kind-of": "^6.0.0"
+ }
+ },
+ "is-alphabetical": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.4.tgz",
+ "integrity": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==",
+ "dev": true
+ },
+ "is-alphanumerical": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz",
+ "integrity": "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==",
+ "dev": true,
+ "requires": {
+ "is-alphabetical": "^1.0.0",
+ "is-decimal": "^1.0.0"
+ }
+ },
+ "is-arguments": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz",
+ "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "has-tostringtag": "^1.0.0"
+ }
+ },
+ "is-arrayish": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
+ "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=",
+ "dev": true
+ },
+ "is-bigint": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz",
+ "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==",
+ "dev": true,
+ "requires": {
+ "has-bigints": "^1.0.1"
+ }
+ },
+ "is-binary-path": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
+ "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
+ "dev": true,
+ "requires": {
+ "binary-extensions": "^2.0.0"
+ }
+ },
+ "is-boolean-object": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz",
+ "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "has-tostringtag": "^1.0.0"
+ }
+ },
+ "is-buffer": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz",
+ "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==",
+ "dev": true
+ },
+ "is-callable": {
+ "version": "1.2.4",
+ "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz",
+ "integrity": "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==",
+ "dev": true
+ },
+ "is-ci": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz",
+ "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==",
+ "dev": true,
+ "requires": {
+ "ci-info": "^2.0.0"
+ },
+ "dependencies": {
+ "ci-info": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz",
+ "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==",
+ "dev": true
+ }
+ }
+ },
+ "is-core-module": {
+ "version": "2.8.1",
+ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.1.tgz",
+ "integrity": "sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==",
+ "dev": true,
+ "requires": {
+ "has": "^1.0.3"
+ }
+ },
+ "is-data-descriptor": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
+ "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
+ "dev": true,
+ "requires": {
+ "kind-of": "^6.0.0"
+ }
+ },
+ "is-date-object": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz",
+ "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==",
+ "dev": true,
+ "requires": {
+ "has-tostringtag": "^1.0.0"
+ }
+ },
+ "is-decimal": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.4.tgz",
+ "integrity": "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==",
+ "dev": true
+ },
+ "is-descriptor": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
+ "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
+ "dev": true,
+ "requires": {
+ "is-accessor-descriptor": "^1.0.0",
+ "is-data-descriptor": "^1.0.0",
+ "kind-of": "^6.0.2"
+ }
+ },
+ "is-docker": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz",
+ "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==",
+ "dev": true
+ },
+ "is-dom": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/is-dom/-/is-dom-1.1.0.tgz",
+ "integrity": "sha512-u82f6mvhYxRPKpw8V1N0W8ce1xXwOrQtgGcxl6UCL5zBmZu3is/18K0rR7uFCnMDuAsS/3W54mGL4vsaFUQlEQ==",
+ "dev": true,
+ "requires": {
+ "is-object": "^1.0.1",
+ "is-window": "^1.0.2"
+ }
+ },
+ "is-extendable": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz",
+ "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==",
+ "dev": true,
+ "requires": {
+ "is-plain-object": "^2.0.4"
+ }
+ },
+ "is-extglob": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
+ "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=",
+ "dev": true
+ },
+ "is-fullwidth-code-point": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
+ "dev": true
+ },
+ "is-function": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/is-function/-/is-function-1.0.2.tgz",
+ "integrity": "sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==",
+ "dev": true
+ },
+ "is-generator-fn": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz",
+ "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==",
+ "dev": true
+ },
+ "is-glob": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
+ "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
+ "dev": true,
+ "requires": {
+ "is-extglob": "^2.1.1"
+ }
+ },
+ "is-hexadecimal": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz",
+ "integrity": "sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==",
+ "dev": true
+ },
+ "is-map": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz",
+ "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==",
+ "dev": true
+ },
+ "is-negative-zero": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz",
+ "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==",
+ "dev": true
+ },
+ "is-number": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
+ "dev": true
+ },
+ "is-number-object": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.6.tgz",
+ "integrity": "sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g==",
+ "dev": true,
+ "requires": {
+ "has-tostringtag": "^1.0.0"
+ }
+ },
+ "is-object": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/is-object/-/is-object-1.0.2.tgz",
+ "integrity": "sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==",
+ "dev": true
+ },
+ "is-plain-obj": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.0.0.tgz",
+ "integrity": "sha512-NXRbBtUdBioI73y/HmOhogw/U5msYPC9DAtGkJXeFcFWSFZw0mCUsPxk/snTuJHzNKA8kLBK4rH97RMB1BfCXw==",
+ "dev": true
+ },
+ "is-plain-object": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz",
+ "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==",
+ "dev": true,
+ "requires": {
+ "isobject": "^3.0.1"
+ }
+ },
+ "is-potential-custom-element-name": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz",
+ "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==",
+ "dev": true
+ },
+ "is-regex": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz",
+ "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "has-tostringtag": "^1.0.0"
+ }
+ },
+ "is-root": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz",
+ "integrity": "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==",
+ "dev": true
+ },
+ "is-set": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz",
+ "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==",
+ "dev": true
+ },
+ "is-shared-array-buffer": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz",
+ "integrity": "sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA==",
+ "dev": true
+ },
+ "is-stream": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz",
+ "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==",
+ "dev": true
+ },
+ "is-string": {
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz",
+ "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==",
+ "dev": true,
+ "requires": {
+ "has-tostringtag": "^1.0.0"
+ }
+ },
+ "is-symbol": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz",
+ "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==",
+ "dev": true,
+ "requires": {
+ "has-symbols": "^1.0.2"
+ }
+ },
+ "is-typedarray": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz",
+ "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=",
+ "dev": true
+ },
+ "is-weakref": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz",
+ "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2"
+ }
+ },
+ "is-whitespace-character": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/is-whitespace-character/-/is-whitespace-character-1.0.4.tgz",
+ "integrity": "sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==",
+ "dev": true
+ },
+ "is-window": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/is-window/-/is-window-1.0.2.tgz",
+ "integrity": "sha1-LIlspT25feRdPDMTOmXYyfVjSA0=",
+ "dev": true
+ },
+ "is-windows": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz",
+ "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==",
+ "dev": true
+ },
+ "is-word-character": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/is-word-character/-/is-word-character-1.0.4.tgz",
+ "integrity": "sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA==",
+ "dev": true
+ },
+ "is-wsl": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz",
+ "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==",
+ "dev": true,
+ "requires": {
+ "is-docker": "^2.0.0"
+ }
+ },
+ "isarray": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz",
+ "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==",
+ "dev": true
+ },
+ "isexe": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
+ "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=",
+ "dev": true
+ },
+ "isobject": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz",
+ "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=",
+ "dev": true
+ },
+ "istanbul-lib-coverage": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz",
+ "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==",
+ "dev": true
+ },
+ "istanbul-lib-instrument": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.1.0.tgz",
+ "integrity": "sha512-czwUz525rkOFDJxfKK6mYfIs9zBKILyrZQxjz3ABhjQXhbhFsSbo1HW/BFcsDnfJYJWA6thRR5/TUY2qs5W99Q==",
+ "dev": true,
+ "requires": {
+ "@babel/core": "^7.12.3",
+ "@babel/parser": "^7.14.7",
+ "@istanbuljs/schema": "^0.1.2",
+ "istanbul-lib-coverage": "^3.2.0",
+ "semver": "^6.3.0"
+ }
+ },
+ "istanbul-lib-report": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz",
+ "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==",
+ "dev": true,
+ "requires": {
+ "istanbul-lib-coverage": "^3.0.0",
+ "make-dir": "^3.0.0",
+ "supports-color": "^7.1.0"
+ },
+ "dependencies": {
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "make-dir": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
+ "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
+ "dev": true,
+ "requires": {
+ "semver": "^6.0.0"
+ }
+ },
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "istanbul-lib-source-maps": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz",
+ "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==",
+ "dev": true,
+ "requires": {
+ "debug": "^4.1.1",
+ "istanbul-lib-coverage": "^3.0.0",
+ "source-map": "^0.6.1"
+ },
+ "dependencies": {
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ }
+ }
+ },
+ "istanbul-reports": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.3.tgz",
+ "integrity": "sha512-x9LtDVtfm/t1GFiLl3NffC7hz+I1ragvgX1P/Lg1NlIagifZDKUkuuaAxH/qpwj2IuEfD8G2Bs/UKp+sZ/pKkg==",
+ "dev": true,
+ "requires": {
+ "html-escaper": "^2.0.0",
+ "istanbul-lib-report": "^3.0.0"
+ }
+ },
+ "iterate-iterator": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/iterate-iterator/-/iterate-iterator-1.0.2.tgz",
+ "integrity": "sha512-t91HubM4ZDQ70M9wqp+pcNpu8OyJ9UAtXntT/Bcsvp5tZMnz9vRa+IunKXeI8AnfZMTv0jNuVEmGeLSMjVvfPw==",
+ "dev": true
+ },
+ "iterate-value": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/iterate-value/-/iterate-value-1.0.2.tgz",
+ "integrity": "sha512-A6fMAio4D2ot2r/TYzr4yUWrmwNdsN5xL7+HUiyACE4DXm+q8HtPcnFTp+NnW3k4N05tZ7FVYFFb2CR13NxyHQ==",
+ "dev": true,
+ "requires": {
+ "es-get-iterator": "^1.0.2",
+ "iterate-iterator": "^1.0.1"
+ }
+ },
+ "jest": {
+ "version": "27.4.7",
+ "resolved": "https://registry.npmjs.org/jest/-/jest-27.4.7.tgz",
+ "integrity": "sha512-8heYvsx7nV/m8m24Vk26Y87g73Ba6ueUd0MWed/NXMhSZIm62U/llVbS0PJe1SHunbyXjJ/BqG1z9bFjGUIvTg==",
+ "dev": true,
+ "requires": {
+ "@jest/core": "^27.4.7",
+ "import-local": "^3.0.2",
+ "jest-cli": "^27.4.7"
+ }
+ },
+ "jest-changed-files": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.4.2.tgz",
+ "integrity": "sha512-/9x8MjekuzUQoPjDHbBiXbNEBauhrPU2ct7m8TfCg69ywt1y/N+yYwGh3gCpnqUS3klYWDU/lSNgv+JhoD2k1A==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^27.4.2",
+ "execa": "^5.0.0",
+ "throat": "^6.0.1"
+ },
+ "dependencies": {
+ "@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "requires": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ }
+ },
+ "@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "requires": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "jest-circus": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-27.4.6.tgz",
+ "integrity": "sha512-UA7AI5HZrW4wRM72Ro80uRR2Fg+7nR0GESbSI/2M+ambbzVuA63mn5T1p3Z/wlhntzGpIG1xx78GP2YIkf6PhQ==",
+ "dev": true,
+ "requires": {
+ "@jest/environment": "^27.4.6",
+ "@jest/test-result": "^27.4.6",
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "co": "^4.6.0",
+ "dedent": "^0.7.0",
+ "expect": "^27.4.6",
+ "is-generator-fn": "^2.0.0",
+ "jest-each": "^27.4.6",
+ "jest-matcher-utils": "^27.4.6",
+ "jest-message-util": "^27.4.6",
+ "jest-runtime": "^27.4.6",
+ "jest-snapshot": "^27.4.6",
+ "jest-util": "^27.4.2",
+ "pretty-format": "^27.4.6",
+ "slash": "^3.0.0",
+ "stack-utils": "^2.0.3",
+ "throat": "^6.0.1"
+ },
+ "dependencies": {
+ "@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "requires": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ }
+ },
+ "@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "requires": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "jest-util": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.4.2.tgz",
+ "integrity": "sha512-YuxxpXU6nlMan9qyLuxHaMMOzXAl5aGZWCSzben5DhLHemYQxCc4YK+4L3ZrCutT8GPQ+ui9k5D8rUJoDioMnA==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.4",
+ "picomatch": "^2.2.3"
+ }
+ },
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "jest-cli": {
+ "version": "27.4.7",
+ "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-27.4.7.tgz",
+ "integrity": "sha512-zREYhvjjqe1KsGV15mdnxjThKNDgza1fhDT+iUsXWLCq3sxe9w5xnvyctcYVT5PcdLSjv7Y5dCwTS3FCF1tiuw==",
+ "dev": true,
+ "requires": {
+ "@jest/core": "^27.4.7",
+ "@jest/test-result": "^27.4.6",
+ "@jest/types": "^27.4.2",
+ "chalk": "^4.0.0",
+ "exit": "^0.1.2",
+ "graceful-fs": "^4.2.4",
+ "import-local": "^3.0.2",
+ "jest-config": "^27.4.7",
+ "jest-util": "^27.4.2",
+ "jest-validate": "^27.4.6",
+ "prompts": "^2.0.1",
+ "yargs": "^16.2.0"
+ },
+ "dependencies": {
+ "@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "requires": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ }
+ },
+ "@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "requires": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "jest-util": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.4.2.tgz",
+ "integrity": "sha512-YuxxpXU6nlMan9qyLuxHaMMOzXAl5aGZWCSzben5DhLHemYQxCc4YK+4L3ZrCutT8GPQ+ui9k5D8rUJoDioMnA==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.4",
+ "picomatch": "^2.2.3"
+ }
+ },
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "jest-config": {
+ "version": "27.4.7",
+ "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-27.4.7.tgz",
+ "integrity": "sha512-xz/o/KJJEedHMrIY9v2ParIoYSrSVY6IVeE4z5Z3i101GoA5XgfbJz+1C8EYPsv7u7f39dS8F9v46BHDhn0vlw==",
+ "dev": true,
+ "requires": {
+ "@babel/core": "^7.8.0",
+ "@jest/test-sequencer": "^27.4.6",
+ "@jest/types": "^27.4.2",
+ "babel-jest": "^27.4.6",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "deepmerge": "^4.2.2",
+ "glob": "^7.1.1",
+ "graceful-fs": "^4.2.4",
+ "jest-circus": "^27.4.6",
+ "jest-environment-jsdom": "^27.4.6",
+ "jest-environment-node": "^27.4.6",
+ "jest-get-type": "^27.4.0",
+ "jest-jasmine2": "^27.4.6",
+ "jest-regex-util": "^27.4.0",
+ "jest-resolve": "^27.4.6",
+ "jest-runner": "^27.4.6",
+ "jest-util": "^27.4.2",
+ "jest-validate": "^27.4.6",
+ "micromatch": "^4.0.4",
+ "pretty-format": "^27.4.6",
+ "slash": "^3.0.0"
+ },
+ "dependencies": {
+ "@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "requires": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ }
+ },
+ "@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "requires": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "jest-regex-util": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.4.0.tgz",
+ "integrity": "sha512-WeCpMpNnqJYMQoOjm1nTtsgbR4XHAk1u00qDoNBQoykM280+/TmgA5Qh5giC1ecy6a5d4hbSsHzpBtu5yvlbEg==",
+ "dev": true
+ },
+ "jest-util": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.4.2.tgz",
+ "integrity": "sha512-YuxxpXU6nlMan9qyLuxHaMMOzXAl5aGZWCSzben5DhLHemYQxCc4YK+4L3ZrCutT8GPQ+ui9k5D8rUJoDioMnA==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.4",
+ "picomatch": "^2.2.3"
+ }
+ },
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "jest-diff": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.4.6.tgz",
+ "integrity": "sha512-zjaB0sh0Lb13VyPsd92V7HkqF6yKRH9vm33rwBt7rPYrpQvS1nCvlIy2pICbKta+ZjWngYLNn4cCK4nyZkjS/w==",
+ "dev": true,
+ "requires": {
+ "chalk": "^4.0.0",
+ "diff-sequences": "^27.4.0",
+ "jest-get-type": "^27.4.0",
+ "pretty-format": "^27.4.6"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "jest-docblock": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.4.0.tgz",
+ "integrity": "sha512-7TBazUdCKGV7svZ+gh7C8esAnweJoG+SvcF6Cjqj4l17zA2q1cMwx2JObSioubk317H+cjcHgP+7fTs60paulg==",
+ "dev": true,
+ "requires": {
+ "detect-newline": "^3.0.0"
+ }
+ },
+ "jest-each": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-27.4.6.tgz",
+ "integrity": "sha512-n6QDq8y2Hsmn22tRkgAk+z6MCX7MeVlAzxmZDshfS2jLcaBlyhpF3tZSJLR+kXmh23GEvS0ojMR8i6ZeRvpQcA==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^27.4.2",
+ "chalk": "^4.0.0",
+ "jest-get-type": "^27.4.0",
+ "jest-util": "^27.4.2",
+ "pretty-format": "^27.4.6"
+ },
+ "dependencies": {
+ "@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "requires": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ }
+ },
+ "@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "requires": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "jest-util": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.4.2.tgz",
+ "integrity": "sha512-YuxxpXU6nlMan9qyLuxHaMMOzXAl5aGZWCSzben5DhLHemYQxCc4YK+4L3ZrCutT8GPQ+ui9k5D8rUJoDioMnA==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.4",
+ "picomatch": "^2.2.3"
+ }
+ },
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "jest-environment-jsdom": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.4.6.tgz",
+ "integrity": "sha512-o3dx5p/kHPbUlRvSNjypEcEtgs6LmvESMzgRFQE6c+Prwl2JLA4RZ7qAnxc5VM8kutsGRTB15jXeeSbJsKN9iA==",
+ "dev": true,
+ "requires": {
+ "@jest/environment": "^27.4.6",
+ "@jest/fake-timers": "^27.4.6",
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "jest-mock": "^27.4.6",
+ "jest-util": "^27.4.2",
+ "jsdom": "^16.6.0"
+ },
+ "dependencies": {
+ "@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "requires": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ }
+ },
+ "@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "requires": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "jest-util": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.4.2.tgz",
+ "integrity": "sha512-YuxxpXU6nlMan9qyLuxHaMMOzXAl5aGZWCSzben5DhLHemYQxCc4YK+4L3ZrCutT8GPQ+ui9k5D8rUJoDioMnA==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.4",
+ "picomatch": "^2.2.3"
+ }
+ },
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "jest-environment-node": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.4.6.tgz",
+ "integrity": "sha512-yfHlZ9m+kzTKZV0hVfhVu6GuDxKAYeFHrfulmy7Jxwsq4V7+ZK7f+c0XP/tbVDMQW7E4neG2u147hFkuVz0MlQ==",
+ "dev": true,
+ "requires": {
+ "@jest/environment": "^27.4.6",
+ "@jest/fake-timers": "^27.4.6",
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "jest-mock": "^27.4.6",
+ "jest-util": "^27.4.2"
+ },
+ "dependencies": {
+ "@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "requires": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ }
+ },
+ "@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "requires": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "jest-util": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.4.2.tgz",
+ "integrity": "sha512-YuxxpXU6nlMan9qyLuxHaMMOzXAl5aGZWCSzben5DhLHemYQxCc4YK+4L3ZrCutT8GPQ+ui9k5D8rUJoDioMnA==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.4",
+ "picomatch": "^2.2.3"
+ }
+ },
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "jest-get-type": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.4.0.tgz",
+ "integrity": "sha512-tk9o+ld5TWq41DkK14L4wox4s2D9MtTpKaAVzXfr5CUKm5ZK2ExcaFE0qls2W71zE/6R2TxxrK9w2r6svAFDBQ==",
+ "dev": true
+ },
+ "jest-haste-map": {
+ "version": "26.6.2",
+ "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-26.6.2.tgz",
+ "integrity": "sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^26.6.2",
+ "@types/graceful-fs": "^4.1.2",
+ "@types/node": "*",
+ "anymatch": "^3.0.3",
+ "fb-watchman": "^2.0.0",
+ "fsevents": "^2.1.2",
+ "graceful-fs": "^4.2.4",
+ "jest-regex-util": "^26.0.0",
+ "jest-serializer": "^26.6.2",
+ "jest-util": "^26.6.2",
+ "jest-worker": "^26.6.2",
+ "micromatch": "^4.0.2",
+ "sane": "^4.0.3",
+ "walker": "^1.0.7"
+ },
+ "dependencies": {
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "jest-worker": {
+ "version": "26.6.2",
+ "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz",
+ "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==",
+ "dev": true,
+ "requires": {
+ "@types/node": "*",
+ "merge-stream": "^2.0.0",
+ "supports-color": "^7.0.0"
+ }
+ },
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "jest-jasmine2": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.4.6.tgz",
+ "integrity": "sha512-uAGNXF644I/whzhsf7/qf74gqy9OuhvJ0XYp8SDecX2ooGeaPnmJMjXjKt0mqh1Rl5dtRGxJgNrHlBQIBfS5Nw==",
+ "dev": true,
+ "requires": {
+ "@jest/environment": "^27.4.6",
+ "@jest/source-map": "^27.4.0",
+ "@jest/test-result": "^27.4.6",
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "co": "^4.6.0",
+ "expect": "^27.4.6",
+ "is-generator-fn": "^2.0.0",
+ "jest-each": "^27.4.6",
+ "jest-matcher-utils": "^27.4.6",
+ "jest-message-util": "^27.4.6",
+ "jest-runtime": "^27.4.6",
+ "jest-snapshot": "^27.4.6",
+ "jest-util": "^27.4.2",
+ "pretty-format": "^27.4.6",
+ "throat": "^6.0.1"
+ },
+ "dependencies": {
+ "@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "requires": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ }
+ },
+ "@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "requires": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "jest-util": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.4.2.tgz",
+ "integrity": "sha512-YuxxpXU6nlMan9qyLuxHaMMOzXAl5aGZWCSzben5DhLHemYQxCc4YK+4L3ZrCutT8GPQ+ui9k5D8rUJoDioMnA==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.4",
+ "picomatch": "^2.2.3"
+ }
+ },
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "jest-leak-detector": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.4.6.tgz",
+ "integrity": "sha512-kkaGixDf9R7CjHm2pOzfTxZTQQQ2gHTIWKY/JZSiYTc90bZp8kSZnUMS3uLAfwTZwc0tcMRoEX74e14LG1WapA==",
+ "dev": true,
+ "requires": {
+ "jest-get-type": "^27.4.0",
+ "pretty-format": "^27.4.6"
+ }
+ },
+ "jest-matcher-utils": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.4.6.tgz",
+ "integrity": "sha512-XD4PKT3Wn1LQnRAq7ZsTI0VRuEc9OrCPFiO1XL7bftTGmfNF0DcEwMHRgqiu7NGf8ZoZDREpGrCniDkjt79WbA==",
+ "dev": true,
+ "requires": {
+ "chalk": "^4.0.0",
+ "jest-diff": "^27.4.6",
+ "jest-get-type": "^27.4.0",
+ "pretty-format": "^27.4.6"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "jest-message-util": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.4.6.tgz",
+ "integrity": "sha512-0p5szriFU0U74czRSFjH6RyS7UYIAkn/ntwMuOwTGWrQIOh5NzXXrq72LOqIkJKKvFbPq+byZKuBz78fjBERBA==",
+ "dev": true,
+ "requires": {
+ "@babel/code-frame": "^7.12.13",
+ "@jest/types": "^27.4.2",
+ "@types/stack-utils": "^2.0.0",
+ "chalk": "^4.0.0",
+ "graceful-fs": "^4.2.4",
+ "micromatch": "^4.0.4",
+ "pretty-format": "^27.4.6",
+ "slash": "^3.0.0",
+ "stack-utils": "^2.0.3"
+ },
+ "dependencies": {
+ "@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "requires": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ }
+ },
+ "@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "requires": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "jest-mock": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.4.6.tgz",
+ "integrity": "sha512-kvojdYRkst8iVSZ1EJ+vc1RRD9llueBjKzXzeCytH3dMM7zvPV/ULcfI2nr0v0VUgm3Bjt3hBCQvOeaBz+ZTHw==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^27.4.2",
+ "@types/node": "*"
+ },
+ "dependencies": {
+ "@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "requires": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ }
+ },
+ "@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "requires": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "jest-pnp-resolver": {
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz",
+ "integrity": "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==",
+ "dev": true
+ },
+ "jest-regex-util": {
+ "version": "26.0.0",
+ "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-26.0.0.tgz",
+ "integrity": "sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==",
+ "dev": true
+ },
+ "jest-resolve": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.4.6.tgz",
+ "integrity": "sha512-SFfITVApqtirbITKFAO7jOVN45UgFzcRdQanOFzjnbd+CACDoyeX7206JyU92l4cRr73+Qy/TlW51+4vHGt+zw==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^27.4.2",
+ "chalk": "^4.0.0",
+ "graceful-fs": "^4.2.4",
+ "jest-haste-map": "^27.4.6",
+ "jest-pnp-resolver": "^1.2.2",
+ "jest-util": "^27.4.2",
+ "jest-validate": "^27.4.6",
+ "resolve": "^1.20.0",
+ "resolve.exports": "^1.1.0",
+ "slash": "^3.0.0"
+ },
+ "dependencies": {
+ "@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "requires": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ }
+ },
+ "@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "requires": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "jest-haste-map": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.4.6.tgz",
+ "integrity": "sha512-0tNpgxg7BKurZeFkIOvGCkbmOHbLFf4LUQOxrQSMjvrQaQe3l6E8x6jYC1NuWkGo5WDdbr8FEzUxV2+LWNawKQ==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^27.4.2",
+ "@types/graceful-fs": "^4.1.2",
+ "@types/node": "*",
+ "anymatch": "^3.0.3",
+ "fb-watchman": "^2.0.0",
+ "fsevents": "^2.3.2",
+ "graceful-fs": "^4.2.4",
+ "jest-regex-util": "^27.4.0",
+ "jest-serializer": "^27.4.0",
+ "jest-util": "^27.4.2",
+ "jest-worker": "^27.4.6",
+ "micromatch": "^4.0.4",
+ "walker": "^1.0.7"
+ }
+ },
+ "jest-regex-util": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.4.0.tgz",
+ "integrity": "sha512-WeCpMpNnqJYMQoOjm1nTtsgbR4XHAk1u00qDoNBQoykM280+/TmgA5Qh5giC1ecy6a5d4hbSsHzpBtu5yvlbEg==",
+ "dev": true
+ },
+ "jest-serializer": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.4.0.tgz",
+ "integrity": "sha512-RDhpcn5f1JYTX2pvJAGDcnsNTnsV9bjYPU8xcV+xPwOXnUPOQwf4ZEuiU6G9H1UztH+OapMgu/ckEVwO87PwnQ==",
+ "dev": true,
+ "requires": {
+ "@types/node": "*",
+ "graceful-fs": "^4.2.4"
+ }
+ },
+ "jest-util": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.4.2.tgz",
+ "integrity": "sha512-YuxxpXU6nlMan9qyLuxHaMMOzXAl5aGZWCSzben5DhLHemYQxCc4YK+4L3ZrCutT8GPQ+ui9k5D8rUJoDioMnA==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.4",
+ "picomatch": "^2.2.3"
+ }
+ },
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "jest-resolve-dependencies": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.4.6.tgz",
+ "integrity": "sha512-W85uJZcFXEVZ7+MZqIPCscdjuctruNGXUZ3OHSXOfXR9ITgbUKeHj+uGcies+0SsvI5GtUfTw4dY7u9qjTvQOw==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^27.4.2",
+ "jest-regex-util": "^27.4.0",
+ "jest-snapshot": "^27.4.6"
+ },
+ "dependencies": {
+ "@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "requires": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ }
+ },
+ "@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "requires": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "jest-regex-util": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.4.0.tgz",
+ "integrity": "sha512-WeCpMpNnqJYMQoOjm1nTtsgbR4XHAk1u00qDoNBQoykM280+/TmgA5Qh5giC1ecy6a5d4hbSsHzpBtu5yvlbEg==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "jest-runner": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-27.4.6.tgz",
+ "integrity": "sha512-IDeFt2SG4DzqalYBZRgbbPmpwV3X0DcntjezPBERvnhwKGWTW7C5pbbA5lVkmvgteeNfdd/23gwqv3aiilpYPg==",
+ "dev": true,
+ "requires": {
+ "@jest/console": "^27.4.6",
+ "@jest/environment": "^27.4.6",
+ "@jest/test-result": "^27.4.6",
+ "@jest/transform": "^27.4.6",
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "emittery": "^0.8.1",
+ "exit": "^0.1.2",
+ "graceful-fs": "^4.2.4",
+ "jest-docblock": "^27.4.0",
+ "jest-environment-jsdom": "^27.4.6",
+ "jest-environment-node": "^27.4.6",
+ "jest-haste-map": "^27.4.6",
+ "jest-leak-detector": "^27.4.6",
+ "jest-message-util": "^27.4.6",
+ "jest-resolve": "^27.4.6",
+ "jest-runtime": "^27.4.6",
+ "jest-util": "^27.4.2",
+ "jest-worker": "^27.4.6",
+ "source-map-support": "^0.5.6",
+ "throat": "^6.0.1"
+ },
+ "dependencies": {
+ "@jest/transform": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.4.6.tgz",
+ "integrity": "sha512-9MsufmJC8t5JTpWEQJ0OcOOAXaH5ioaIX6uHVBLBMoCZPfKKQF+EqP8kACAvCZ0Y1h2Zr3uOccg8re+Dr5jxyw==",
+ "dev": true,
+ "requires": {
+ "@babel/core": "^7.1.0",
+ "@jest/types": "^27.4.2",
+ "babel-plugin-istanbul": "^6.1.1",
+ "chalk": "^4.0.0",
+ "convert-source-map": "^1.4.0",
+ "fast-json-stable-stringify": "^2.0.0",
+ "graceful-fs": "^4.2.4",
+ "jest-haste-map": "^27.4.6",
+ "jest-regex-util": "^27.4.0",
+ "jest-util": "^27.4.2",
+ "micromatch": "^4.0.4",
+ "pirates": "^4.0.4",
+ "slash": "^3.0.0",
+ "source-map": "^0.6.1",
+ "write-file-atomic": "^3.0.0"
+ }
+ },
+ "@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "requires": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ }
+ },
+ "@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "requires": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "jest-haste-map": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.4.6.tgz",
+ "integrity": "sha512-0tNpgxg7BKurZeFkIOvGCkbmOHbLFf4LUQOxrQSMjvrQaQe3l6E8x6jYC1NuWkGo5WDdbr8FEzUxV2+LWNawKQ==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^27.4.2",
+ "@types/graceful-fs": "^4.1.2",
+ "@types/node": "*",
+ "anymatch": "^3.0.3",
+ "fb-watchman": "^2.0.0",
+ "fsevents": "^2.3.2",
+ "graceful-fs": "^4.2.4",
+ "jest-regex-util": "^27.4.0",
+ "jest-serializer": "^27.4.0",
+ "jest-util": "^27.4.2",
+ "jest-worker": "^27.4.6",
+ "micromatch": "^4.0.4",
+ "walker": "^1.0.7"
+ }
+ },
+ "jest-regex-util": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.4.0.tgz",
+ "integrity": "sha512-WeCpMpNnqJYMQoOjm1nTtsgbR4XHAk1u00qDoNBQoykM280+/TmgA5Qh5giC1ecy6a5d4hbSsHzpBtu5yvlbEg==",
+ "dev": true
+ },
+ "jest-serializer": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.4.0.tgz",
+ "integrity": "sha512-RDhpcn5f1JYTX2pvJAGDcnsNTnsV9bjYPU8xcV+xPwOXnUPOQwf4ZEuiU6G9H1UztH+OapMgu/ckEVwO87PwnQ==",
+ "dev": true,
+ "requires": {
+ "@types/node": "*",
+ "graceful-fs": "^4.2.4"
+ }
+ },
+ "jest-util": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.4.2.tgz",
+ "integrity": "sha512-YuxxpXU6nlMan9qyLuxHaMMOzXAl5aGZWCSzben5DhLHemYQxCc4YK+4L3ZrCutT8GPQ+ui9k5D8rUJoDioMnA==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.4",
+ "picomatch": "^2.2.3"
+ }
+ },
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "jest-runtime": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.4.6.tgz",
+ "integrity": "sha512-eXYeoR/MbIpVDrjqy5d6cGCFOYBFFDeKaNWqTp0h6E74dK0zLHzASQXJpl5a2/40euBmKnprNLJ0Kh0LCndnWQ==",
+ "dev": true,
+ "requires": {
+ "@jest/environment": "^27.4.6",
+ "@jest/fake-timers": "^27.4.6",
+ "@jest/globals": "^27.4.6",
+ "@jest/source-map": "^27.4.0",
+ "@jest/test-result": "^27.4.6",
+ "@jest/transform": "^27.4.6",
+ "@jest/types": "^27.4.2",
+ "chalk": "^4.0.0",
+ "cjs-module-lexer": "^1.0.0",
+ "collect-v8-coverage": "^1.0.0",
+ "execa": "^5.0.0",
+ "glob": "^7.1.3",
+ "graceful-fs": "^4.2.4",
+ "jest-haste-map": "^27.4.6",
+ "jest-message-util": "^27.4.6",
+ "jest-mock": "^27.4.6",
+ "jest-regex-util": "^27.4.0",
+ "jest-resolve": "^27.4.6",
+ "jest-snapshot": "^27.4.6",
+ "jest-util": "^27.4.2",
+ "slash": "^3.0.0",
+ "strip-bom": "^4.0.0"
+ },
+ "dependencies": {
+ "@jest/transform": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.4.6.tgz",
+ "integrity": "sha512-9MsufmJC8t5JTpWEQJ0OcOOAXaH5ioaIX6uHVBLBMoCZPfKKQF+EqP8kACAvCZ0Y1h2Zr3uOccg8re+Dr5jxyw==",
+ "dev": true,
+ "requires": {
+ "@babel/core": "^7.1.0",
+ "@jest/types": "^27.4.2",
+ "babel-plugin-istanbul": "^6.1.1",
+ "chalk": "^4.0.0",
+ "convert-source-map": "^1.4.0",
+ "fast-json-stable-stringify": "^2.0.0",
+ "graceful-fs": "^4.2.4",
+ "jest-haste-map": "^27.4.6",
+ "jest-regex-util": "^27.4.0",
+ "jest-util": "^27.4.2",
+ "micromatch": "^4.0.4",
+ "pirates": "^4.0.4",
+ "slash": "^3.0.0",
+ "source-map": "^0.6.1",
+ "write-file-atomic": "^3.0.0"
+ }
+ },
+ "@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "requires": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ }
+ },
+ "@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "requires": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "jest-haste-map": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.4.6.tgz",
+ "integrity": "sha512-0tNpgxg7BKurZeFkIOvGCkbmOHbLFf4LUQOxrQSMjvrQaQe3l6E8x6jYC1NuWkGo5WDdbr8FEzUxV2+LWNawKQ==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^27.4.2",
+ "@types/graceful-fs": "^4.1.2",
+ "@types/node": "*",
+ "anymatch": "^3.0.3",
+ "fb-watchman": "^2.0.0",
+ "fsevents": "^2.3.2",
+ "graceful-fs": "^4.2.4",
+ "jest-regex-util": "^27.4.0",
+ "jest-serializer": "^27.4.0",
+ "jest-util": "^27.4.2",
+ "jest-worker": "^27.4.6",
+ "micromatch": "^4.0.4",
+ "walker": "^1.0.7"
+ }
+ },
+ "jest-regex-util": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.4.0.tgz",
+ "integrity": "sha512-WeCpMpNnqJYMQoOjm1nTtsgbR4XHAk1u00qDoNBQoykM280+/TmgA5Qh5giC1ecy6a5d4hbSsHzpBtu5yvlbEg==",
+ "dev": true
+ },
+ "jest-serializer": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.4.0.tgz",
+ "integrity": "sha512-RDhpcn5f1JYTX2pvJAGDcnsNTnsV9bjYPU8xcV+xPwOXnUPOQwf4ZEuiU6G9H1UztH+OapMgu/ckEVwO87PwnQ==",
+ "dev": true,
+ "requires": {
+ "@types/node": "*",
+ "graceful-fs": "^4.2.4"
+ }
+ },
+ "jest-util": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.4.2.tgz",
+ "integrity": "sha512-YuxxpXU6nlMan9qyLuxHaMMOzXAl5aGZWCSzben5DhLHemYQxCc4YK+4L3ZrCutT8GPQ+ui9k5D8rUJoDioMnA==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.4",
+ "picomatch": "^2.2.3"
+ }
+ },
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "jest-serializer": {
+ "version": "26.6.2",
+ "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-26.6.2.tgz",
+ "integrity": "sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==",
+ "dev": true,
+ "requires": {
+ "@types/node": "*",
+ "graceful-fs": "^4.2.4"
+ }
+ },
+ "jest-snapshot": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.4.6.tgz",
+ "integrity": "sha512-fafUCDLQfzuNP9IRcEqaFAMzEe7u5BF7mude51wyWv7VRex60WznZIC7DfKTgSIlJa8aFzYmXclmN328aqSDmQ==",
+ "dev": true,
+ "requires": {
+ "@babel/core": "^7.7.2",
+ "@babel/generator": "^7.7.2",
+ "@babel/plugin-syntax-typescript": "^7.7.2",
+ "@babel/traverse": "^7.7.2",
+ "@babel/types": "^7.0.0",
+ "@jest/transform": "^27.4.6",
+ "@jest/types": "^27.4.2",
+ "@types/babel__traverse": "^7.0.4",
+ "@types/prettier": "^2.1.5",
+ "babel-preset-current-node-syntax": "^1.0.0",
+ "chalk": "^4.0.0",
+ "expect": "^27.4.6",
+ "graceful-fs": "^4.2.4",
+ "jest-diff": "^27.4.6",
+ "jest-get-type": "^27.4.0",
+ "jest-haste-map": "^27.4.6",
+ "jest-matcher-utils": "^27.4.6",
+ "jest-message-util": "^27.4.6",
+ "jest-util": "^27.4.2",
+ "natural-compare": "^1.4.0",
+ "pretty-format": "^27.4.6",
+ "semver": "^7.3.2"
+ },
+ "dependencies": {
+ "@jest/transform": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.4.6.tgz",
+ "integrity": "sha512-9MsufmJC8t5JTpWEQJ0OcOOAXaH5ioaIX6uHVBLBMoCZPfKKQF+EqP8kACAvCZ0Y1h2Zr3uOccg8re+Dr5jxyw==",
+ "dev": true,
+ "requires": {
+ "@babel/core": "^7.1.0",
+ "@jest/types": "^27.4.2",
+ "babel-plugin-istanbul": "^6.1.1",
+ "chalk": "^4.0.0",
+ "convert-source-map": "^1.4.0",
+ "fast-json-stable-stringify": "^2.0.0",
+ "graceful-fs": "^4.2.4",
+ "jest-haste-map": "^27.4.6",
+ "jest-regex-util": "^27.4.0",
+ "jest-util": "^27.4.2",
+ "micromatch": "^4.0.4",
+ "pirates": "^4.0.4",
+ "slash": "^3.0.0",
+ "source-map": "^0.6.1",
+ "write-file-atomic": "^3.0.0"
+ }
+ },
+ "@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "requires": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ }
+ },
+ "@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "requires": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "jest-haste-map": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.4.6.tgz",
+ "integrity": "sha512-0tNpgxg7BKurZeFkIOvGCkbmOHbLFf4LUQOxrQSMjvrQaQe3l6E8x6jYC1NuWkGo5WDdbr8FEzUxV2+LWNawKQ==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^27.4.2",
+ "@types/graceful-fs": "^4.1.2",
+ "@types/node": "*",
+ "anymatch": "^3.0.3",
+ "fb-watchman": "^2.0.0",
+ "fsevents": "^2.3.2",
+ "graceful-fs": "^4.2.4",
+ "jest-regex-util": "^27.4.0",
+ "jest-serializer": "^27.4.0",
+ "jest-util": "^27.4.2",
+ "jest-worker": "^27.4.6",
+ "micromatch": "^4.0.4",
+ "walker": "^1.0.7"
+ }
+ },
+ "jest-regex-util": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.4.0.tgz",
+ "integrity": "sha512-WeCpMpNnqJYMQoOjm1nTtsgbR4XHAk1u00qDoNBQoykM280+/TmgA5Qh5giC1ecy6a5d4hbSsHzpBtu5yvlbEg==",
+ "dev": true
+ },
+ "jest-serializer": {
+ "version": "27.4.0",
+ "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.4.0.tgz",
+ "integrity": "sha512-RDhpcn5f1JYTX2pvJAGDcnsNTnsV9bjYPU8xcV+xPwOXnUPOQwf4ZEuiU6G9H1UztH+OapMgu/ckEVwO87PwnQ==",
+ "dev": true,
+ "requires": {
+ "@types/node": "*",
+ "graceful-fs": "^4.2.4"
+ }
+ },
+ "jest-util": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.4.2.tgz",
+ "integrity": "sha512-YuxxpXU6nlMan9qyLuxHaMMOzXAl5aGZWCSzben5DhLHemYQxCc4YK+4L3ZrCutT8GPQ+ui9k5D8rUJoDioMnA==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.4",
+ "picomatch": "^2.2.3"
+ }
+ },
+ "semver": {
+ "version": "7.3.5",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz",
+ "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==",
+ "dev": true,
+ "requires": {
+ "lru-cache": "^6.0.0"
+ }
+ },
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "jest-util": {
+ "version": "26.6.2",
+ "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz",
+ "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^26.6.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "graceful-fs": "^4.2.4",
+ "is-ci": "^2.0.0",
+ "micromatch": "^4.0.2"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "jest-validate": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.4.6.tgz",
+ "integrity": "sha512-872mEmCPVlBqbA5dToC57vA3yJaMRfIdpCoD3cyHWJOMx+SJwLNw0I71EkWs41oza/Er9Zno9XuTkRYCPDUJXQ==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^27.4.2",
+ "camelcase": "^6.2.0",
+ "chalk": "^4.0.0",
+ "jest-get-type": "^27.4.0",
+ "leven": "^3.1.0",
+ "pretty-format": "^27.4.6"
+ },
+ "dependencies": {
+ "@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "requires": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ }
+ },
+ "@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "requires": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^2.0.1"
+ }
+ },
+ "camelcase": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz",
+ "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==",
+ "dev": true
+ },
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "jest-watcher": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.4.6.tgz",
+ "integrity": "sha512-yKQ20OMBiCDigbD0quhQKLkBO+ObGN79MO4nT7YaCuQ5SM+dkBNWE8cZX0FjU6czwMvWw6StWbe+Wv4jJPJ+fw==",
+ "dev": true,
+ "requires": {
+ "@jest/test-result": "^27.4.6",
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "ansi-escapes": "^4.2.1",
+ "chalk": "^4.0.0",
+ "jest-util": "^27.4.2",
+ "string-length": "^4.0.1"
+ },
+ "dependencies": {
+ "@jest/types": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz",
+ "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==",
+ "dev": true,
+ "requires": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^16.0.0",
+ "chalk": "^4.0.0"
+ }
+ },
+ "@types/yargs": {
+ "version": "16.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz",
+ "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==",
+ "dev": true,
+ "requires": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "jest-util": {
+ "version": "27.4.2",
+ "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.4.2.tgz",
+ "integrity": "sha512-YuxxpXU6nlMan9qyLuxHaMMOzXAl5aGZWCSzben5DhLHemYQxCc4YK+4L3ZrCutT8GPQ+ui9k5D8rUJoDioMnA==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^27.4.2",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.4",
+ "picomatch": "^2.2.3"
+ }
+ },
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "jest-worker": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.4.6.tgz",
+ "integrity": "sha512-gHWJF/6Xi5CTG5QCvROr6GcmpIqNYpDJyc8A1h/DyXqH1tD6SnRCM0d3U5msV31D2LB/U+E0M+W4oyvKV44oNw==",
+ "dev": true,
+ "requires": {
+ "@types/node": "*",
+ "merge-stream": "^2.0.0",
+ "supports-color": "^8.0.0"
+ },
+ "dependencies": {
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "8.1.1",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
+ "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "js-string-escape": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/js-string-escape/-/js-string-escape-1.0.1.tgz",
+ "integrity": "sha1-4mJbrbwNZ8dTPp7cEGjFh65BN+8=",
+ "dev": true
+ },
+ "js-tokens": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
+ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
+ "dev": true
+ },
+ "js-yaml": {
+ "version": "3.14.1",
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
+ "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
+ "dev": true,
+ "requires": {
+ "argparse": "^1.0.7",
+ "esprima": "^4.0.0"
+ }
+ },
+ "jsdom": {
+ "version": "16.7.0",
+ "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz",
+ "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==",
+ "dev": true,
+ "requires": {
+ "abab": "^2.0.5",
+ "acorn": "^8.2.4",
+ "acorn-globals": "^6.0.0",
+ "cssom": "^0.4.4",
+ "cssstyle": "^2.3.0",
+ "data-urls": "^2.0.0",
+ "decimal.js": "^10.2.1",
+ "domexception": "^2.0.1",
+ "escodegen": "^2.0.0",
+ "form-data": "^3.0.0",
+ "html-encoding-sniffer": "^2.0.1",
+ "http-proxy-agent": "^4.0.1",
+ "https-proxy-agent": "^5.0.0",
+ "is-potential-custom-element-name": "^1.0.1",
+ "nwsapi": "^2.2.0",
+ "parse5": "6.0.1",
+ "saxes": "^5.0.1",
+ "symbol-tree": "^3.2.4",
+ "tough-cookie": "^4.0.0",
+ "w3c-hr-time": "^1.0.2",
+ "w3c-xmlserializer": "^2.0.0",
+ "webidl-conversions": "^6.1.0",
+ "whatwg-encoding": "^1.0.5",
+ "whatwg-mimetype": "^2.3.0",
+ "whatwg-url": "^8.5.0",
+ "ws": "^7.4.6",
+ "xml-name-validator": "^3.0.0"
+ },
+ "dependencies": {
+ "acorn": {
+ "version": "8.7.0",
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.7.0.tgz",
+ "integrity": "sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ==",
+ "dev": true
+ }
+ }
+ },
+ "jsesc": {
+ "version": "2.5.2",
+ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz",
+ "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==",
+ "dev": true
+ },
+ "json-parse-better-errors": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz",
+ "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==",
+ "dev": true
+ },
+ "json-parse-even-better-errors": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
+ "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==",
+ "dev": true
+ },
+ "json-schema-traverse": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
+ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
+ "dev": true
+ },
+ "json5": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz",
+ "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==",
+ "dev": true,
+ "requires": {
+ "minimist": "^1.2.5"
+ }
+ },
+ "jsonfile": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+ "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+ "dev": true,
+ "requires": {
+ "graceful-fs": "^4.1.6",
+ "universalify": "^2.0.0"
+ }
+ },
+ "jszip": {
+ "version": "3.7.1",
+ "resolved": "https://registry.npmjs.org/jszip/-/jszip-3.7.1.tgz",
+ "integrity": "sha512-ghL0tz1XG9ZEmRMcEN2vt7xabrDdqHHeykgARpmZ0BiIctWxM47Vt63ZO2dnp4QYt/xJVLLy5Zv1l/xRdh2byg==",
+ "requires": {
+ "lie": "~3.3.0",
+ "pako": "~1.0.2",
+ "readable-stream": "~2.3.6",
+ "set-immediate-shim": "~1.0.1"
+ }
+ },
+ "junk": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/junk/-/junk-3.1.0.tgz",
+ "integrity": "sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==",
+ "dev": true
+ },
+ "katex": {
+ "version": "0.13.24",
+ "resolved": "https://registry.npmjs.org/katex/-/katex-0.13.24.tgz",
+ "integrity": "sha512-jZxYuKCma3VS5UuxOx/rFV1QyGSl3Uy/i0kTJF3HgQ5xMinCQVF8Zd4bMY/9aI9b9A2pjIBOsjSSm68ykTAr8w==",
+ "dev": true,
+ "requires": {
+ "commander": "^8.0.0"
+ },
+ "dependencies": {
+ "commander": {
+ "version": "8.3.0",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz",
+ "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==",
+ "dev": true
+ }
+ }
+ },
+ "kind-of": {
+ "version": "6.0.3",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
+ "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==",
+ "dev": true
+ },
+ "klaw": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz",
+ "integrity": "sha1-QIhDO0azsbolnXh4XY6W9zugJDk=",
+ "dev": true,
+ "requires": {
+ "graceful-fs": "^4.1.9"
+ }
+ },
+ "kleur": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz",
+ "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==",
+ "dev": true
+ },
+ "klona": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.5.tgz",
+ "integrity": "sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==",
+ "dev": true
+ },
+ "lazy-universal-dotenv": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/lazy-universal-dotenv/-/lazy-universal-dotenv-3.0.1.tgz",
+ "integrity": "sha512-prXSYk799h3GY3iOWnC6ZigYzMPjxN2svgjJ9shk7oMadSNX3wXy0B6F32PMJv7qtMnrIbUxoEHzbutvxR2LBQ==",
+ "dev": true,
+ "requires": {
+ "@babel/runtime": "^7.5.0",
+ "app-root-dir": "^1.0.2",
+ "core-js": "^3.0.4",
+ "dotenv": "^8.0.0",
+ "dotenv-expand": "^5.1.0"
+ }
+ },
+ "leven": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz",
+ "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==",
+ "dev": true
+ },
+ "levn": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz",
+ "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=",
+ "dev": true,
+ "requires": {
+ "prelude-ls": "~1.1.2",
+ "type-check": "~0.3.2"
+ }
+ },
+ "lie": {
+ "version": "3.3.0",
+ "resolved": "https://registry.npmjs.org/lie/-/lie-3.3.0.tgz",
+ "integrity": "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==",
+ "requires": {
+ "immediate": "~3.0.5"
+ }
+ },
+ "lines-and-columns": {
+ "version": "1.2.4",
+ "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
+ "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==",
+ "dev": true
+ },
+ "loader-runner": {
+ "version": "2.4.0",
+ "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz",
+ "integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==",
+ "dev": true
+ },
+ "loader-utils": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz",
+ "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==",
+ "dev": true,
+ "requires": {
+ "big.js": "^5.2.2",
+ "emojis-list": "^3.0.0",
+ "json5": "^2.1.2"
+ }
+ },
+ "locate-path": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
+ "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
+ "dev": true,
+ "requires": {
+ "p-locate": "^5.0.0"
+ }
+ },
+ "lodash": {
+ "version": "4.17.21",
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
+ "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
+ "dev": true
+ },
+ "lodash.debounce": {
+ "version": "4.0.8",
+ "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz",
+ "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=",
+ "dev": true
+ },
+ "lodash.uniq": {
+ "version": "4.5.0",
+ "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz",
+ "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=",
+ "dev": true
+ },
+ "longest-streak": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.0.1.tgz",
+ "integrity": "sha512-cHlYSUpL2s7Fb3394mYxwTYj8niTaNHUCLr0qdiCXQfSjfuA7CKofpX2uSwEfFDQ0EB7JcnMnm+GjbqqoinYYg==",
+ "dev": true
+ },
+ "loose-envify": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
+ "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
+ "dev": true,
+ "requires": {
+ "js-tokens": "^3.0.0 || ^4.0.0"
+ }
+ },
+ "lower-case": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz",
+ "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==",
+ "dev": true,
+ "requires": {
+ "tslib": "^2.0.3"
+ }
+ },
+ "lowlight": {
+ "version": "1.20.0",
+ "resolved": "https://registry.npmjs.org/lowlight/-/lowlight-1.20.0.tgz",
+ "integrity": "sha512-8Ktj+prEb1RoCPkEOrPMYUN/nCggB7qAWe3a7OpMjWQkh3l2RD5wKRQ+o8Q8YuI9RG/xs95waaI/E6ym/7NsTw==",
+ "dev": true,
+ "requires": {
+ "fault": "^1.0.0",
+ "highlight.js": "~10.7.0"
+ }
+ },
+ "lru-cache": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
+ "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
+ "dev": true,
+ "requires": {
+ "yallist": "^4.0.0"
+ }
+ },
+ "make-dir": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz",
+ "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==",
+ "dev": true,
+ "requires": {
+ "pify": "^4.0.1",
+ "semver": "^5.6.0"
+ },
+ "dependencies": {
+ "semver": {
+ "version": "5.7.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
+ "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
+ "dev": true
+ }
+ }
+ },
+ "makeerror": {
+ "version": "1.0.12",
+ "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz",
+ "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==",
+ "dev": true,
+ "requires": {
+ "tmpl": "1.0.5"
+ }
+ },
+ "map-cache": {
+ "version": "0.2.2",
+ "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz",
+ "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=",
+ "dev": true
+ },
+ "map-or-similar": {
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/map-or-similar/-/map-or-similar-1.5.0.tgz",
+ "integrity": "sha1-beJlMXSt+12e3DPGnT6Sobdvrwg=",
+ "dev": true
+ },
+ "map-visit": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz",
+ "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=",
+ "dev": true,
+ "requires": {
+ "object-visit": "^1.0.0"
+ }
+ },
+ "markdown-escapes": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/markdown-escapes/-/markdown-escapes-1.0.4.tgz",
+ "integrity": "sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==",
+ "dev": true
+ },
+ "markdown-table": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.2.tgz",
+ "integrity": "sha512-y8j3a5/DkJCmS5x4dMCQL+OR0+2EAq3DOtio1COSHsmW2BGXnNCK3v12hJt1LrUz5iZH5g0LmuYOjDdI+czghA==",
+ "dev": true
+ },
+ "markdown-to-jsx": {
+ "version": "7.1.5",
+ "resolved": "https://registry.npmjs.org/markdown-to-jsx/-/markdown-to-jsx-7.1.5.tgz",
+ "integrity": "sha512-YQEMMMCX3PYOWtUAQu8Fmz5/sH09s17eyQnDubwaAo8sWmnRTT1og96EFv1vL59l4nWfmtF3L91pqkuheVqRlA==",
+ "dev": true
+ },
+ "md5.js": {
+ "version": "1.3.5",
+ "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz",
+ "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==",
+ "dev": true,
+ "requires": {
+ "hash-base": "^3.0.0",
+ "inherits": "^2.0.1",
+ "safe-buffer": "^5.1.2"
+ }
+ },
+ "mdast-squeeze-paragraphs": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/mdast-squeeze-paragraphs/-/mdast-squeeze-paragraphs-4.0.0.tgz",
+ "integrity": "sha512-zxdPn69hkQ1rm4J+2Cs2j6wDEv7O17TfXTJ33tl/+JPIoEmtV9t2ZzBM5LPHE8QlHsmVD8t3vPKCyY3oH+H8MQ==",
+ "dev": true,
+ "requires": {
+ "unist-util-remove": "^2.0.0"
+ }
+ },
+ "mdast-util-definitions": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-4.0.0.tgz",
+ "integrity": "sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==",
+ "dev": true,
+ "requires": {
+ "unist-util-visit": "^2.0.0"
+ },
+ "dependencies": {
+ "unist-util-visit": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz",
+ "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==",
+ "dev": true,
+ "requires": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0",
+ "unist-util-visit-parents": "^3.0.0"
+ }
+ },
+ "unist-util-visit-parents": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz",
+ "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==",
+ "dev": true,
+ "requires": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0"
+ }
+ }
+ }
+ },
+ "mdast-util-find-and-replace": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-2.1.0.tgz",
+ "integrity": "sha512-1w1jbqAd13oU78QPBf5223+xB+37ecNtQ1JElq2feWols5oEYAl+SgNDnOZipe7NfLemoEt362yUS15/wip4mw==",
+ "dev": true,
+ "requires": {
+ "escape-string-regexp": "^5.0.0",
+ "unist-util-is": "^5.0.0",
+ "unist-util-visit-parents": "^4.0.0"
+ },
+ "dependencies": {
+ "escape-string-regexp": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz",
+ "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==",
+ "dev": true
+ },
+ "unist-util-is": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.1.1.tgz",
+ "integrity": "sha512-F5CZ68eYzuSvJjGhCLPL3cYx45IxkqXSetCcRgUXtbcm50X2L9oOWQlfUfDdAf+6Pd27YDblBfdtmsThXmwpbQ==",
+ "dev": true
+ }
+ }
+ },
+ "mdast-util-footnote": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-footnote/-/mdast-util-footnote-1.0.0.tgz",
+ "integrity": "sha512-DBQervPt/8PZOebnKZu2dXsLXgKHfCirW5BIR824z4tGujWQ4gMMASPEEKqgCpoeDO0WS691Eqbv/HKGvw6Vmw==",
+ "dev": true,
+ "requires": {
+ "@types/mdast": "^3.0.0",
+ "mdast-util-to-markdown": "^1.0.0",
+ "micromark-util-normalize-identifier": "^1.0.0"
+ }
+ },
+ "mdast-util-from-markdown": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-1.2.0.tgz",
+ "integrity": "sha512-iZJyyvKD1+K7QX1b5jXdE7Sc5dtoTry1vzV28UZZe8Z1xVnB/czKntJ7ZAkG0tANqRnBF6p3p7GpU1y19DTf2Q==",
+ "dev": true,
+ "requires": {
+ "@types/mdast": "^3.0.0",
+ "@types/unist": "^2.0.0",
+ "decode-named-character-reference": "^1.0.0",
+ "mdast-util-to-string": "^3.1.0",
+ "micromark": "^3.0.0",
+ "micromark-util-decode-numeric-character-reference": "^1.0.0",
+ "micromark-util-decode-string": "^1.0.0",
+ "micromark-util-normalize-identifier": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0",
+ "unist-util-stringify-position": "^3.0.0",
+ "uvu": "^0.5.0"
+ }
+ },
+ "mdast-util-frontmatter": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-frontmatter/-/mdast-util-frontmatter-1.0.0.tgz",
+ "integrity": "sha512-7itKvp0arEVNpCktOET/eLFAYaZ+0cNjVtFtIPxgQ5tV+3i+D4SDDTjTzPWl44LT59PC+xdx+glNTawBdF98Mw==",
+ "dev": true,
+ "requires": {
+ "micromark-extension-frontmatter": "^1.0.0"
+ }
+ },
+ "mdast-util-gfm": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-2.0.0.tgz",
+ "integrity": "sha512-wMwejlTN3EQADPFuvxe8lmGsay3+f6gSJKdAHR6KBJzpcxvsjJSILB9K6u6G7eQLC7iOTyVIHYGui9uBc9r1Tg==",
+ "dev": true,
+ "requires": {
+ "mdast-util-gfm-autolink-literal": "^1.0.0",
+ "mdast-util-gfm-footnote": "^1.0.0",
+ "mdast-util-gfm-strikethrough": "^1.0.0",
+ "mdast-util-gfm-table": "^1.0.0",
+ "mdast-util-gfm-task-list-item": "^1.0.0"
+ }
+ },
+ "mdast-util-gfm-autolink-literal": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-1.0.2.tgz",
+ "integrity": "sha512-FzopkOd4xTTBeGXhXSBU0OCDDh5lUj2rd+HQqG92Ld+jL4lpUfgX2AT2OHAVP9aEeDKp7G92fuooSZcYJA3cRg==",
+ "dev": true,
+ "requires": {
+ "@types/mdast": "^3.0.0",
+ "ccount": "^2.0.0",
+ "mdast-util-find-and-replace": "^2.0.0",
+ "micromark-util-character": "^1.0.0"
+ }
+ },
+ "mdast-util-gfm-footnote": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-1.0.0.tgz",
+ "integrity": "sha512-qeg9YoS2YYP6OBmMyUFxKXb6BLwAsbGidIxgwDAXHIMYZQhIwe52L9BSJs+zP29Jp5nSERPkmG3tSwAN23/ZbQ==",
+ "dev": true,
+ "requires": {
+ "@types/mdast": "^3.0.0",
+ "mdast-util-to-markdown": "^1.0.0",
+ "micromark-util-normalize-identifier": "^1.0.0",
+ "unist-util-visit": "^4.0.0"
+ }
+ },
+ "mdast-util-gfm-strikethrough": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-1.0.0.tgz",
+ "integrity": "sha512-gM9ipBUdRxYa6Yq1Hd8Otg6jEn/dRxFZ1F9ZX4QHosHOexLGqNZO2dh0A+YFbUEd10RcKjnjb4jOfJJzoXXUew==",
+ "dev": true,
+ "requires": {
+ "@types/mdast": "^3.0.3",
+ "mdast-util-to-markdown": "^1.0.0"
+ }
+ },
+ "mdast-util-gfm-table": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-1.0.2.tgz",
+ "integrity": "sha512-pPekvCTChFBF8uCq8bVyQwar8NBU/TaXIy44jj/UzmjMgPBHIa1B1ge8a0JVgzhqgXQAMvGT+PgiKlicdLGfDQ==",
+ "dev": true,
+ "requires": {
+ "markdown-table": "^3.0.0",
+ "mdast-util-to-markdown": "^1.0.0"
+ }
+ },
+ "mdast-util-gfm-task-list-item": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-1.0.0.tgz",
+ "integrity": "sha512-dwkzOTjQe8JCCHVE3Cb0pLHTYLudf7t9WCAnb20jI8/dW+VHjgWhjtIUVA3oigNkssgjEwX+i+3XesUdCnXGyA==",
+ "dev": true,
+ "requires": {
+ "@types/mdast": "^3.0.3",
+ "mdast-util-to-markdown": "^1.0.0"
+ }
+ },
+ "mdast-util-math": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-math/-/mdast-util-math-2.0.0.tgz",
+ "integrity": "sha512-D78NdSY7aNipuibX+q8LdjVyQI+oKGO5kwpgOZZjxLPqRhQZhZoTPXIAIbLg/UIP3NyCzHuebiR0HDWksBS80w==",
+ "dev": true,
+ "requires": {
+ "@types/mdast": "^3.0.0",
+ "longest-streak": "^3.0.0",
+ "mdast-util-to-markdown": "^1.0.0"
+ }
+ },
+ "mdast-util-to-hast": {
+ "version": "10.0.1",
+ "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-10.0.1.tgz",
+ "integrity": "sha512-BW3LM9SEMnjf4HXXVApZMt8gLQWVNXc3jryK0nJu/rOXPOnlkUjmdkDlmxMirpbU9ILncGFIwLH/ubnWBbcdgA==",
+ "dev": true,
+ "requires": {
+ "@types/mdast": "^3.0.0",
+ "@types/unist": "^2.0.0",
+ "mdast-util-definitions": "^4.0.0",
+ "mdurl": "^1.0.0",
+ "unist-builder": "^2.0.0",
+ "unist-util-generated": "^1.0.0",
+ "unist-util-position": "^3.0.0",
+ "unist-util-visit": "^2.0.0"
+ },
+ "dependencies": {
+ "unist-util-visit": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz",
+ "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==",
+ "dev": true,
+ "requires": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0",
+ "unist-util-visit-parents": "^3.0.0"
+ }
+ },
+ "unist-util-visit-parents": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz",
+ "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==",
+ "dev": true,
+ "requires": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0"
+ }
+ }
+ }
+ },
+ "mdast-util-to-markdown": {
+ "version": "1.2.6",
+ "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-1.2.6.tgz",
+ "integrity": "sha512-doJZmTEGagHypWvJ8ltinmwUsT9ZaNgNIQW6Gl7jNdsI1QZkTHTimYW561Niy2s8AEPAqEgV0dIh2UOVlSXUJA==",
+ "dev": true,
+ "requires": {
+ "@types/mdast": "^3.0.0",
+ "@types/unist": "^2.0.0",
+ "longest-streak": "^3.0.0",
+ "mdast-util-to-string": "^3.0.0",
+ "micromark-util-decode-string": "^1.0.0",
+ "unist-util-visit": "^4.0.0",
+ "zwitch": "^2.0.0"
+ },
+ "dependencies": {
+ "zwitch": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.2.tgz",
+ "integrity": "sha512-JZxotl7SxAJH0j7dN4pxsTV6ZLXoLdGME+PsjkL/DaBrVryK9kTGq06GfKrwcSOqypP+fdXGoCHE36b99fWVoA==",
+ "dev": true
+ }
+ }
+ },
+ "mdast-util-to-string": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-3.1.0.tgz",
+ "integrity": "sha512-n4Vypz/DZgwo0iMHLQL49dJzlp7YtAJP+N07MZHpjPf/5XJuHUWstviF4Mn2jEiR/GNmtnRRqnwsXExk3igfFA==",
+ "dev": true
+ },
+ "mdurl": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz",
+ "integrity": "sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4=",
+ "dev": true
+ },
+ "media-typer": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
+ "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=",
+ "dev": true
+ },
+ "memfs": {
+ "version": "3.4.1",
+ "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.4.1.tgz",
+ "integrity": "sha512-1c9VPVvW5P7I85c35zAdEr1TD5+F11IToIHIlrVIcflfnzPkJa0ZoYEoEdYDP8KgPFoSZ/opDrUsAoZWym3mtw==",
+ "dev": true,
+ "requires": {
+ "fs-monkey": "1.0.3"
+ }
+ },
+ "memoizerific": {
+ "version": "1.11.3",
+ "resolved": "https://registry.npmjs.org/memoizerific/-/memoizerific-1.11.3.tgz",
+ "integrity": "sha1-fIekZGREwy11Q4VwkF8tvRsagFo=",
+ "dev": true,
+ "requires": {
+ "map-or-similar": "^1.5.0"
+ }
+ },
+ "memory-fs": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz",
+ "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=",
+ "dev": true,
+ "requires": {
+ "errno": "^0.1.3",
+ "readable-stream": "^2.0.1"
+ }
+ },
+ "merge-descriptors": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz",
+ "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=",
+ "dev": true
+ },
+ "merge-stream": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz",
+ "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==",
+ "dev": true
+ },
+ "merge2": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
+ "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
+ "dev": true
+ },
+ "methods": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
+ "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=",
+ "dev": true
+ },
+ "microevent.ts": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/microevent.ts/-/microevent.ts-0.1.1.tgz",
+ "integrity": "sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==",
+ "dev": true
+ },
+ "micromark": {
+ "version": "3.0.10",
+ "resolved": "https://registry.npmjs.org/micromark/-/micromark-3.0.10.tgz",
+ "integrity": "sha512-ryTDy6UUunOXy2HPjelppgJ2sNfcPz1pLlMdA6Rz9jPzhLikWXv/irpWV/I2jd68Uhmny7hHxAlAhk4+vWggpg==",
+ "dev": true,
+ "requires": {
+ "@types/debug": "^4.0.0",
+ "debug": "^4.0.0",
+ "decode-named-character-reference": "^1.0.0",
+ "micromark-core-commonmark": "^1.0.1",
+ "micromark-factory-space": "^1.0.0",
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-chunked": "^1.0.0",
+ "micromark-util-combine-extensions": "^1.0.0",
+ "micromark-util-decode-numeric-character-reference": "^1.0.0",
+ "micromark-util-encode": "^1.0.0",
+ "micromark-util-normalize-identifier": "^1.0.0",
+ "micromark-util-resolve-all": "^1.0.0",
+ "micromark-util-sanitize-uri": "^1.0.0",
+ "micromark-util-subtokenize": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.1",
+ "uvu": "^0.5.0"
+ }
+ },
+ "micromark-core-commonmark": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-1.0.6.tgz",
+ "integrity": "sha512-K+PkJTxqjFfSNkfAhp4GB+cZPfQd6dxtTXnf+RjZOV7T4EEXnvgzOcnp+eSTmpGk9d1S9sL6/lqrgSNn/s0HZA==",
+ "dev": true,
+ "requires": {
+ "decode-named-character-reference": "^1.0.0",
+ "micromark-factory-destination": "^1.0.0",
+ "micromark-factory-label": "^1.0.0",
+ "micromark-factory-space": "^1.0.0",
+ "micromark-factory-title": "^1.0.0",
+ "micromark-factory-whitespace": "^1.0.0",
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-chunked": "^1.0.0",
+ "micromark-util-classify-character": "^1.0.0",
+ "micromark-util-html-tag-name": "^1.0.0",
+ "micromark-util-normalize-identifier": "^1.0.0",
+ "micromark-util-resolve-all": "^1.0.0",
+ "micromark-util-subtokenize": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.1",
+ "uvu": "^0.5.0"
+ }
+ },
+ "micromark-extension-footnote": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/micromark-extension-footnote/-/micromark-extension-footnote-1.0.2.tgz",
+ "integrity": "sha512-sD7t/hooONLnbPYgcQpBcTjh7mPEcD2R/jRS5DLYDNm0XbngbaJZ01F1aI3v6VXVMdAu3XtFKUecNRlXbgGk/Q==",
+ "dev": true,
+ "requires": {
+ "micromark-core-commonmark": "^1.0.0",
+ "micromark-factory-space": "^1.0.0",
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-chunked": "^1.0.0",
+ "micromark-util-normalize-identifier": "^1.0.0",
+ "micromark-util-resolve-all": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "uvu": "^0.5.0"
+ }
+ },
+ "micromark-extension-frontmatter": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/micromark-extension-frontmatter/-/micromark-extension-frontmatter-1.0.0.tgz",
+ "integrity": "sha512-EXjmRnupoX6yYuUJSQhrQ9ggK0iQtQlpi6xeJzVD5xscyAI+giqco5fdymayZhJMbIFecjnE2yz85S9NzIgQpg==",
+ "dev": true,
+ "requires": {
+ "fault": "^2.0.0",
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0"
+ },
+ "dependencies": {
+ "fault": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/fault/-/fault-2.0.1.tgz",
+ "integrity": "sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ==",
+ "dev": true,
+ "requires": {
+ "format": "^0.2.0"
+ }
+ }
+ }
+ },
+ "micromark-extension-gfm": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-2.0.1.tgz",
+ "integrity": "sha512-p2sGjajLa0iYiGQdT0oelahRYtMWvLjy8J9LOCxzIQsllMCGLbsLW+Nc+N4vi02jcRJvedVJ68cjelKIO6bpDA==",
+ "dev": true,
+ "requires": {
+ "micromark-extension-gfm-autolink-literal": "^1.0.0",
+ "micromark-extension-gfm-footnote": "^1.0.0",
+ "micromark-extension-gfm-strikethrough": "^1.0.0",
+ "micromark-extension-gfm-table": "^1.0.0",
+ "micromark-extension-gfm-tagfilter": "^1.0.0",
+ "micromark-extension-gfm-task-list-item": "^1.0.0",
+ "micromark-util-combine-extensions": "^1.0.0",
+ "micromark-util-types": "^1.0.0"
+ }
+ },
+ "micromark-extension-gfm-autolink-literal": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-1.0.3.tgz",
+ "integrity": "sha512-i3dmvU0htawfWED8aHMMAzAVp/F0Z+0bPh3YrbTPPL1v4YAlCZpy5rBO5p0LPYiZo0zFVkoYh7vDU7yQSiCMjg==",
+ "dev": true,
+ "requires": {
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-sanitize-uri": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0",
+ "uvu": "^0.5.0"
+ }
+ },
+ "micromark-extension-gfm-footnote": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-1.0.3.tgz",
+ "integrity": "sha512-bn62pC5y39rIo2g1RqZk1NhF7T7cJLuJlbevunQz41U0iPVCdVOFASe5/L1kke+DFKSgfCRhv24+o42cZ1+ADw==",
+ "dev": true,
+ "requires": {
+ "micromark-core-commonmark": "^1.0.0",
+ "micromark-factory-space": "^1.0.0",
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-normalize-identifier": "^1.0.0",
+ "micromark-util-sanitize-uri": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "uvu": "^0.5.0"
+ }
+ },
+ "micromark-extension-gfm-strikethrough": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-1.0.4.tgz",
+ "integrity": "sha512-/vjHU/lalmjZCT5xt7CcHVJGq8sYRm80z24qAKXzaHzem/xsDYb2yLL+NNVbYvmpLx3O7SYPuGL5pzusL9CLIQ==",
+ "dev": true,
+ "requires": {
+ "micromark-util-chunked": "^1.0.0",
+ "micromark-util-classify-character": "^1.0.0",
+ "micromark-util-resolve-all": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0",
+ "uvu": "^0.5.0"
+ }
+ },
+ "micromark-extension-gfm-table": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-1.0.5.tgz",
+ "integrity": "sha512-xAZ8J1X9W9K3JTJTUL7G6wSKhp2ZYHrFk5qJgY/4B33scJzE2kpfRL6oiw/veJTbt7jiM/1rngLlOKPWr1G+vg==",
+ "dev": true,
+ "requires": {
+ "micromark-factory-space": "^1.0.0",
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0",
+ "uvu": "^0.5.0"
+ }
+ },
+ "micromark-extension-gfm-tagfilter": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-1.0.1.tgz",
+ "integrity": "sha512-Ty6psLAcAjboRa/UKUbbUcwjVAv5plxmpUTy2XC/3nJFL37eHej8jrHrRzkqcpipJliuBH30DTs7+3wqNcQUVA==",
+ "dev": true,
+ "requires": {
+ "micromark-util-types": "^1.0.0"
+ }
+ },
+ "micromark-extension-gfm-task-list-item": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-1.0.3.tgz",
+ "integrity": "sha512-PpysK2S1Q/5VXi72IIapbi/jliaiOFzv7THH4amwXeYXLq3l1uo8/2Be0Ac1rEwK20MQEsGH2ltAZLNY2KI/0Q==",
+ "dev": true,
+ "requires": {
+ "micromark-factory-space": "^1.0.0",
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0",
+ "uvu": "^0.5.0"
+ }
+ },
+ "micromark-extension-math": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/micromark-extension-math/-/micromark-extension-math-2.0.2.tgz",
+ "integrity": "sha512-cFv2B/E4pFPBBFuGgLHkkNiFAIQv08iDgPH2HCuR2z3AUgMLecES5Cq7AVtwOtZeRrbA80QgMUk8VVW0Z+D2FA==",
+ "dev": true,
+ "requires": {
+ "@types/katex": "^0.11.0",
+ "katex": "^0.13.0",
+ "micromark-factory-space": "^1.0.0",
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0",
+ "uvu": "^0.5.0"
+ }
+ },
+ "micromark-factory-destination": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-1.0.0.tgz",
+ "integrity": "sha512-eUBA7Rs1/xtTVun9TmV3gjfPz2wEwgK5R5xcbIM5ZYAtvGF6JkyaDsj0agx8urXnO31tEO6Ug83iVH3tdedLnw==",
+ "dev": true,
+ "requires": {
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0"
+ }
+ },
+ "micromark-factory-label": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-1.0.2.tgz",
+ "integrity": "sha512-CTIwxlOnU7dEshXDQ+dsr2n+yxpP0+fn271pu0bwDIS8uqfFcumXpj5mLn3hSC8iw2MUr6Gx8EcKng1dD7i6hg==",
+ "dev": true,
+ "requires": {
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0",
+ "uvu": "^0.5.0"
+ }
+ },
+ "micromark-factory-space": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-1.0.0.tgz",
+ "integrity": "sha512-qUmqs4kj9a5yBnk3JMLyjtWYN6Mzfcx8uJfi5XAveBniDevmZasdGBba5b4QsvRcAkmvGo5ACmSUmyGiKTLZew==",
+ "dev": true,
+ "requires": {
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-types": "^1.0.0"
+ }
+ },
+ "micromark-factory-title": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-1.0.2.tgz",
+ "integrity": "sha512-zily+Nr4yFqgMGRKLpTVsNl5L4PMu485fGFDOQJQBl2NFpjGte1e86zC0da93wf97jrc4+2G2GQudFMHn3IX+A==",
+ "dev": true,
+ "requires": {
+ "micromark-factory-space": "^1.0.0",
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0",
+ "uvu": "^0.5.0"
+ }
+ },
+ "micromark-factory-whitespace": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-1.0.0.tgz",
+ "integrity": "sha512-Qx7uEyahU1lt1RnsECBiuEbfr9INjQTGa6Err+gF3g0Tx4YEviPbqqGKNv/NrBaE7dVHdn1bVZKM/n5I/Bak7A==",
+ "dev": true,
+ "requires": {
+ "micromark-factory-space": "^1.0.0",
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0"
+ }
+ },
+ "micromark-util-character": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-1.1.0.tgz",
+ "integrity": "sha512-agJ5B3unGNJ9rJvADMJ5ZiYjBRyDpzKAOk01Kpi1TKhlT1APx3XZk6eN7RtSz1erbWHC2L8T3xLZ81wdtGRZzg==",
+ "dev": true,
+ "requires": {
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0"
+ }
+ },
+ "micromark-util-chunked": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-1.0.0.tgz",
+ "integrity": "sha512-5e8xTis5tEZKgesfbQMKRCyzvffRRUX+lK/y+DvsMFdabAicPkkZV6gO+FEWi9RfuKKoxxPwNL+dFF0SMImc1g==",
+ "dev": true,
+ "requires": {
+ "micromark-util-symbol": "^1.0.0"
+ }
+ },
+ "micromark-util-classify-character": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-1.0.0.tgz",
+ "integrity": "sha512-F8oW2KKrQRb3vS5ud5HIqBVkCqQi224Nm55o5wYLzY/9PwHGXC01tr3d7+TqHHz6zrKQ72Okwtvm/xQm6OVNZA==",
+ "dev": true,
+ "requires": {
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0"
+ }
+ },
+ "micromark-util-combine-extensions": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.0.0.tgz",
+ "integrity": "sha512-J8H058vFBdo/6+AsjHp2NF7AJ02SZtWaVUjsayNFeAiydTxUwViQPxN0Hf8dp4FmCQi0UUFovFsEyRSUmFH3MA==",
+ "dev": true,
+ "requires": {
+ "micromark-util-chunked": "^1.0.0",
+ "micromark-util-types": "^1.0.0"
+ }
+ },
+ "micromark-util-decode-numeric-character-reference": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-1.0.0.tgz",
+ "integrity": "sha512-OzO9AI5VUtrTD7KSdagf4MWgHMtET17Ua1fIpXTpuhclCqD8egFWo85GxSGvxgkGS74bEahvtM0WP0HjvV0e4w==",
+ "dev": true,
+ "requires": {
+ "micromark-util-symbol": "^1.0.0"
+ }
+ },
+ "micromark-util-decode-string": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-1.0.2.tgz",
+ "integrity": "sha512-DLT5Ho02qr6QWVNYbRZ3RYOSSWWFuH3tJexd3dgN1odEuPNxCngTCXJum7+ViRAd9BbdxCvMToPOD/IvVhzG6Q==",
+ "dev": true,
+ "requires": {
+ "decode-named-character-reference": "^1.0.0",
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-decode-numeric-character-reference": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0"
+ }
+ },
+ "micromark-util-encode": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-1.0.1.tgz",
+ "integrity": "sha512-U2s5YdnAYexjKDel31SVMPbfi+eF8y1U4pfiRW/Y8EFVCy/vgxk/2wWTxzcqE71LHtCuCzlBDRU2a5CQ5j+mQA==",
+ "dev": true
+ },
+ "micromark-util-html-tag-name": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.0.0.tgz",
+ "integrity": "sha512-NenEKIshW2ZI/ERv9HtFNsrn3llSPZtY337LID/24WeLqMzeZhBEE6BQ0vS2ZBjshm5n40chKtJ3qjAbVV8S0g==",
+ "dev": true
+ },
+ "micromark-util-normalize-identifier": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.0.0.tgz",
+ "integrity": "sha512-yg+zrL14bBTFrQ7n35CmByWUTFsgst5JhA4gJYoty4Dqzj4Z4Fr/DHekSS5aLfH9bdlfnSvKAWsAgJhIbogyBg==",
+ "dev": true,
+ "requires": {
+ "micromark-util-symbol": "^1.0.0"
+ }
+ },
+ "micromark-util-resolve-all": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-1.0.0.tgz",
+ "integrity": "sha512-CB/AGk98u50k42kvgaMM94wzBqozSzDDaonKU7P7jwQIuH2RU0TeBqGYJz2WY1UdihhjweivStrJ2JdkdEmcfw==",
+ "dev": true,
+ "requires": {
+ "micromark-util-types": "^1.0.0"
+ }
+ },
+ "micromark-util-sanitize-uri": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.0.0.tgz",
+ "integrity": "sha512-cCxvBKlmac4rxCGx6ejlIviRaMKZc0fWm5HdCHEeDWRSkn44l6NdYVRyU+0nT1XC72EQJMZV8IPHF+jTr56lAg==",
+ "dev": true,
+ "requires": {
+ "micromark-util-character": "^1.0.0",
+ "micromark-util-encode": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0"
+ }
+ },
+ "micromark-util-subtokenize": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-1.0.2.tgz",
+ "integrity": "sha512-d90uqCnXp/cy4G881Ub4psE57Sf8YD0pim9QdjCRNjfas2M1u6Lbt+XZK9gnHL2XFhnozZiEdCa9CNfXSfQ6xA==",
+ "dev": true,
+ "requires": {
+ "micromark-util-chunked": "^1.0.0",
+ "micromark-util-symbol": "^1.0.0",
+ "micromark-util-types": "^1.0.0",
+ "uvu": "^0.5.0"
+ }
+ },
+ "micromark-util-symbol": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-1.0.1.tgz",
+ "integrity": "sha512-oKDEMK2u5qqAptasDAwWDXq0tG9AssVwAx3E9bBF3t/shRIGsWIRG+cGafs2p/SnDSOecnt6hZPCE2o6lHfFmQ==",
+ "dev": true
+ },
+ "micromark-util-types": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-1.0.2.tgz",
+ "integrity": "sha512-DCfg/T8fcrhrRKTPjRrw/5LLvdGV7BHySf/1LOZx7TzWZdYRjogNtyNq885z3nNallwr3QUKARjqvHqX1/7t+w==",
+ "dev": true
+ },
+ "micromatch": {
+ "version": "4.0.4",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz",
+ "integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==",
+ "dev": true,
+ "requires": {
+ "braces": "^3.0.1",
+ "picomatch": "^2.2.3"
+ }
+ },
+ "miller-rabin": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz",
+ "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==",
+ "dev": true,
+ "requires": {
+ "bn.js": "^4.0.0",
+ "brorand": "^1.0.1"
+ },
+ "dependencies": {
+ "bn.js": {
+ "version": "4.12.0",
+ "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz",
+ "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==",
+ "dev": true
+ }
+ }
+ },
+ "mime": {
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
+ "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==",
+ "dev": true
+ },
+ "mime-db": {
+ "version": "1.51.0",
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.51.0.tgz",
+ "integrity": "sha512-5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g==",
+ "dev": true
+ },
+ "mime-types": {
+ "version": "2.1.34",
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.34.tgz",
+ "integrity": "sha512-6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A==",
+ "dev": true,
+ "requires": {
+ "mime-db": "1.51.0"
+ }
+ },
+ "mimic-fn": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
+ "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==",
+ "dev": true
+ },
+ "min-document": {
+ "version": "2.19.0",
+ "resolved": "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz",
+ "integrity": "sha1-e9KC4/WELtKVu3SM3Z8f+iyCRoU=",
+ "dev": true,
+ "requires": {
+ "dom-walk": "^0.1.0"
+ }
+ },
+ "min-indent": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz",
+ "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==",
+ "dev": true
+ },
+ "minimalistic-assert": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz",
+ "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==",
+ "dev": true
+ },
+ "minimalistic-crypto-utils": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz",
+ "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=",
+ "dev": true
+ },
+ "minimatch": {
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
+ "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
+ "dev": true,
+ "requires": {
+ "brace-expansion": "^1.1.7"
+ }
+ },
+ "minimist": {
+ "version": "1.2.5",
+ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz",
+ "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==",
+ "dev": true
+ },
+ "minipass": {
+ "version": "3.1.6",
+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.6.tgz",
+ "integrity": "sha512-rty5kpw9/z8SX9dmxblFA6edItUmwJgMeYDZRrwlIVN27i8gysGbznJwUggw2V/FVqFSDdWy040ZPS811DYAqQ==",
+ "dev": true,
+ "requires": {
+ "yallist": "^4.0.0"
+ }
+ },
+ "minipass-collect": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz",
+ "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==",
+ "dev": true,
+ "requires": {
+ "minipass": "^3.0.0"
+ }
+ },
+ "minipass-flush": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz",
+ "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==",
+ "dev": true,
+ "requires": {
+ "minipass": "^3.0.0"
+ }
+ },
+ "minipass-pipeline": {
+ "version": "1.2.4",
+ "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz",
+ "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==",
+ "dev": true,
+ "requires": {
+ "minipass": "^3.0.0"
+ }
+ },
+ "minizlib": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz",
+ "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==",
+ "dev": true,
+ "requires": {
+ "minipass": "^3.0.0",
+ "yallist": "^4.0.0"
+ }
+ },
+ "mississippi": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz",
+ "integrity": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==",
+ "dev": true,
+ "requires": {
+ "concat-stream": "^1.5.0",
+ "duplexify": "^3.4.2",
+ "end-of-stream": "^1.1.0",
+ "flush-write-stream": "^1.0.0",
+ "from2": "^2.1.0",
+ "parallel-transform": "^1.1.0",
+ "pump": "^3.0.0",
+ "pumpify": "^1.3.3",
+ "stream-each": "^1.1.0",
+ "through2": "^2.0.0"
+ }
+ },
+ "mixin-deep": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz",
+ "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==",
+ "dev": true,
+ "requires": {
+ "for-in": "^1.0.2",
+ "is-extendable": "^1.0.1"
+ }
+ },
+ "mkdirp": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
+ "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==",
+ "dev": true
+ },
+ "move-concurrently": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz",
+ "integrity": "sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=",
+ "dev": true,
+ "requires": {
+ "aproba": "^1.1.1",
+ "copy-concurrently": "^1.0.0",
+ "fs-write-stream-atomic": "^1.0.8",
+ "mkdirp": "^0.5.1",
+ "rimraf": "^2.5.4",
+ "run-queue": "^1.0.3"
+ },
+ "dependencies": {
+ "aproba": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz",
+ "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==",
+ "dev": true
+ },
+ "mkdirp": {
+ "version": "0.5.5",
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz",
+ "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==",
+ "dev": true,
+ "requires": {
+ "minimist": "^1.2.5"
+ }
+ },
+ "rimraf": {
+ "version": "2.7.1",
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz",
+ "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==",
+ "dev": true,
+ "requires": {
+ "glob": "^7.1.3"
+ }
+ }
+ }
+ },
+ "mri": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz",
+ "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==",
+ "dev": true
+ },
+ "ms": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
+ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
+ "dev": true
+ },
+ "nan": {
+ "version": "2.15.0",
+ "resolved": "https://registry.npmjs.org/nan/-/nan-2.15.0.tgz",
+ "integrity": "sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==",
+ "dev": true,
+ "optional": true
+ },
+ "nanoid": {
+ "version": "3.1.30",
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.1.30.tgz",
+ "integrity": "sha512-zJpuPDwOv8D2zq2WRoMe1HsfZthVewpel9CAvTfc/2mBD1uUT/agc5f7GHGWXlYkFvi1mVxe4IjvP2HNrop7nQ=="
+ },
+ "nanomatch": {
+ "version": "1.2.13",
+ "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz",
+ "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==",
+ "dev": true,
+ "requires": {
+ "arr-diff": "^4.0.0",
+ "array-unique": "^0.3.2",
+ "define-property": "^2.0.2",
+ "extend-shallow": "^3.0.2",
+ "fragment-cache": "^0.2.1",
+ "is-windows": "^1.0.2",
+ "kind-of": "^6.0.2",
+ "object.pick": "^1.3.0",
+ "regex-not": "^1.0.0",
+ "snapdragon": "^0.8.1",
+ "to-regex": "^3.0.1"
+ }
+ },
+ "natural-compare": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
+ "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=",
+ "dev": true
+ },
+ "negotiator": {
+ "version": "0.6.2",
+ "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz",
+ "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==",
+ "dev": true
+ },
+ "neo-async": {
+ "version": "2.6.2",
+ "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz",
+ "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==",
+ "dev": true
+ },
+ "nested-error-stacks": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/nested-error-stacks/-/nested-error-stacks-2.1.0.tgz",
+ "integrity": "sha512-AO81vsIO1k1sM4Zrd6Hu7regmJN1NSiAja10gc4bX3F0wd+9rQmcuHQaHVQCYIEC8iFXnE+mavh23GOt7wBgug==",
+ "dev": true
+ },
+ "nice-try": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz",
+ "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==",
+ "dev": true
+ },
+ "no-case": {
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz",
+ "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==",
+ "dev": true,
+ "requires": {
+ "lower-case": "^2.0.2",
+ "tslib": "^2.0.3"
+ }
+ },
+ "node-dir": {
+ "version": "0.1.17",
+ "resolved": "https://registry.npmjs.org/node-dir/-/node-dir-0.1.17.tgz",
+ "integrity": "sha1-X1Zl2TNRM1yqvvjxxVRRbPXx5OU=",
+ "dev": true,
+ "requires": {
+ "minimatch": "^3.0.2"
+ }
+ },
+ "node-fetch": {
+ "version": "2.6.6",
+ "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.6.tgz",
+ "integrity": "sha512-Z8/6vRlTUChSdIgMa51jxQ4lrw/Jy5SOW10ObaA47/RElsAN2c5Pn8bTgFGWn/ibwzXTE8qwr1Yzx28vsecXEA==",
+ "dev": true,
+ "requires": {
+ "whatwg-url": "^5.0.0"
+ },
+ "dependencies": {
+ "tr46": {
+ "version": "0.0.3",
+ "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
+ "integrity": "sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=",
+ "dev": true
+ },
+ "webidl-conversions": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
+ "integrity": "sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=",
+ "dev": true
+ },
+ "whatwg-url": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
+ "integrity": "sha1-lmRU6HZUYuN2RNNib2dCzotwll0=",
+ "dev": true,
+ "requires": {
+ "tr46": "~0.0.3",
+ "webidl-conversions": "^3.0.0"
+ }
+ }
+ }
+ },
+ "node-int64": {
+ "version": "0.4.0",
+ "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz",
+ "integrity": "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=",
+ "dev": true
+ },
+ "node-libs-browser": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz",
+ "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==",
+ "dev": true,
+ "requires": {
+ "assert": "^1.1.1",
+ "browserify-zlib": "^0.2.0",
+ "buffer": "^4.3.0",
+ "console-browserify": "^1.1.0",
+ "constants-browserify": "^1.0.0",
+ "crypto-browserify": "^3.11.0",
+ "domain-browser": "^1.1.1",
+ "events": "^3.0.0",
+ "https-browserify": "^1.0.0",
+ "os-browserify": "^0.3.0",
+ "path-browserify": "0.0.1",
+ "process": "^0.11.10",
+ "punycode": "^1.2.4",
+ "querystring-es3": "^0.2.0",
+ "readable-stream": "^2.3.3",
+ "stream-browserify": "^2.0.1",
+ "stream-http": "^2.7.2",
+ "string_decoder": "^1.0.0",
+ "timers-browserify": "^2.0.4",
+ "tty-browserify": "0.0.0",
+ "url": "^0.11.0",
+ "util": "^0.11.0",
+ "vm-browserify": "^1.0.1"
+ },
+ "dependencies": {
+ "punycode": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz",
+ "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=",
+ "dev": true
+ }
+ }
+ },
+ "node-releases": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.1.tgz",
+ "integrity": "sha512-CqyzN6z7Q6aMeF/ktcMVTzhAHCEpf8SOarwpzpf8pNBY2k5/oM34UHldUwp8VKI7uxct2HxSRdJjBaZeESzcxA==",
+ "dev": true
+ },
+ "normalize-package-data": {
+ "version": "2.5.0",
+ "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz",
+ "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==",
+ "dev": true,
+ "requires": {
+ "hosted-git-info": "^2.1.4",
+ "resolve": "^1.10.0",
+ "semver": "2 || 3 || 4 || 5",
+ "validate-npm-package-license": "^3.0.1"
+ },
+ "dependencies": {
+ "semver": {
+ "version": "5.7.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
+ "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
+ "dev": true
+ }
+ }
+ },
+ "normalize-path": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
+ "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
+ "dev": true
+ },
+ "normalize-range": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz",
+ "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=",
+ "dev": true
+ },
+ "npm-run-path": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz",
+ "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==",
+ "dev": true,
+ "requires": {
+ "path-key": "^3.0.0"
+ }
+ },
+ "npmlog": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz",
+ "integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==",
+ "dev": true,
+ "requires": {
+ "are-we-there-yet": "^2.0.0",
+ "console-control-strings": "^1.1.0",
+ "gauge": "^3.0.0",
+ "set-blocking": "^2.0.0"
+ }
+ },
+ "nth-check": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.0.1.tgz",
+ "integrity": "sha512-it1vE95zF6dTT9lBsYbxvqh0Soy4SPowchj0UBGj/V6cTPnXXtQOPUbhZ6CmGzAD/rW22LQK6E96pcdJXk4A4w==",
+ "dev": true,
+ "requires": {
+ "boolbase": "^1.0.0"
+ }
+ },
+ "num2fraction": {
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz",
+ "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=",
+ "dev": true
+ },
+ "nwsapi": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz",
+ "integrity": "sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==",
+ "dev": true
+ },
+ "object-assign": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
+ "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=",
+ "dev": true
+ },
+ "object-copy": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz",
+ "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=",
+ "dev": true,
+ "requires": {
+ "copy-descriptor": "^0.1.0",
+ "define-property": "^0.2.5",
+ "kind-of": "^3.0.3"
+ },
+ "dependencies": {
+ "define-property": {
+ "version": "0.2.5",
+ "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
+ "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
+ "dev": true,
+ "requires": {
+ "is-descriptor": "^0.1.0"
+ }
+ },
+ "is-accessor-descriptor": {
+ "version": "0.1.6",
+ "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz",
+ "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=",
+ "dev": true,
+ "requires": {
+ "kind-of": "^3.0.2"
+ }
+ },
+ "is-buffer": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
+ "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==",
+ "dev": true
+ },
+ "is-data-descriptor": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz",
+ "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=",
+ "dev": true,
+ "requires": {
+ "kind-of": "^3.0.2"
+ }
+ },
+ "is-descriptor": {
+ "version": "0.1.6",
+ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz",
+ "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==",
+ "dev": true,
+ "requires": {
+ "is-accessor-descriptor": "^0.1.6",
+ "is-data-descriptor": "^0.1.4",
+ "kind-of": "^5.0.0"
+ },
+ "dependencies": {
+ "kind-of": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
+ "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==",
+ "dev": true
+ }
+ }
+ },
+ "kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "requires": {
+ "is-buffer": "^1.1.5"
+ }
+ }
+ }
+ },
+ "object-inspect": {
+ "version": "1.12.0",
+ "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.0.tgz",
+ "integrity": "sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==",
+ "dev": true
+ },
+ "object-keys": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
+ "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
+ "dev": true
+ },
+ "object-visit": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz",
+ "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=",
+ "dev": true,
+ "requires": {
+ "isobject": "^3.0.0"
+ }
+ },
+ "object.assign": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz",
+ "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.0",
+ "define-properties": "^1.1.3",
+ "has-symbols": "^1.0.1",
+ "object-keys": "^1.1.1"
+ }
+ },
+ "object.entries": {
+ "version": "1.1.5",
+ "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.5.tgz",
+ "integrity": "sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.19.1"
+ }
+ },
+ "object.fromentries": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.5.tgz",
+ "integrity": "sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.19.1"
+ }
+ },
+ "object.getownpropertydescriptors": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.3.tgz",
+ "integrity": "sha512-VdDoCwvJI4QdC6ndjpqFmoL3/+HxffFBbcJzKi5hwLLqqx3mdbedRpfZDdK0SrOSauj8X4GzBvnDZl4vTN7dOw==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.19.1"
+ }
+ },
+ "object.pick": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz",
+ "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=",
+ "dev": true,
+ "requires": {
+ "isobject": "^3.0.1"
+ }
+ },
+ "object.values": {
+ "version": "1.1.5",
+ "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.5.tgz",
+ "integrity": "sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.19.1"
+ }
+ },
+ "objectorarray": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/objectorarray/-/objectorarray-1.0.5.tgz",
+ "integrity": "sha512-eJJDYkhJFFbBBAxeh8xW+weHlkI28n2ZdQV/J/DNfWfSKlGEf2xcfAbZTv3riEXHAhL9SVOTs2pRmXiSTf78xg==",
+ "dev": true
+ },
+ "on-finished": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz",
+ "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=",
+ "dev": true,
+ "requires": {
+ "ee-first": "1.1.1"
+ }
+ },
+ "on-headers": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz",
+ "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==",
+ "dev": true
+ },
+ "once": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
+ "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=",
+ "dev": true,
+ "requires": {
+ "wrappy": "1"
+ }
+ },
+ "onetime": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz",
+ "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==",
+ "dev": true,
+ "requires": {
+ "mimic-fn": "^2.1.0"
+ }
+ },
+ "open": {
+ "version": "7.4.2",
+ "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz",
+ "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==",
+ "dev": true,
+ "requires": {
+ "is-docker": "^2.0.0",
+ "is-wsl": "^2.1.1"
+ }
+ },
+ "optionator": {
+ "version": "0.8.3",
+ "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz",
+ "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==",
+ "dev": true,
+ "requires": {
+ "deep-is": "~0.1.3",
+ "fast-levenshtein": "~2.0.6",
+ "levn": "~0.3.0",
+ "prelude-ls": "~1.1.2",
+ "type-check": "~0.3.2",
+ "word-wrap": "~1.2.3"
+ }
+ },
+ "os-browserify": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz",
+ "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=",
+ "dev": true
+ },
+ "overlayscrollbars": {
+ "version": "1.13.1",
+ "resolved": "https://registry.npmjs.org/overlayscrollbars/-/overlayscrollbars-1.13.1.tgz",
+ "integrity": "sha512-gIQfzgGgu1wy80EB4/6DaJGHMEGmizq27xHIESrzXq0Y/J0Ay1P3DWk6tuVmEPIZH15zaBlxeEJOqdJKmowHCQ==",
+ "dev": true
+ },
+ "p-all": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/p-all/-/p-all-2.1.0.tgz",
+ "integrity": "sha512-HbZxz5FONzz/z2gJfk6bFca0BCiSRF8jU3yCsWOen/vR6lZjfPOu/e7L3uFzTW1i0H8TlC3vqQstEJPQL4/uLA==",
+ "dev": true,
+ "requires": {
+ "p-map": "^2.0.0"
+ },
+ "dependencies": {
+ "p-map": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz",
+ "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==",
+ "dev": true
+ }
+ }
+ },
+ "p-event": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/p-event/-/p-event-4.2.0.tgz",
+ "integrity": "sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ==",
+ "dev": true,
+ "requires": {
+ "p-timeout": "^3.1.0"
+ }
+ },
+ "p-filter": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/p-filter/-/p-filter-2.1.0.tgz",
+ "integrity": "sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==",
+ "dev": true,
+ "requires": {
+ "p-map": "^2.0.0"
+ },
+ "dependencies": {
+ "p-map": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz",
+ "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==",
+ "dev": true
+ }
+ }
+ },
+ "p-finally": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz",
+ "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=",
+ "dev": true
+ },
+ "p-limit": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
+ "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
+ "dev": true,
+ "requires": {
+ "yocto-queue": "^0.1.0"
+ }
+ },
+ "p-locate": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
+ "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
+ "dev": true,
+ "requires": {
+ "p-limit": "^3.0.2"
+ }
+ },
+ "p-map": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/p-map/-/p-map-3.0.0.tgz",
+ "integrity": "sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==",
+ "dev": true,
+ "requires": {
+ "aggregate-error": "^3.0.0"
+ }
+ },
+ "p-timeout": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-3.2.0.tgz",
+ "integrity": "sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==",
+ "dev": true,
+ "requires": {
+ "p-finally": "^1.0.0"
+ }
+ },
+ "p-try": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
+ "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
+ "dev": true
+ },
+ "pako": {
+ "version": "1.0.11",
+ "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz",
+ "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw=="
+ },
+ "parallel-transform": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz",
+ "integrity": "sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==",
+ "dev": true,
+ "requires": {
+ "cyclist": "^1.0.1",
+ "inherits": "^2.0.3",
+ "readable-stream": "^2.1.5"
+ }
+ },
+ "param-case": {
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz",
+ "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==",
+ "dev": true,
+ "requires": {
+ "dot-case": "^3.0.4",
+ "tslib": "^2.0.3"
+ }
+ },
+ "parent-module": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
+ "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
+ "dev": true,
+ "requires": {
+ "callsites": "^3.0.0"
+ }
+ },
+ "parse-asn1": {
+ "version": "5.1.6",
+ "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz",
+ "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==",
+ "dev": true,
+ "requires": {
+ "asn1.js": "^5.2.0",
+ "browserify-aes": "^1.0.0",
+ "evp_bytestokey": "^1.0.0",
+ "pbkdf2": "^3.0.3",
+ "safe-buffer": "^5.1.1"
+ }
+ },
+ "parse-entities": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-2.0.0.tgz",
+ "integrity": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==",
+ "dev": true,
+ "requires": {
+ "character-entities": "^1.0.0",
+ "character-entities-legacy": "^1.0.0",
+ "character-reference-invalid": "^1.0.0",
+ "is-alphanumerical": "^1.0.0",
+ "is-decimal": "^1.0.0",
+ "is-hexadecimal": "^1.0.0"
+ }
+ },
+ "parse-json": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz",
+ "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
+ "dev": true,
+ "requires": {
+ "@babel/code-frame": "^7.0.0",
+ "error-ex": "^1.3.1",
+ "json-parse-even-better-errors": "^2.3.0",
+ "lines-and-columns": "^1.1.6"
+ }
+ },
+ "parse5": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz",
+ "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==",
+ "dev": true
+ },
+ "parseurl": {
+ "version": "1.3.3",
+ "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
+ "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
+ "dev": true
+ },
+ "pascal-case": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz",
+ "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==",
+ "dev": true,
+ "requires": {
+ "no-case": "^3.0.4",
+ "tslib": "^2.0.3"
+ }
+ },
+ "pascalcase": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz",
+ "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=",
+ "dev": true
+ },
+ "path-browserify": {
+ "version": "0.0.1",
+ "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz",
+ "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==",
+ "dev": true
+ },
+ "path-dirname": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz",
+ "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=",
+ "dev": true
+ },
+ "path-exists": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
+ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
+ "dev": true
+ },
+ "path-is-absolute": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
+ "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=",
+ "dev": true
+ },
+ "path-key": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
+ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
+ "dev": true
+ },
+ "path-parse": {
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
+ "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
+ "dev": true
+ },
+ "path-to-regexp": {
+ "version": "0.1.7",
+ "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz",
+ "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=",
+ "dev": true
+ },
+ "path-type": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
+ "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==",
+ "dev": true
+ },
+ "pbkdf2": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz",
+ "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==",
+ "dev": true,
+ "requires": {
+ "create-hash": "^1.1.2",
+ "create-hmac": "^1.1.4",
+ "ripemd160": "^2.0.1",
+ "safe-buffer": "^5.0.1",
+ "sha.js": "^2.4.8"
+ }
+ },
+ "picocolors": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
+ "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
+ "dev": true
+ },
+ "picomatch": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
+ "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
+ "dev": true
+ },
+ "pify": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz",
+ "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==",
+ "dev": true
+ },
+ "pirates": {
+ "version": "4.0.4",
+ "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.4.tgz",
+ "integrity": "sha512-ZIrVPH+A52Dw84R0L3/VS9Op04PuQ2SEoJL6bkshmiTic/HldyW9Tf7oH5mhJZBK7NmDx27vSMrYEXPXclpDKw==",
+ "dev": true
+ },
+ "pkg-dir": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-5.0.0.tgz",
+ "integrity": "sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==",
+ "dev": true,
+ "requires": {
+ "find-up": "^5.0.0"
+ }
+ },
+ "pkg-up": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz",
+ "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==",
+ "dev": true,
+ "requires": {
+ "find-up": "^3.0.0"
+ },
+ "dependencies": {
+ "find-up": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz",
+ "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==",
+ "dev": true,
+ "requires": {
+ "locate-path": "^3.0.0"
+ }
+ },
+ "locate-path": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz",
+ "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==",
+ "dev": true,
+ "requires": {
+ "p-locate": "^3.0.0",
+ "path-exists": "^3.0.0"
+ }
+ },
+ "p-limit": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
+ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
+ "dev": true,
+ "requires": {
+ "p-try": "^2.0.0"
+ }
+ },
+ "p-locate": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz",
+ "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==",
+ "dev": true,
+ "requires": {
+ "p-limit": "^2.0.0"
+ }
+ },
+ "path-exists": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz",
+ "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=",
+ "dev": true
+ }
+ }
+ },
+ "pnp-webpack-plugin": {
+ "version": "1.6.4",
+ "resolved": "https://registry.npmjs.org/pnp-webpack-plugin/-/pnp-webpack-plugin-1.6.4.tgz",
+ "integrity": "sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==",
+ "dev": true,
+ "requires": {
+ "ts-pnp": "^1.1.6"
+ }
+ },
+ "polished": {
+ "version": "4.1.3",
+ "resolved": "https://registry.npmjs.org/polished/-/polished-4.1.3.tgz",
+ "integrity": "sha512-ocPAcVBUOryJEKe0z2KLd1l9EBa1r5mSwlKpExmrLzsnIzJo4axsoU9O2BjOTkDGDT4mZ0WFE5XKTlR3nLnZOA==",
+ "dev": true,
+ "requires": {
+ "@babel/runtime": "^7.14.0"
+ }
+ },
+ "posix-character-classes": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz",
+ "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=",
+ "dev": true
+ },
+ "postcss": {
+ "version": "7.0.39",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
+ "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
+ "dev": true,
+ "requires": {
+ "picocolors": "^0.2.1",
+ "source-map": "^0.6.1"
+ },
+ "dependencies": {
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ }
+ }
+ },
+ "postcss-flexbugs-fixes": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-4.2.1.tgz",
+ "integrity": "sha512-9SiofaZ9CWpQWxOwRh1b/r85KD5y7GgvsNt1056k6OYLvWUun0czCvogfJgylC22uJTwW1KzY3Gz65NZRlvoiQ==",
+ "dev": true,
+ "requires": {
+ "postcss": "^7.0.26"
+ }
+ },
+ "postcss-loader": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-4.3.0.tgz",
+ "integrity": "sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q==",
+ "dev": true,
+ "requires": {
+ "cosmiconfig": "^7.0.0",
+ "klona": "^2.0.4",
+ "loader-utils": "^2.0.0",
+ "schema-utils": "^3.0.0",
+ "semver": "^7.3.4"
+ },
+ "dependencies": {
+ "cosmiconfig": {
+ "version": "7.0.1",
+ "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz",
+ "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==",
+ "dev": true,
+ "requires": {
+ "@types/parse-json": "^4.0.0",
+ "import-fresh": "^3.2.1",
+ "parse-json": "^5.0.0",
+ "path-type": "^4.0.0",
+ "yaml": "^1.10.0"
+ }
+ },
+ "semver": {
+ "version": "7.3.5",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz",
+ "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==",
+ "dev": true,
+ "requires": {
+ "lru-cache": "^6.0.0"
+ }
+ }
+ }
+ },
+ "postcss-modules-extract-imports": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz",
+ "integrity": "sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==",
+ "dev": true,
+ "requires": {
+ "postcss": "^7.0.5"
+ }
+ },
+ "postcss-modules-local-by-default": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz",
+ "integrity": "sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==",
+ "dev": true,
+ "requires": {
+ "icss-utils": "^4.1.1",
+ "postcss": "^7.0.32",
+ "postcss-selector-parser": "^6.0.2",
+ "postcss-value-parser": "^4.1.0"
+ }
+ },
+ "postcss-modules-scope": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz",
+ "integrity": "sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==",
+ "dev": true,
+ "requires": {
+ "postcss": "^7.0.6",
+ "postcss-selector-parser": "^6.0.0"
+ }
+ },
+ "postcss-modules-values": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz",
+ "integrity": "sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==",
+ "dev": true,
+ "requires": {
+ "icss-utils": "^4.0.0",
+ "postcss": "^7.0.6"
+ }
+ },
+ "postcss-selector-parser": {
+ "version": "6.0.8",
+ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.8.tgz",
+ "integrity": "sha512-D5PG53d209Z1Uhcc0qAZ5U3t5HagH3cxu+WLZ22jt3gLUpXM4eXXfiO14jiDWST3NNooX/E8wISfOhZ9eIjGTQ==",
+ "dev": true,
+ "requires": {
+ "cssesc": "^3.0.0",
+ "util-deprecate": "^1.0.2"
+ }
+ },
+ "postcss-value-parser": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz",
+ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==",
+ "dev": true
+ },
+ "prelude-ls": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz",
+ "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=",
+ "dev": true
+ },
+ "prettier": {
+ "version": "2.5.1",
+ "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.5.1.tgz",
+ "integrity": "sha512-vBZcPRUR5MZJwoyi3ZoyQlc1rXeEck8KgeC9AwwOn+exuxLxq5toTRDTSaVrXHxelDMHy9zlicw8u66yxoSUFg==",
+ "dev": true
+ },
+ "pretty-error": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-2.1.2.tgz",
+ "integrity": "sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw==",
+ "dev": true,
+ "requires": {
+ "lodash": "^4.17.20",
+ "renderkid": "^2.0.4"
+ }
+ },
+ "pretty-format": {
+ "version": "27.4.6",
+ "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.4.6.tgz",
+ "integrity": "sha512-NblstegA1y/RJW2VyML+3LlpFjzx62cUrtBIKIWDXEDkjNeleA7Od7nrzcs/VLQvAeV4CgSYhrN39DRN88Qi/g==",
+ "dev": true,
+ "requires": {
+ "ansi-regex": "^5.0.1",
+ "ansi-styles": "^5.0.0",
+ "react-is": "^17.0.1"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz",
+ "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==",
+ "dev": true
+ }
+ }
+ },
+ "pretty-hrtime": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz",
+ "integrity": "sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=",
+ "dev": true
+ },
+ "prismjs": {
+ "version": "1.26.0",
+ "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.26.0.tgz",
+ "integrity": "sha512-HUoH9C5Z3jKkl3UunCyiD5jwk0+Hz0fIgQ2nbwU2Oo/ceuTAQAg+pPVnfdt2TJWRVLcxKh9iuoYDUSc8clb5UQ==",
+ "dev": true
+ },
+ "process": {
+ "version": "0.11.10",
+ "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz",
+ "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=",
+ "dev": true
+ },
+ "process-nextick-args": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
+ "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="
+ },
+ "promise-inflight": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz",
+ "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=",
+ "dev": true
+ },
+ "promise.allsettled": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/promise.allsettled/-/promise.allsettled-1.0.5.tgz",
+ "integrity": "sha512-tVDqeZPoBC0SlzJHzWGZ2NKAguVq2oiYj7gbggbiTvH2itHohijTp7njOUA0aQ/nl+0lr/r6egmhoYu63UZ/pQ==",
+ "dev": true,
+ "requires": {
+ "array.prototype.map": "^1.0.4",
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.19.1",
+ "get-intrinsic": "^1.1.1",
+ "iterate-value": "^1.0.2"
+ }
+ },
+ "promise.prototype.finally": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/promise.prototype.finally/-/promise.prototype.finally-3.1.3.tgz",
+ "integrity": "sha512-EXRF3fC9/0gz4qkt/f5EP5iW4kj9oFpBICNpCNOb/52+8nlHIX07FPLbi/q4qYBQ1xZqivMzTpNQSnArVASolQ==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.19.1"
+ }
+ },
+ "prompts": {
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz",
+ "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==",
+ "dev": true,
+ "requires": {
+ "kleur": "^3.0.3",
+ "sisteransi": "^1.0.5"
+ }
+ },
+ "prop-types": {
+ "version": "15.8.1",
+ "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz",
+ "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==",
+ "dev": true,
+ "requires": {
+ "loose-envify": "^1.4.0",
+ "object-assign": "^4.1.1",
+ "react-is": "^16.13.1"
+ },
+ "dependencies": {
+ "react-is": {
+ "version": "16.13.1",
+ "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
+ "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==",
+ "dev": true
+ }
+ }
+ },
+ "property-information": {
+ "version": "5.6.0",
+ "resolved": "https://registry.npmjs.org/property-information/-/property-information-5.6.0.tgz",
+ "integrity": "sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==",
+ "dev": true,
+ "requires": {
+ "xtend": "^4.0.0"
+ }
+ },
+ "proxy-addr": {
+ "version": "2.0.7",
+ "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
+ "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
+ "dev": true,
+ "requires": {
+ "forwarded": "0.2.0",
+ "ipaddr.js": "1.9.1"
+ }
+ },
+ "prr": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz",
+ "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=",
+ "dev": true
+ },
+ "psl": {
+ "version": "1.8.0",
+ "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz",
+ "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==",
+ "dev": true
+ },
+ "public-encrypt": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz",
+ "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==",
+ "dev": true,
+ "requires": {
+ "bn.js": "^4.1.0",
+ "browserify-rsa": "^4.0.0",
+ "create-hash": "^1.1.0",
+ "parse-asn1": "^5.0.0",
+ "randombytes": "^2.0.1",
+ "safe-buffer": "^5.1.2"
+ },
+ "dependencies": {
+ "bn.js": {
+ "version": "4.12.0",
+ "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz",
+ "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==",
+ "dev": true
+ }
+ }
+ },
+ "pump": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz",
+ "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==",
+ "dev": true,
+ "requires": {
+ "end-of-stream": "^1.1.0",
+ "once": "^1.3.1"
+ }
+ },
+ "pumpify": {
+ "version": "1.5.1",
+ "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz",
+ "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==",
+ "dev": true,
+ "requires": {
+ "duplexify": "^3.6.0",
+ "inherits": "^2.0.3",
+ "pump": "^2.0.0"
+ },
+ "dependencies": {
+ "pump": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz",
+ "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==",
+ "dev": true,
+ "requires": {
+ "end-of-stream": "^1.1.0",
+ "once": "^1.3.1"
+ }
+ }
+ }
+ },
+ "punycode": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz",
+ "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==",
+ "dev": true
+ },
+ "qs": {
+ "version": "6.10.2",
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.2.tgz",
+ "integrity": "sha512-mSIdjzqznWgfd4pMii7sHtaYF8rx8861hBO80SraY5GT0XQibWZWJSid0avzHGkDIZLImux2S5mXO0Hfct2QCw==",
+ "dev": true,
+ "requires": {
+ "side-channel": "^1.0.4"
+ }
+ },
+ "querystring": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz",
+ "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=",
+ "dev": true
+ },
+ "querystring-es3": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz",
+ "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=",
+ "dev": true
+ },
+ "queue-microtask": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
+ "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
+ "dev": true
+ },
+ "ramda": {
+ "version": "0.21.0",
+ "resolved": "https://registry.npmjs.org/ramda/-/ramda-0.21.0.tgz",
+ "integrity": "sha1-oAGr7bP/YQd9T/HVd9RN536NCjU=",
+ "dev": true
+ },
+ "randombytes": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz",
+ "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==",
+ "dev": true,
+ "requires": {
+ "safe-buffer": "^5.1.0"
+ }
+ },
+ "randomfill": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz",
+ "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==",
+ "dev": true,
+ "requires": {
+ "randombytes": "^2.0.5",
+ "safe-buffer": "^5.1.0"
+ }
+ },
+ "range-parser": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
+ "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
+ "dev": true
+ },
+ "raw-body": {
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.2.tgz",
+ "integrity": "sha512-RPMAFUJP19WIet/99ngh6Iv8fzAbqum4Li7AD6DtGaW2RpMB/11xDoalPiJMTbu6I3hkbMVkATvZrqb9EEqeeQ==",
+ "dev": true,
+ "requires": {
+ "bytes": "3.1.1",
+ "http-errors": "1.8.1",
+ "iconv-lite": "0.4.24",
+ "unpipe": "1.0.0"
+ },
+ "dependencies": {
+ "bytes": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.1.tgz",
+ "integrity": "sha512-dWe4nWO/ruEOY7HkUJ5gFt1DCFV9zPRoJr8pV0/ASQermOZjtq8jMjOprC0Kd10GLN+l7xaUPvxzJFWtxGu8Fg==",
+ "dev": true
+ }
+ }
+ },
+ "raw-loader": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/raw-loader/-/raw-loader-4.0.2.tgz",
+ "integrity": "sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==",
+ "dev": true,
+ "requires": {
+ "loader-utils": "^2.0.0",
+ "schema-utils": "^3.0.0"
+ }
+ },
+ "react": {
+ "version": "17.0.2",
+ "resolved": "https://registry.npmjs.org/react/-/react-17.0.2.tgz",
+ "integrity": "sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==",
+ "dev": true,
+ "requires": {
+ "loose-envify": "^1.1.0",
+ "object-assign": "^4.1.1"
+ }
+ },
+ "react-colorful": {
+ "version": "5.5.1",
+ "resolved": "https://registry.npmjs.org/react-colorful/-/react-colorful-5.5.1.tgz",
+ "integrity": "sha512-M1TJH2X3RXEt12sWkpa6hLc/bbYS0H6F4rIqjQZ+RxNBstpY67d9TrFXtqdZwhpmBXcCwEi7stKqFue3ZRkiOg==",
+ "dev": true
+ },
+ "react-dev-utils": {
+ "version": "11.0.4",
+ "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-11.0.4.tgz",
+ "integrity": "sha512-dx0LvIGHcOPtKbeiSUM4jqpBl3TcY7CDjZdfOIcKeznE7BWr9dg0iPG90G5yfVQ+p/rGNMXdbfStvzQZEVEi4A==",
+ "dev": true,
+ "requires": {
+ "@babel/code-frame": "7.10.4",
+ "address": "1.1.2",
+ "browserslist": "4.14.2",
+ "chalk": "2.4.2",
+ "cross-spawn": "7.0.3",
+ "detect-port-alt": "1.1.6",
+ "escape-string-regexp": "2.0.0",
+ "filesize": "6.1.0",
+ "find-up": "4.1.0",
+ "fork-ts-checker-webpack-plugin": "4.1.6",
+ "global-modules": "2.0.0",
+ "globby": "11.0.1",
+ "gzip-size": "5.1.1",
+ "immer": "8.0.1",
+ "is-root": "2.1.0",
+ "loader-utils": "2.0.0",
+ "open": "^7.0.2",
+ "pkg-up": "3.1.0",
+ "prompts": "2.4.0",
+ "react-error-overlay": "^6.0.9",
+ "recursive-readdir": "2.2.2",
+ "shell-quote": "1.7.2",
+ "strip-ansi": "6.0.0",
+ "text-table": "0.2.0"
+ },
+ "dependencies": {
+ "@babel/code-frame": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz",
+ "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==",
+ "dev": true,
+ "requires": {
+ "@babel/highlight": "^7.10.4"
+ }
+ },
+ "browserslist": {
+ "version": "4.14.2",
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.14.2.tgz",
+ "integrity": "sha512-HI4lPveGKUR0x2StIz+2FXfDk9SfVMrxn6PLh1JeGUwcuoDkdKZebWiyLRJ68iIPDpMI4JLVDf7S7XzslgWOhw==",
+ "dev": true,
+ "requires": {
+ "caniuse-lite": "^1.0.30001125",
+ "electron-to-chromium": "^1.3.564",
+ "escalade": "^3.0.2",
+ "node-releases": "^1.1.61"
+ }
+ },
+ "escape-string-regexp": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz",
+ "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==",
+ "dev": true
+ },
+ "find-up": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
+ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
+ "dev": true,
+ "requires": {
+ "locate-path": "^5.0.0",
+ "path-exists": "^4.0.0"
+ }
+ },
+ "globby": {
+ "version": "11.0.1",
+ "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.1.tgz",
+ "integrity": "sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ==",
+ "dev": true,
+ "requires": {
+ "array-union": "^2.1.0",
+ "dir-glob": "^3.0.1",
+ "fast-glob": "^3.1.1",
+ "ignore": "^5.1.4",
+ "merge2": "^1.3.0",
+ "slash": "^3.0.0"
+ }
+ },
+ "loader-utils": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz",
+ "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==",
+ "dev": true,
+ "requires": {
+ "big.js": "^5.2.2",
+ "emojis-list": "^3.0.0",
+ "json5": "^2.1.2"
+ }
+ },
+ "locate-path": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
+ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
+ "dev": true,
+ "requires": {
+ "p-locate": "^4.1.0"
+ }
+ },
+ "node-releases": {
+ "version": "1.1.77",
+ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.77.tgz",
+ "integrity": "sha512-rB1DUFUNAN4Gn9keO2K1efO35IDK7yKHCdCaIMvFO7yUYmmZYeDjnGKle26G4rwj+LKRQpjyUUvMkPglwGCYNQ==",
+ "dev": true
+ },
+ "p-limit": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
+ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
+ "dev": true,
+ "requires": {
+ "p-try": "^2.0.0"
+ }
+ },
+ "p-locate": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
+ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
+ "dev": true,
+ "requires": {
+ "p-limit": "^2.2.0"
+ }
+ },
+ "prompts": {
+ "version": "2.4.0",
+ "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.0.tgz",
+ "integrity": "sha512-awZAKrk3vN6CroQukBL+R9051a4R3zCZBlJm/HBfrSZ8iTpYix3VX1vU4mveiLpiwmOJT4wokTF9m6HUk4KqWQ==",
+ "dev": true,
+ "requires": {
+ "kleur": "^3.0.3",
+ "sisteransi": "^1.0.5"
+ }
+ },
+ "strip-ansi": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz",
+ "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==",
+ "dev": true,
+ "requires": {
+ "ansi-regex": "^5.0.0"
+ }
+ }
+ }
+ },
+ "react-docgen": {
+ "version": "5.4.0",
+ "resolved": "https://registry.npmjs.org/react-docgen/-/react-docgen-5.4.0.tgz",
+ "integrity": "sha512-JBjVQ9cahmNlfjMGxWUxJg919xBBKAoy3hgDgKERbR+BcF4ANpDuzWAScC7j27hZfd8sJNmMPOLWo9+vB/XJEQ==",
+ "dev": true,
+ "requires": {
+ "@babel/core": "^7.7.5",
+ "@babel/generator": "^7.12.11",
+ "@babel/runtime": "^7.7.6",
+ "ast-types": "^0.14.2",
+ "commander": "^2.19.0",
+ "doctrine": "^3.0.0",
+ "estree-to-babel": "^3.1.0",
+ "neo-async": "^2.6.1",
+ "node-dir": "^0.1.10",
+ "strip-indent": "^3.0.0"
+ },
+ "dependencies": {
+ "commander": {
+ "version": "2.20.3",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
+ "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
+ "dev": true
+ }
+ }
+ },
+ "react-docgen-typescript": {
+ "version": "2.2.2",
+ "resolved": "https://registry.npmjs.org/react-docgen-typescript/-/react-docgen-typescript-2.2.2.tgz",
+ "integrity": "sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==",
+ "dev": true
+ },
+ "react-dom": {
+ "version": "17.0.2",
+ "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-17.0.2.tgz",
+ "integrity": "sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==",
+ "dev": true,
+ "requires": {
+ "loose-envify": "^1.1.0",
+ "object-assign": "^4.1.1",
+ "scheduler": "^0.20.2"
+ }
+ },
+ "react-draggable": {
+ "version": "4.4.4",
+ "resolved": "https://registry.npmjs.org/react-draggable/-/react-draggable-4.4.4.tgz",
+ "integrity": "sha512-6e0WdcNLwpBx/YIDpoyd2Xb04PB0elrDrulKUgdrIlwuYvxh5Ok9M+F8cljm8kPXXs43PmMzek9RrB1b7mLMqA==",
+ "dev": true,
+ "requires": {
+ "clsx": "^1.1.1",
+ "prop-types": "^15.6.0"
+ }
+ },
+ "react-element-to-jsx-string": {
+ "version": "14.3.4",
+ "resolved": "https://registry.npmjs.org/react-element-to-jsx-string/-/react-element-to-jsx-string-14.3.4.tgz",
+ "integrity": "sha512-t4ZwvV6vwNxzujDQ+37bspnLwA4JlgUPWhLjBJWsNIDceAf6ZKUTCjdm08cN6WeZ5pTMKiCJkmAYnpmR4Bm+dg==",
+ "dev": true,
+ "requires": {
+ "@base2/pretty-print-object": "1.0.1",
+ "is-plain-object": "5.0.0",
+ "react-is": "17.0.2"
+ },
+ "dependencies": {
+ "is-plain-object": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz",
+ "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==",
+ "dev": true
+ }
+ }
+ },
+ "react-error-overlay": {
+ "version": "6.0.10",
+ "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.10.tgz",
+ "integrity": "sha512-mKR90fX7Pm5seCOfz8q9F+66VCc1PGsWSBxKbITjfKVQHMNF2zudxHnMdJiB1fRCb+XsbQV9sO9DCkgsMQgBIA==",
+ "dev": true
+ },
+ "react-fast-compare": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.0.tgz",
+ "integrity": "sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA==",
+ "dev": true
+ },
+ "react-helmet-async": {
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/react-helmet-async/-/react-helmet-async-1.2.2.tgz",
+ "integrity": "sha512-XgSQezeCbLfCxdZhDA3T/g27XZKnOYyOkruopTLSJj8RvFZwdXnM4djnfYaiBSDzOidDgTo1jcEozoRu/+P9UQ==",
+ "dev": true,
+ "requires": {
+ "@babel/runtime": "^7.12.5",
+ "invariant": "^2.2.4",
+ "prop-types": "^15.7.2",
+ "react-fast-compare": "^3.2.0",
+ "shallowequal": "^1.1.0"
+ }
+ },
+ "react-inspector": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/react-inspector/-/react-inspector-5.1.1.tgz",
+ "integrity": "sha512-GURDaYzoLbW8pMGXwYPDBIv6nqei4kK7LPRZ9q9HCZF54wqXz/dnylBp/kfE9XmekBhHvLDdcYeyIwSrvtOiWg==",
+ "dev": true,
+ "requires": {
+ "@babel/runtime": "^7.0.0",
+ "is-dom": "^1.0.0",
+ "prop-types": "^15.0.0"
+ }
+ },
+ "react-is": {
+ "version": "17.0.2",
+ "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz",
+ "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==",
+ "dev": true
+ },
+ "react-popper": {
+ "version": "2.2.5",
+ "resolved": "https://registry.npmjs.org/react-popper/-/react-popper-2.2.5.tgz",
+ "integrity": "sha512-kxGkS80eQGtLl18+uig1UIf9MKixFSyPxglsgLBxlYnyDf65BiY9B3nZSc6C9XUNDgStROB0fMQlTEz1KxGddw==",
+ "dev": true,
+ "requires": {
+ "react-fast-compare": "^3.0.1",
+ "warning": "^4.0.2"
+ }
+ },
+ "react-popper-tooltip": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/react-popper-tooltip/-/react-popper-tooltip-3.1.1.tgz",
+ "integrity": "sha512-EnERAnnKRptQBJyaee5GJScWNUKQPDD2ywvzZyUjst/wj5U64C8/CnSYLNEmP2hG0IJ3ZhtDxE8oDN+KOyavXQ==",
+ "dev": true,
+ "requires": {
+ "@babel/runtime": "^7.12.5",
+ "@popperjs/core": "^2.5.4",
+ "react-popper": "^2.2.4"
+ }
+ },
+ "react-refresh": {
+ "version": "0.10.0",
+ "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.10.0.tgz",
+ "integrity": "sha512-PgidR3wST3dDYKr6b4pJoqQFpPGNKDSCDx4cZoshjXipw3LzO7mG1My2pwEzz2JVkF+inx3xRpDeQLFQGH/hsQ==",
+ "dev": true
+ },
+ "react-router": {
+ "version": "6.2.1",
+ "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.2.1.tgz",
+ "integrity": "sha512-2fG0udBtxou9lXtK97eJeET2ki5//UWfQSl1rlJ7quwe6jrktK9FCCc8dQb5QY6jAv3jua8bBQRhhDOM/kVRsg==",
+ "dev": true,
+ "requires": {
+ "history": "^5.2.0"
+ },
+ "dependencies": {
+ "history": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/history/-/history-5.2.0.tgz",
+ "integrity": "sha512-uPSF6lAJb3nSePJ43hN3eKj1dTWpN9gMod0ZssbFTIsen+WehTmEadgL+kg78xLJFdRfrrC//SavDzmRVdE+Ig==",
+ "dev": true,
+ "requires": {
+ "@babel/runtime": "^7.7.6"
+ }
+ }
+ }
+ },
+ "react-router-dom": {
+ "version": "6.2.1",
+ "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.2.1.tgz",
+ "integrity": "sha512-I6Zax+/TH/cZMDpj3/4Fl2eaNdcvoxxHoH1tYOREsQ22OKDYofGebrNm6CTPUcvLvZm63NL/vzCYdjf9CUhqmA==",
+ "dev": true,
+ "requires": {
+ "history": "^5.2.0",
+ "react-router": "6.2.1"
+ },
+ "dependencies": {
+ "history": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/history/-/history-5.2.0.tgz",
+ "integrity": "sha512-uPSF6lAJb3nSePJ43hN3eKj1dTWpN9gMod0ZssbFTIsen+WehTmEadgL+kg78xLJFdRfrrC//SavDzmRVdE+Ig==",
+ "dev": true,
+ "requires": {
+ "@babel/runtime": "^7.7.6"
+ }
+ }
+ }
+ },
+ "react-sizeme": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/react-sizeme/-/react-sizeme-3.0.2.tgz",
+ "integrity": "sha512-xOIAOqqSSmKlKFJLO3inBQBdymzDuXx4iuwkNcJmC96jeiOg5ojByvL+g3MW9LPEsojLbC6pf68zOfobK8IPlw==",
+ "dev": true,
+ "requires": {
+ "element-resize-detector": "^1.2.2",
+ "invariant": "^2.2.4",
+ "shallowequal": "^1.1.0",
+ "throttle-debounce": "^3.0.1"
+ }
+ },
+ "react-syntax-highlighter": {
+ "version": "13.5.3",
+ "resolved": "https://registry.npmjs.org/react-syntax-highlighter/-/react-syntax-highlighter-13.5.3.tgz",
+ "integrity": "sha512-crPaF+QGPeHNIblxxCdf2Lg936NAHKhNhuMzRL3F9ct6aYXL3NcZtCL0Rms9+qVo6Y1EQLdXGypBNSbPL/r+qg==",
+ "dev": true,
+ "requires": {
+ "@babel/runtime": "^7.3.1",
+ "highlight.js": "^10.1.1",
+ "lowlight": "^1.14.0",
+ "prismjs": "^1.21.0",
+ "refractor": "^3.1.0"
+ }
+ },
+ "react-textarea-autosize": {
+ "version": "8.3.3",
+ "resolved": "https://registry.npmjs.org/react-textarea-autosize/-/react-textarea-autosize-8.3.3.tgz",
+ "integrity": "sha512-2XlHXK2TDxS6vbQaoPbMOfQ8GK7+irc2fVK6QFIcC8GOnH3zI/v481n+j1L0WaPVvKxwesnY93fEfH++sus2rQ==",
+ "dev": true,
+ "requires": {
+ "@babel/runtime": "^7.10.2",
+ "use-composed-ref": "^1.0.0",
+ "use-latest": "^1.0.0"
+ }
+ },
+ "read-pkg": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz",
+ "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==",
+ "dev": true,
+ "requires": {
+ "@types/normalize-package-data": "^2.4.0",
+ "normalize-package-data": "^2.5.0",
+ "parse-json": "^5.0.0",
+ "type-fest": "^0.6.0"
+ },
+ "dependencies": {
+ "type-fest": {
+ "version": "0.6.0",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz",
+ "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==",
+ "dev": true
+ }
+ }
+ },
+ "read-pkg-up": {
+ "version": "7.0.1",
+ "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz",
+ "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==",
+ "dev": true,
+ "requires": {
+ "find-up": "^4.1.0",
+ "read-pkg": "^5.2.0",
+ "type-fest": "^0.8.1"
+ },
+ "dependencies": {
+ "find-up": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
+ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
+ "dev": true,
+ "requires": {
+ "locate-path": "^5.0.0",
+ "path-exists": "^4.0.0"
+ }
+ },
+ "locate-path": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
+ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
+ "dev": true,
+ "requires": {
+ "p-locate": "^4.1.0"
+ }
+ },
+ "p-limit": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
+ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
+ "dev": true,
+ "requires": {
+ "p-try": "^2.0.0"
+ }
+ },
+ "p-locate": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
+ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
+ "dev": true,
+ "requires": {
+ "p-limit": "^2.2.0"
+ }
+ },
+ "type-fest": {
+ "version": "0.8.1",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz",
+ "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==",
+ "dev": true
+ }
+ }
+ },
+ "readable-stream": {
+ "version": "2.3.7",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
+ "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
+ "requires": {
+ "core-util-is": "~1.0.0",
+ "inherits": "~2.0.3",
+ "isarray": "~1.0.0",
+ "process-nextick-args": "~2.0.0",
+ "safe-buffer": "~5.1.1",
+ "string_decoder": "~1.1.1",
+ "util-deprecate": "~1.0.1"
+ },
+ "dependencies": {
+ "isarray": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
+ "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE="
+ }
+ }
+ },
+ "readdirp": {
+ "version": "3.6.0",
+ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
+ "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
+ "dev": true,
+ "requires": {
+ "picomatch": "^2.2.1"
+ }
+ },
+ "recursive-readdir": {
+ "version": "2.2.2",
+ "resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.2.tgz",
+ "integrity": "sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==",
+ "dev": true,
+ "requires": {
+ "minimatch": "3.0.4"
+ }
+ },
+ "refractor": {
+ "version": "3.5.0",
+ "resolved": "https://registry.npmjs.org/refractor/-/refractor-3.5.0.tgz",
+ "integrity": "sha512-QwPJd3ferTZ4cSPPjdP5bsYHMytwWYnAN5EEnLtGvkqp/FCCnGsBgxrm9EuIDnjUC3Uc/kETtvVi7fSIVC74Dg==",
+ "dev": true,
+ "requires": {
+ "hastscript": "^6.0.0",
+ "parse-entities": "^2.0.0",
+ "prismjs": "~1.25.0"
+ },
+ "dependencies": {
+ "prismjs": {
+ "version": "1.25.0",
+ "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.25.0.tgz",
+ "integrity": "sha512-WCjJHl1KEWbnkQom1+SzftbtXMKQoezOCYs5rECqMN+jP+apI7ftoflyqigqzopSO3hMhTEb0mFClA8lkolgEg==",
+ "dev": true
+ }
+ }
+ },
+ "regenerate": {
+ "version": "1.4.2",
+ "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz",
+ "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==",
+ "dev": true
+ },
+ "regenerate-unicode-properties": {
+ "version": "9.0.0",
+ "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-9.0.0.tgz",
+ "integrity": "sha512-3E12UeNSPfjrgwjkR81m5J7Aw/T55Tu7nUyZVQYCKEOs+2dkxEY+DpPtZzO4YruuiPb7NkYLVcyJC4+zCbk5pA==",
+ "dev": true,
+ "requires": {
+ "regenerate": "^1.4.2"
+ }
+ },
+ "regenerator-runtime": {
+ "version": "0.13.9",
+ "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz",
+ "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==",
+ "dev": true
+ },
+ "regenerator-transform": {
+ "version": "0.14.5",
+ "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.5.tgz",
+ "integrity": "sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==",
+ "dev": true,
+ "requires": {
+ "@babel/runtime": "^7.8.4"
+ }
+ },
+ "regex-not": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz",
+ "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==",
+ "dev": true,
+ "requires": {
+ "extend-shallow": "^3.0.2",
+ "safe-regex": "^1.1.0"
+ }
+ },
+ "regexp.prototype.flags": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz",
+ "integrity": "sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.3"
+ }
+ },
+ "regexpu-core": {
+ "version": "4.8.0",
+ "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.8.0.tgz",
+ "integrity": "sha512-1F6bYsoYiz6is+oz70NWur2Vlh9KWtswuRuzJOfeYUrfPX2o8n74AnUVaOGDbUqVGO9fNHu48/pjJO4sNVwsOg==",
+ "dev": true,
+ "requires": {
+ "regenerate": "^1.4.2",
+ "regenerate-unicode-properties": "^9.0.0",
+ "regjsgen": "^0.5.2",
+ "regjsparser": "^0.7.0",
+ "unicode-match-property-ecmascript": "^2.0.0",
+ "unicode-match-property-value-ecmascript": "^2.0.0"
+ }
+ },
+ "regjsgen": {
+ "version": "0.5.2",
+ "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.2.tgz",
+ "integrity": "sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==",
+ "dev": true
+ },
+ "regjsparser": {
+ "version": "0.7.0",
+ "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.7.0.tgz",
+ "integrity": "sha512-A4pcaORqmNMDVwUjWoTzuhwMGpP+NykpfqAsEgI1FSH/EzC7lrN5TMd+kN8YCovX+jMpu8eaqXgXPCa0g8FQNQ==",
+ "dev": true,
+ "requires": {
+ "jsesc": "~0.5.0"
+ },
+ "dependencies": {
+ "jsesc": {
+ "version": "0.5.0",
+ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz",
+ "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=",
+ "dev": true
+ }
+ }
+ },
+ "relateurl": {
+ "version": "0.2.7",
+ "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz",
+ "integrity": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=",
+ "dev": true
+ },
+ "remark-external-links": {
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/remark-external-links/-/remark-external-links-8.0.0.tgz",
+ "integrity": "sha512-5vPSX0kHoSsqtdftSHhIYofVINC8qmp0nctkeU9YoJwV3YfiBRiI6cbFRJ0oI/1F9xS+bopXG0m2KS8VFscuKA==",
+ "dev": true,
+ "requires": {
+ "extend": "^3.0.0",
+ "is-absolute-url": "^3.0.0",
+ "mdast-util-definitions": "^4.0.0",
+ "space-separated-tokens": "^1.0.0",
+ "unist-util-visit": "^2.0.0"
+ },
+ "dependencies": {
+ "unist-util-visit": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz",
+ "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==",
+ "dev": true,
+ "requires": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0",
+ "unist-util-visit-parents": "^3.0.0"
+ }
+ },
+ "unist-util-visit-parents": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz",
+ "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==",
+ "dev": true,
+ "requires": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0"
+ }
+ }
+ }
+ },
+ "remark-footnotes": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/remark-footnotes/-/remark-footnotes-4.0.1.tgz",
+ "integrity": "sha512-He6YzQFk/Wu2KgfjI80EyPXjt/G+WFaYfUH+xapqPQBdm3aTdEyzosXXv9a2FbTxGqgOfJ4q/TCB46v+wofRpQ==",
+ "dev": true,
+ "requires": {
+ "@types/mdast": "^3.0.0",
+ "mdast-util-footnote": "^1.0.0",
+ "micromark-extension-footnote": "^1.0.0",
+ "unified": "^10.0.0"
+ }
+ },
+ "remark-frontmatter": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/remark-frontmatter/-/remark-frontmatter-4.0.1.tgz",
+ "integrity": "sha512-38fJrB0KnmD3E33a5jZC/5+gGAC2WKNiPw1/fdXJvijBlhA7RCsvJklrYJakS0HedninvaCYW8lQGf9C918GfA==",
+ "dev": true,
+ "requires": {
+ "@types/mdast": "^3.0.0",
+ "mdast-util-frontmatter": "^1.0.0",
+ "micromark-extension-frontmatter": "^1.0.0",
+ "unified": "^10.0.0"
+ }
+ },
+ "remark-gfm": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/remark-gfm/-/remark-gfm-3.0.1.tgz",
+ "integrity": "sha512-lEFDoi2PICJyNrACFOfDD3JlLkuSbOa5Wd8EPt06HUdptv8Gn0bxYTdbU/XXQ3swAPkEaGxxPN9cbnMHvVu1Ig==",
+ "dev": true,
+ "requires": {
+ "@types/mdast": "^3.0.0",
+ "mdast-util-gfm": "^2.0.0",
+ "micromark-extension-gfm": "^2.0.0",
+ "unified": "^10.0.0"
+ }
+ },
+ "remark-math": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/remark-math/-/remark-math-5.1.1.tgz",
+ "integrity": "sha512-cE5T2R/xLVtfFI4cCePtiRn+e6jKMtFDR3P8V3qpv8wpKjwvHoBA4eJzvX+nVrnlNy0911bdGmuspCSwetfYHw==",
+ "dev": true,
+ "requires": {
+ "@types/mdast": "^3.0.0",
+ "mdast-util-math": "^2.0.0",
+ "micromark-extension-math": "^2.0.0",
+ "unified": "^10.0.0"
+ }
+ },
+ "remark-mdx": {
+ "version": "1.6.22",
+ "resolved": "https://registry.npmjs.org/remark-mdx/-/remark-mdx-1.6.22.tgz",
+ "integrity": "sha512-phMHBJgeV76uyFkH4rvzCftLfKCr2RZuF+/gmVcaKrpsihyzmhXjA0BEMDaPTXG5y8qZOKPVo83NAOX01LPnOQ==",
+ "dev": true,
+ "requires": {
+ "@babel/core": "7.12.9",
+ "@babel/helper-plugin-utils": "7.10.4",
+ "@babel/plugin-proposal-object-rest-spread": "7.12.1",
+ "@babel/plugin-syntax-jsx": "7.12.1",
+ "@mdx-js/util": "1.6.22",
+ "is-alphabetical": "1.0.4",
+ "remark-parse": "8.0.3",
+ "unified": "9.2.0"
+ },
+ "dependencies": {
+ "@babel/core": {
+ "version": "7.12.9",
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.12.9.tgz",
+ "integrity": "sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==",
+ "dev": true,
+ "requires": {
+ "@babel/code-frame": "^7.10.4",
+ "@babel/generator": "^7.12.5",
+ "@babel/helper-module-transforms": "^7.12.1",
+ "@babel/helpers": "^7.12.5",
+ "@babel/parser": "^7.12.7",
+ "@babel/template": "^7.12.7",
+ "@babel/traverse": "^7.12.9",
+ "@babel/types": "^7.12.7",
+ "convert-source-map": "^1.7.0",
+ "debug": "^4.1.0",
+ "gensync": "^1.0.0-beta.1",
+ "json5": "^2.1.2",
+ "lodash": "^4.17.19",
+ "resolve": "^1.3.2",
+ "semver": "^5.4.1",
+ "source-map": "^0.5.0"
+ }
+ },
+ "@babel/helper-plugin-utils": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
+ "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
+ "dev": true
+ },
+ "@babel/plugin-proposal-object-rest-spread": {
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.1.tgz",
+ "integrity": "sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4",
+ "@babel/plugin-syntax-object-rest-spread": "^7.8.0",
+ "@babel/plugin-transform-parameters": "^7.12.1"
+ }
+ },
+ "@babel/plugin-syntax-jsx": {
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.1.tgz",
+ "integrity": "sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4"
+ }
+ },
+ "bail": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/bail/-/bail-1.0.5.tgz",
+ "integrity": "sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==",
+ "dev": true
+ },
+ "ccount": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/ccount/-/ccount-1.1.0.tgz",
+ "integrity": "sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==",
+ "dev": true
+ },
+ "is-plain-obj": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz",
+ "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==",
+ "dev": true
+ },
+ "remark-parse": {
+ "version": "8.0.3",
+ "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-8.0.3.tgz",
+ "integrity": "sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q==",
+ "dev": true,
+ "requires": {
+ "ccount": "^1.0.0",
+ "collapse-white-space": "^1.0.2",
+ "is-alphabetical": "^1.0.0",
+ "is-decimal": "^1.0.0",
+ "is-whitespace-character": "^1.0.0",
+ "is-word-character": "^1.0.0",
+ "markdown-escapes": "^1.0.0",
+ "parse-entities": "^2.0.0",
+ "repeat-string": "^1.5.4",
+ "state-toggle": "^1.0.0",
+ "trim": "0.0.1",
+ "trim-trailing-lines": "^1.0.0",
+ "unherit": "^1.0.4",
+ "unist-util-remove-position": "^2.0.0",
+ "vfile-location": "^3.0.0",
+ "xtend": "^4.0.1"
+ }
+ },
+ "semver": {
+ "version": "5.7.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
+ "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
+ "dev": true
+ },
+ "trough": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/trough/-/trough-1.0.5.tgz",
+ "integrity": "sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==",
+ "dev": true
+ },
+ "unified": {
+ "version": "9.2.0",
+ "resolved": "https://registry.npmjs.org/unified/-/unified-9.2.0.tgz",
+ "integrity": "sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==",
+ "dev": true,
+ "requires": {
+ "bail": "^1.0.0",
+ "extend": "^3.0.0",
+ "is-buffer": "^2.0.0",
+ "is-plain-obj": "^2.0.0",
+ "trough": "^1.0.0",
+ "vfile": "^4.0.0"
+ }
+ }
+ }
+ },
+ "remark-parse": {
+ "version": "10.0.1",
+ "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-10.0.1.tgz",
+ "integrity": "sha512-1fUyHr2jLsVOkhbvPRBJ5zTKZZyD6yZzYaWCS6BPBdQ8vEMBCH+9zNCDA6tET/zHCi/jLqjCWtlJZUPk+DbnFw==",
+ "dev": true,
+ "requires": {
+ "@types/mdast": "^3.0.0",
+ "mdast-util-from-markdown": "^1.0.0",
+ "unified": "^10.0.0"
+ }
+ },
+ "remark-slug": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/remark-slug/-/remark-slug-6.1.0.tgz",
+ "integrity": "sha512-oGCxDF9deA8phWvxFuyr3oSJsdyUAxMFbA0mZ7Y1Sas+emILtO+e5WutF9564gDsEN4IXaQXm5pFo6MLH+YmwQ==",
+ "dev": true,
+ "requires": {
+ "github-slugger": "^1.0.0",
+ "mdast-util-to-string": "^1.0.0",
+ "unist-util-visit": "^2.0.0"
+ },
+ "dependencies": {
+ "mdast-util-to-string": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-1.1.0.tgz",
+ "integrity": "sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==",
+ "dev": true
+ },
+ "unist-util-visit": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz",
+ "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==",
+ "dev": true,
+ "requires": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0",
+ "unist-util-visit-parents": "^3.0.0"
+ }
+ },
+ "unist-util-visit-parents": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz",
+ "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==",
+ "dev": true,
+ "requires": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0"
+ }
+ }
+ }
+ },
+ "remark-squeeze-paragraphs": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/remark-squeeze-paragraphs/-/remark-squeeze-paragraphs-4.0.0.tgz",
+ "integrity": "sha512-8qRqmL9F4nuLPIgl92XUuxI3pFxize+F1H0e/W3llTk0UsjJaj01+RrirkMw7P21RKe4X6goQhYRSvNWX+70Rw==",
+ "dev": true,
+ "requires": {
+ "mdast-squeeze-paragraphs": "^4.0.0"
+ }
+ },
+ "remove-trailing-separator": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz",
+ "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=",
+ "dev": true
+ },
+ "renderkid": {
+ "version": "2.0.7",
+ "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-2.0.7.tgz",
+ "integrity": "sha512-oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ==",
+ "dev": true,
+ "requires": {
+ "css-select": "^4.1.3",
+ "dom-converter": "^0.2.0",
+ "htmlparser2": "^6.1.0",
+ "lodash": "^4.17.21",
+ "strip-ansi": "^3.0.1"
+ },
+ "dependencies": {
+ "ansi-regex": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
+ "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=",
+ "dev": true
+ },
+ "strip-ansi": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+ "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+ "dev": true,
+ "requires": {
+ "ansi-regex": "^2.0.0"
+ }
+ }
+ }
+ },
+ "repeat-element": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz",
+ "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==",
+ "dev": true
+ },
+ "repeat-string": {
+ "version": "1.6.1",
+ "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz",
+ "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=",
+ "dev": true
+ },
+ "require-directory": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
+ "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=",
+ "dev": true
+ },
+ "resolve": {
+ "version": "1.21.0",
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.21.0.tgz",
+ "integrity": "sha512-3wCbTpk5WJlyE4mSOtDLhqQmGFi0/TD9VPwmiolnk8U0wRgMEktqCXd3vy5buTO3tljvalNvKrjHEfrd2WpEKA==",
+ "dev": true,
+ "requires": {
+ "is-core-module": "^2.8.0",
+ "path-parse": "^1.0.7",
+ "supports-preserve-symlinks-flag": "^1.0.0"
+ }
+ },
+ "resolve-cwd": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz",
+ "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==",
+ "dev": true,
+ "requires": {
+ "resolve-from": "^5.0.0"
+ }
+ },
+ "resolve-from": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
+ "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
+ "dev": true
+ },
+ "resolve-url": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz",
+ "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=",
+ "dev": true
+ },
+ "resolve.exports": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.0.tgz",
+ "integrity": "sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==",
+ "dev": true
+ },
+ "ret": {
+ "version": "0.1.15",
+ "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz",
+ "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==",
+ "dev": true
+ },
+ "reusify": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
+ "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
+ "dev": true
+ },
+ "rimraf": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
+ "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
+ "dev": true,
+ "requires": {
+ "glob": "^7.1.3"
+ }
+ },
+ "ripemd160": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz",
+ "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==",
+ "dev": true,
+ "requires": {
+ "hash-base": "^3.0.0",
+ "inherits": "^2.0.1"
+ }
+ },
+ "rollup": {
+ "version": "2.63.0",
+ "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.63.0.tgz",
+ "integrity": "sha512-nps0idjmD+NXl6OREfyYXMn/dar3WGcyKn+KBzPdaLecub3x/LrId0wUcthcr8oZUAcZAR8NKcfGGFlNgGL1kQ==",
+ "dev": true,
+ "requires": {
+ "fsevents": "~2.3.2"
+ }
+ },
+ "rsvp": {
+ "version": "4.8.5",
+ "resolved": "https://registry.npmjs.org/rsvp/-/rsvp-4.8.5.tgz",
+ "integrity": "sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==",
+ "dev": true
+ },
+ "run-parallel": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
+ "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
+ "dev": true,
+ "requires": {
+ "queue-microtask": "^1.2.2"
+ }
+ },
+ "run-queue": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz",
+ "integrity": "sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=",
+ "dev": true,
+ "requires": {
+ "aproba": "^1.1.1"
+ },
+ "dependencies": {
+ "aproba": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz",
+ "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==",
+ "dev": true
+ }
+ }
+ },
+ "sade": {
+ "version": "1.8.1",
+ "resolved": "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz",
+ "integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==",
+ "dev": true,
+ "requires": {
+ "mri": "^1.1.0"
+ }
+ },
+ "safe-buffer": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
+ "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
+ },
+ "safe-regex": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz",
+ "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=",
+ "dev": true,
+ "requires": {
+ "ret": "~0.1.10"
+ }
+ },
+ "safer-buffer": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
+ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
+ "dev": true
+ },
+ "sane": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/sane/-/sane-4.1.0.tgz",
+ "integrity": "sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==",
+ "dev": true,
+ "requires": {
+ "@cnakazawa/watch": "^1.0.3",
+ "anymatch": "^2.0.0",
+ "capture-exit": "^2.0.0",
+ "exec-sh": "^0.3.2",
+ "execa": "^1.0.0",
+ "fb-watchman": "^2.0.0",
+ "micromatch": "^3.1.4",
+ "minimist": "^1.1.1",
+ "walker": "~1.0.5"
+ },
+ "dependencies": {
+ "anymatch": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz",
+ "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==",
+ "dev": true,
+ "requires": {
+ "micromatch": "^3.1.4",
+ "normalize-path": "^2.1.1"
+ }
+ },
+ "braces": {
+ "version": "2.3.2",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
+ "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==",
+ "dev": true,
+ "requires": {
+ "arr-flatten": "^1.1.0",
+ "array-unique": "^0.3.2",
+ "extend-shallow": "^2.0.1",
+ "fill-range": "^4.0.0",
+ "isobject": "^3.0.1",
+ "repeat-element": "^1.1.2",
+ "snapdragon": "^0.8.1",
+ "snapdragon-node": "^2.0.1",
+ "split-string": "^3.0.2",
+ "to-regex": "^3.0.1"
+ },
+ "dependencies": {
+ "extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+ "dev": true,
+ "requires": {
+ "is-extendable": "^0.1.0"
+ }
+ }
+ }
+ },
+ "cross-spawn": {
+ "version": "6.0.5",
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz",
+ "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==",
+ "dev": true,
+ "requires": {
+ "nice-try": "^1.0.4",
+ "path-key": "^2.0.1",
+ "semver": "^5.5.0",
+ "shebang-command": "^1.2.0",
+ "which": "^1.2.9"
+ }
+ },
+ "execa": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz",
+ "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==",
+ "dev": true,
+ "requires": {
+ "cross-spawn": "^6.0.0",
+ "get-stream": "^4.0.0",
+ "is-stream": "^1.1.0",
+ "npm-run-path": "^2.0.0",
+ "p-finally": "^1.0.0",
+ "signal-exit": "^3.0.0",
+ "strip-eof": "^1.0.0"
+ }
+ },
+ "fill-range": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz",
+ "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=",
+ "dev": true,
+ "requires": {
+ "extend-shallow": "^2.0.1",
+ "is-number": "^3.0.0",
+ "repeat-string": "^1.6.1",
+ "to-regex-range": "^2.1.0"
+ },
+ "dependencies": {
+ "extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+ "dev": true,
+ "requires": {
+ "is-extendable": "^0.1.0"
+ }
+ }
+ }
+ },
+ "get-stream": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz",
+ "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==",
+ "dev": true,
+ "requires": {
+ "pump": "^3.0.0"
+ }
+ },
+ "is-buffer": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
+ "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==",
+ "dev": true
+ },
+ "is-extendable": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+ "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
+ "dev": true
+ },
+ "is-number": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz",
+ "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=",
+ "dev": true,
+ "requires": {
+ "kind-of": "^3.0.2"
+ },
+ "dependencies": {
+ "kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "requires": {
+ "is-buffer": "^1.1.5"
+ }
+ }
+ }
+ },
+ "is-stream": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz",
+ "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=",
+ "dev": true
+ },
+ "micromatch": {
+ "version": "3.1.10",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
+ "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
+ "dev": true,
+ "requires": {
+ "arr-diff": "^4.0.0",
+ "array-unique": "^0.3.2",
+ "braces": "^2.3.1",
+ "define-property": "^2.0.2",
+ "extend-shallow": "^3.0.2",
+ "extglob": "^2.0.4",
+ "fragment-cache": "^0.2.1",
+ "kind-of": "^6.0.2",
+ "nanomatch": "^1.2.9",
+ "object.pick": "^1.3.0",
+ "regex-not": "^1.0.0",
+ "snapdragon": "^0.8.1",
+ "to-regex": "^3.0.2"
+ }
+ },
+ "normalize-path": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz",
+ "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=",
+ "dev": true,
+ "requires": {
+ "remove-trailing-separator": "^1.0.1"
+ }
+ },
+ "npm-run-path": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz",
+ "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=",
+ "dev": true,
+ "requires": {
+ "path-key": "^2.0.0"
+ }
+ },
+ "path-key": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz",
+ "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=",
+ "dev": true
+ },
+ "semver": {
+ "version": "5.7.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
+ "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
+ "dev": true
+ },
+ "shebang-command": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz",
+ "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=",
+ "dev": true,
+ "requires": {
+ "shebang-regex": "^1.0.0"
+ }
+ },
+ "shebang-regex": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz",
+ "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=",
+ "dev": true
+ },
+ "to-regex-range": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz",
+ "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=",
+ "dev": true,
+ "requires": {
+ "is-number": "^3.0.0",
+ "repeat-string": "^1.6.1"
+ }
+ },
+ "which": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
+ "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
+ "dev": true,
+ "requires": {
+ "isexe": "^2.0.0"
+ }
+ }
+ }
+ },
+ "sax": {
+ "version": "1.2.4",
+ "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz",
+ "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw=="
+ },
+ "saxes": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz",
+ "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==",
+ "dev": true,
+ "requires": {
+ "xmlchars": "^2.2.0"
+ }
+ },
+ "scheduler": {
+ "version": "0.20.2",
+ "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.20.2.tgz",
+ "integrity": "sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==",
+ "dev": true,
+ "requires": {
+ "loose-envify": "^1.1.0",
+ "object-assign": "^4.1.1"
+ }
+ },
+ "schema-utils": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz",
+ "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==",
+ "dev": true,
+ "requires": {
+ "@types/json-schema": "^7.0.8",
+ "ajv": "^6.12.5",
+ "ajv-keywords": "^3.5.2"
+ }
+ },
+ "semver": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
+ "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "dev": true
+ },
+ "send": {
+ "version": "0.17.2",
+ "resolved": "https://registry.npmjs.org/send/-/send-0.17.2.tgz",
+ "integrity": "sha512-UJYB6wFSJE3G00nEivR5rgWp8c2xXvJ3OPWPhmuteU0IKj8nKbG3DrjiOmLwpnHGYWAVwA69zmTm++YG0Hmwww==",
+ "dev": true,
+ "requires": {
+ "debug": "2.6.9",
+ "depd": "~1.1.2",
+ "destroy": "~1.0.4",
+ "encodeurl": "~1.0.2",
+ "escape-html": "~1.0.3",
+ "etag": "~1.8.1",
+ "fresh": "0.5.2",
+ "http-errors": "1.8.1",
+ "mime": "1.6.0",
+ "ms": "2.1.3",
+ "on-finished": "~2.3.0",
+ "range-parser": "~1.2.1",
+ "statuses": "~1.5.0"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "dev": true,
+ "requires": {
+ "ms": "2.0.0"
+ },
+ "dependencies": {
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ }
+ }
+ },
+ "ms": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
+ "dev": true
+ }
+ }
+ },
+ "serialize-javascript": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-5.0.1.tgz",
+ "integrity": "sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==",
+ "dev": true,
+ "requires": {
+ "randombytes": "^2.1.0"
+ }
+ },
+ "serve-favicon": {
+ "version": "2.5.0",
+ "resolved": "https://registry.npmjs.org/serve-favicon/-/serve-favicon-2.5.0.tgz",
+ "integrity": "sha1-k10kDN/g9YBTB/3+ln2IlCosvPA=",
+ "dev": true,
+ "requires": {
+ "etag": "~1.8.1",
+ "fresh": "0.5.2",
+ "ms": "2.1.1",
+ "parseurl": "~1.3.2",
+ "safe-buffer": "5.1.1"
+ },
+ "dependencies": {
+ "ms": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz",
+ "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==",
+ "dev": true
+ },
+ "safe-buffer": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz",
+ "integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==",
+ "dev": true
+ }
+ }
+ },
+ "serve-static": {
+ "version": "1.14.2",
+ "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.2.tgz",
+ "integrity": "sha512-+TMNA9AFxUEGuC0z2mevogSnn9MXKb4fa7ngeRMJaaGv8vTwnIEkKi+QGvPt33HSnf8pRS+WGM0EbMtCJLKMBQ==",
+ "dev": true,
+ "requires": {
+ "encodeurl": "~1.0.2",
+ "escape-html": "~1.0.3",
+ "parseurl": "~1.3.3",
+ "send": "0.17.2"
+ }
+ },
+ "set-blocking": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz",
+ "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=",
+ "dev": true
+ },
+ "set-immediate-shim": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz",
+ "integrity": "sha1-SysbJ+uAip+NzEgaWOXlb1mfP2E="
+ },
+ "set-value": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz",
+ "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==",
+ "dev": true,
+ "requires": {
+ "extend-shallow": "^2.0.1",
+ "is-extendable": "^0.1.1",
+ "is-plain-object": "^2.0.3",
+ "split-string": "^3.0.1"
+ },
+ "dependencies": {
+ "extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+ "dev": true,
+ "requires": {
+ "is-extendable": "^0.1.0"
+ }
+ },
+ "is-extendable": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+ "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
+ "dev": true
+ }
+ }
+ },
+ "setimmediate": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz",
+ "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=",
+ "dev": true
+ },
+ "setprototypeof": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
+ "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==",
+ "dev": true
+ },
+ "sha.js": {
+ "version": "2.4.11",
+ "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz",
+ "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==",
+ "dev": true,
+ "requires": {
+ "inherits": "^2.0.1",
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "shallow-clone": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz",
+ "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==",
+ "dev": true,
+ "requires": {
+ "kind-of": "^6.0.2"
+ }
+ },
+ "shallowequal": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz",
+ "integrity": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==",
+ "dev": true
+ },
+ "shebang-command": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
+ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
+ "dev": true,
+ "requires": {
+ "shebang-regex": "^3.0.0"
+ }
+ },
+ "shebang-regex": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
+ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
+ "dev": true
+ },
+ "shell-quote": {
+ "version": "1.7.2",
+ "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.2.tgz",
+ "integrity": "sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==",
+ "dev": true
+ },
+ "side-channel": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz",
+ "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.0",
+ "get-intrinsic": "^1.0.2",
+ "object-inspect": "^1.9.0"
+ }
+ },
+ "signal-exit": {
+ "version": "3.0.6",
+ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.6.tgz",
+ "integrity": "sha512-sDl4qMFpijcGw22U5w63KmD3cZJfBuFlVNbVMKje2keoKML7X2UzWbc4XrmEbDwg0NXJc3yv4/ox7b+JWb57kQ==",
+ "dev": true
+ },
+ "sisteransi": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz",
+ "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==",
+ "dev": true
+ },
+ "slash": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
+ "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
+ "dev": true
+ },
+ "snapdragon": {
+ "version": "0.8.2",
+ "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz",
+ "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==",
+ "dev": true,
+ "requires": {
+ "base": "^0.11.1",
+ "debug": "^2.2.0",
+ "define-property": "^0.2.5",
+ "extend-shallow": "^2.0.1",
+ "map-cache": "^0.2.2",
+ "source-map": "^0.5.6",
+ "source-map-resolve": "^0.5.0",
+ "use": "^3.1.0"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "dev": true,
+ "requires": {
+ "ms": "2.0.0"
+ }
+ },
+ "define-property": {
+ "version": "0.2.5",
+ "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
+ "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
+ "dev": true,
+ "requires": {
+ "is-descriptor": "^0.1.0"
+ }
+ },
+ "extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+ "dev": true,
+ "requires": {
+ "is-extendable": "^0.1.0"
+ }
+ },
+ "is-accessor-descriptor": {
+ "version": "0.1.6",
+ "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz",
+ "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=",
+ "dev": true,
+ "requires": {
+ "kind-of": "^3.0.2"
+ },
+ "dependencies": {
+ "kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "requires": {
+ "is-buffer": "^1.1.5"
+ }
+ }
+ }
+ },
+ "is-buffer": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
+ "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==",
+ "dev": true
+ },
+ "is-data-descriptor": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz",
+ "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=",
+ "dev": true,
+ "requires": {
+ "kind-of": "^3.0.2"
+ },
+ "dependencies": {
+ "kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "requires": {
+ "is-buffer": "^1.1.5"
+ }
+ }
+ }
+ },
+ "is-descriptor": {
+ "version": "0.1.6",
+ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz",
+ "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==",
+ "dev": true,
+ "requires": {
+ "is-accessor-descriptor": "^0.1.6",
+ "is-data-descriptor": "^0.1.4",
+ "kind-of": "^5.0.0"
+ }
+ },
+ "is-extendable": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+ "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
+ "dev": true
+ },
+ "kind-of": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
+ "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==",
+ "dev": true
+ },
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ }
+ }
+ },
+ "snapdragon-node": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz",
+ "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==",
+ "dev": true,
+ "requires": {
+ "define-property": "^1.0.0",
+ "isobject": "^3.0.0",
+ "snapdragon-util": "^3.0.1"
+ },
+ "dependencies": {
+ "define-property": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
+ "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
+ "dev": true,
+ "requires": {
+ "is-descriptor": "^1.0.0"
+ }
+ }
+ }
+ },
+ "snapdragon-util": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz",
+ "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==",
+ "dev": true,
+ "requires": {
+ "kind-of": "^3.2.0"
+ },
+ "dependencies": {
+ "is-buffer": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
+ "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==",
+ "dev": true
+ },
+ "kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "requires": {
+ "is-buffer": "^1.1.5"
+ }
+ }
+ }
+ },
+ "source-list-map": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz",
+ "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==",
+ "dev": true
+ },
+ "source-map": {
+ "version": "0.5.7",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+ "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=",
+ "dev": true
+ },
+ "source-map-resolve": {
+ "version": "0.5.3",
+ "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz",
+ "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==",
+ "dev": true,
+ "requires": {
+ "atob": "^2.1.2",
+ "decode-uri-component": "^0.2.0",
+ "resolve-url": "^0.2.1",
+ "source-map-url": "^0.4.0",
+ "urix": "^0.1.0"
+ }
+ },
+ "source-map-support": {
+ "version": "0.5.21",
+ "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz",
+ "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==",
+ "dev": true,
+ "requires": {
+ "buffer-from": "^1.0.0",
+ "source-map": "^0.6.0"
+ },
+ "dependencies": {
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ }
+ }
+ },
+ "source-map-url": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz",
+ "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==",
+ "dev": true
+ },
+ "space-separated-tokens": {
+ "version": "1.1.5",
+ "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz",
+ "integrity": "sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==",
+ "dev": true
+ },
+ "spdx-correct": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz",
+ "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==",
+ "dev": true,
+ "requires": {
+ "spdx-expression-parse": "^3.0.0",
+ "spdx-license-ids": "^3.0.0"
+ }
+ },
+ "spdx-exceptions": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz",
+ "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==",
+ "dev": true
+ },
+ "spdx-expression-parse": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz",
+ "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==",
+ "dev": true,
+ "requires": {
+ "spdx-exceptions": "^2.1.0",
+ "spdx-license-ids": "^3.0.0"
+ }
+ },
+ "spdx-license-ids": {
+ "version": "3.0.11",
+ "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.11.tgz",
+ "integrity": "sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==",
+ "dev": true
+ },
+ "split-string": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz",
+ "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==",
+ "dev": true,
+ "requires": {
+ "extend-shallow": "^3.0.0"
+ }
+ },
+ "sprintf-js": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
+ "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=",
+ "dev": true
+ },
+ "ssri": {
+ "version": "8.0.1",
+ "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz",
+ "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==",
+ "dev": true,
+ "requires": {
+ "minipass": "^3.1.1"
+ }
+ },
+ "stable": {
+ "version": "0.1.8",
+ "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz",
+ "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==",
+ "dev": true
+ },
+ "stack-utils": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.5.tgz",
+ "integrity": "sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==",
+ "dev": true,
+ "requires": {
+ "escape-string-regexp": "^2.0.0"
+ },
+ "dependencies": {
+ "escape-string-regexp": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz",
+ "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==",
+ "dev": true
+ }
+ }
+ },
+ "stackframe": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.2.0.tgz",
+ "integrity": "sha512-GrdeshiRmS1YLMYgzF16olf2jJ/IzxXY9lhKOskuVziubpTYcYqyOwYeJKzQkwy7uN0fYSsbsC4RQaXf9LCrYA==",
+ "dev": true
+ },
+ "state-toggle": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/state-toggle/-/state-toggle-1.0.3.tgz",
+ "integrity": "sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==",
+ "dev": true
+ },
+ "static-extend": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz",
+ "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=",
+ "dev": true,
+ "requires": {
+ "define-property": "^0.2.5",
+ "object-copy": "^0.1.0"
+ },
+ "dependencies": {
+ "define-property": {
+ "version": "0.2.5",
+ "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
+ "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
+ "dev": true,
+ "requires": {
+ "is-descriptor": "^0.1.0"
+ }
+ },
+ "is-accessor-descriptor": {
+ "version": "0.1.6",
+ "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz",
+ "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=",
+ "dev": true,
+ "requires": {
+ "kind-of": "^3.0.2"
+ },
+ "dependencies": {
+ "kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "requires": {
+ "is-buffer": "^1.1.5"
+ }
+ }
+ }
+ },
+ "is-buffer": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
+ "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==",
+ "dev": true
+ },
+ "is-data-descriptor": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz",
+ "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=",
+ "dev": true,
+ "requires": {
+ "kind-of": "^3.0.2"
+ },
+ "dependencies": {
+ "kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "requires": {
+ "is-buffer": "^1.1.5"
+ }
+ }
+ }
+ },
+ "is-descriptor": {
+ "version": "0.1.6",
+ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz",
+ "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==",
+ "dev": true,
+ "requires": {
+ "is-accessor-descriptor": "^0.1.6",
+ "is-data-descriptor": "^0.1.4",
+ "kind-of": "^5.0.0"
+ }
+ },
+ "kind-of": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
+ "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==",
+ "dev": true
+ }
+ }
+ },
+ "statuses": {
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz",
+ "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=",
+ "dev": true
+ },
+ "store2": {
+ "version": "2.13.1",
+ "resolved": "https://registry.npmjs.org/store2/-/store2-2.13.1.tgz",
+ "integrity": "sha512-iJtHSGmNgAUx0b/MCS6ASGxb//hGrHHRgzvN+K5bvkBTN7A9RTpPSf1WSp+nPGvWCJ1jRnvY7MKnuqfoi3OEqg==",
+ "dev": true
+ },
+ "stream-browserify": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz",
+ "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==",
+ "dev": true,
+ "requires": {
+ "inherits": "~2.0.1",
+ "readable-stream": "^2.0.2"
+ }
+ },
+ "stream-each": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz",
+ "integrity": "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==",
+ "dev": true,
+ "requires": {
+ "end-of-stream": "^1.1.0",
+ "stream-shift": "^1.0.0"
+ }
+ },
+ "stream-http": {
+ "version": "2.8.3",
+ "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz",
+ "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==",
+ "dev": true,
+ "requires": {
+ "builtin-status-codes": "^3.0.0",
+ "inherits": "^2.0.1",
+ "readable-stream": "^2.3.6",
+ "to-arraybuffer": "^1.0.0",
+ "xtend": "^4.0.0"
+ }
+ },
+ "stream-shift": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz",
+ "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==",
+ "dev": true
+ },
+ "string_decoder": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
+ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
+ "requires": {
+ "safe-buffer": "~5.1.0"
+ }
+ },
+ "string-length": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz",
+ "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==",
+ "dev": true,
+ "requires": {
+ "char-regex": "^1.0.2",
+ "strip-ansi": "^6.0.0"
+ }
+ },
+ "string-width": {
+ "version": "4.2.3",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
+ "dev": true,
+ "requires": {
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.1"
+ }
+ },
+ "string.prototype.matchall": {
+ "version": "4.0.6",
+ "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.6.tgz",
+ "integrity": "sha512-6WgDX8HmQqvEd7J+G6VtAahhsQIssiZ8zl7zKh1VDMFyL3hRTJP4FTNA3RbIp2TOQ9AYNDcc7e3fH0Qbup+DBg==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.19.1",
+ "get-intrinsic": "^1.1.1",
+ "has-symbols": "^1.0.2",
+ "internal-slot": "^1.0.3",
+ "regexp.prototype.flags": "^1.3.1",
+ "side-channel": "^1.0.4"
+ }
+ },
+ "string.prototype.padend": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/string.prototype.padend/-/string.prototype.padend-3.1.3.tgz",
+ "integrity": "sha512-jNIIeokznm8SD/TZISQsZKYu7RJyheFNt84DUPrh482GC8RVp2MKqm2O5oBRdGxbDQoXrhhWtPIWQOiy20svUg==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.19.1"
+ }
+ },
+ "string.prototype.padstart": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/string.prototype.padstart/-/string.prototype.padstart-3.1.3.tgz",
+ "integrity": "sha512-NZydyOMtYxpTjGqp0VN5PYUF/tsU15yDMZnUdj16qRUIUiMJkHHSDElYyQFrMu+/WloTpA7MQSiADhBicDfaoA==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.19.1"
+ }
+ },
+ "string.prototype.trimend": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz",
+ "integrity": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.3"
+ }
+ },
+ "string.prototype.trimstart": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz",
+ "integrity": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.3"
+ }
+ },
+ "strip-ansi": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
+ "dev": true,
+ "requires": {
+ "ansi-regex": "^5.0.1"
+ }
+ },
+ "strip-bom": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz",
+ "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==",
+ "dev": true
+ },
+ "strip-eof": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz",
+ "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=",
+ "dev": true
+ },
+ "strip-final-newline": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz",
+ "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==",
+ "dev": true
+ },
+ "strip-indent": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz",
+ "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==",
+ "dev": true,
+ "requires": {
+ "min-indent": "^1.0.0"
+ }
+ },
+ "style-loader": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-1.3.0.tgz",
+ "integrity": "sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==",
+ "dev": true,
+ "requires": {
+ "loader-utils": "^2.0.0",
+ "schema-utils": "^2.7.0"
+ },
+ "dependencies": {
+ "schema-utils": {
+ "version": "2.7.1",
+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz",
+ "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==",
+ "dev": true,
+ "requires": {
+ "@types/json-schema": "^7.0.5",
+ "ajv": "^6.12.4",
+ "ajv-keywords": "^3.5.2"
+ }
+ }
+ }
+ },
+ "style-to-object": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-0.3.0.tgz",
+ "integrity": "sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==",
+ "dev": true,
+ "requires": {
+ "inline-style-parser": "0.1.1"
+ }
+ },
+ "supports-color": {
+ "version": "5.5.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
+ "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^3.0.0"
+ }
+ },
+ "supports-hyperlinks": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz",
+ "integrity": "sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0",
+ "supports-color": "^7.0.0"
+ },
+ "dependencies": {
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "supports-preserve-symlinks-flag": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
+ "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
+ "dev": true
+ },
+ "symbol-tree": {
+ "version": "3.2.4",
+ "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz",
+ "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==",
+ "dev": true
+ },
+ "symbol.prototype.description": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/symbol.prototype.description/-/symbol.prototype.description-1.0.5.tgz",
+ "integrity": "sha512-x738iXRYsrAt9WBhRCVG5BtIC3B7CUkFwbHW2zOvGtwM33s7JjrCDyq8V0zgMYVb5ymsL8+qkzzpANH63CPQaQ==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "get-symbol-description": "^1.0.0",
+ "has-symbols": "^1.0.2",
+ "object.getownpropertydescriptors": "^2.1.2"
+ }
+ },
+ "synchronous-promise": {
+ "version": "2.0.15",
+ "resolved": "https://registry.npmjs.org/synchronous-promise/-/synchronous-promise-2.0.15.tgz",
+ "integrity": "sha512-k8uzYIkIVwmT+TcglpdN50pS2y1BDcUnBPK9iJeGu0Pl1lOI8pD6wtzgw91Pjpe+RxtTncw32tLxs/R0yNL2Mg==",
+ "dev": true
+ },
+ "tapable": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz",
+ "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==",
+ "dev": true
+ },
+ "tar": {
+ "version": "6.1.11",
+ "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.11.tgz",
+ "integrity": "sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==",
+ "dev": true,
+ "requires": {
+ "chownr": "^2.0.0",
+ "fs-minipass": "^2.0.0",
+ "minipass": "^3.0.0",
+ "minizlib": "^2.1.1",
+ "mkdirp": "^1.0.3",
+ "yallist": "^4.0.0"
+ }
+ },
+ "telejson": {
+ "version": "5.3.3",
+ "resolved": "https://registry.npmjs.org/telejson/-/telejson-5.3.3.tgz",
+ "integrity": "sha512-PjqkJZpzEggA9TBpVtJi1LVptP7tYtXB6rEubwlHap76AMjzvOdKX41CxyaW7ahhzDU1aftXnMCx5kAPDZTQBA==",
+ "dev": true,
+ "requires": {
+ "@types/is-function": "^1.0.0",
+ "global": "^4.4.0",
+ "is-function": "^1.0.2",
+ "is-regex": "^1.1.2",
+ "is-symbol": "^1.0.3",
+ "isobject": "^4.0.0",
+ "lodash": "^4.17.21",
+ "memoizerific": "^1.11.3"
+ },
+ "dependencies": {
+ "isobject": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/isobject/-/isobject-4.0.0.tgz",
+ "integrity": "sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==",
+ "dev": true
+ }
+ }
+ },
+ "terminal-link": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz",
+ "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==",
+ "dev": true,
+ "requires": {
+ "ansi-escapes": "^4.2.1",
+ "supports-hyperlinks": "^2.0.0"
+ }
+ },
+ "terser": {
+ "version": "4.8.0",
+ "resolved": "https://registry.npmjs.org/terser/-/terser-4.8.0.tgz",
+ "integrity": "sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==",
+ "dev": true,
+ "requires": {
+ "commander": "^2.20.0",
+ "source-map": "~0.6.1",
+ "source-map-support": "~0.5.12"
+ },
+ "dependencies": {
+ "commander": {
+ "version": "2.20.3",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
+ "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
+ "dev": true
+ },
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ }
+ }
+ },
+ "terser-webpack-plugin": {
+ "version": "4.2.3",
+ "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-4.2.3.tgz",
+ "integrity": "sha512-jTgXh40RnvOrLQNgIkwEKnQ8rmHjHK4u+6UBEi+W+FPmvb+uo+chJXntKe7/3lW5mNysgSWD60KyesnhW8D6MQ==",
+ "dev": true,
+ "requires": {
+ "cacache": "^15.0.5",
+ "find-cache-dir": "^3.3.1",
+ "jest-worker": "^26.5.0",
+ "p-limit": "^3.0.2",
+ "schema-utils": "^3.0.0",
+ "serialize-javascript": "^5.0.1",
+ "source-map": "^0.6.1",
+ "terser": "^5.3.4",
+ "webpack-sources": "^1.4.3"
+ },
+ "dependencies": {
+ "commander": {
+ "version": "2.20.3",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
+ "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
+ "dev": true
+ },
+ "find-cache-dir": {
+ "version": "3.3.2",
+ "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz",
+ "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==",
+ "dev": true,
+ "requires": {
+ "commondir": "^1.0.1",
+ "make-dir": "^3.0.2",
+ "pkg-dir": "^4.1.0"
+ }
+ },
+ "find-up": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
+ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
+ "dev": true,
+ "requires": {
+ "locate-path": "^5.0.0",
+ "path-exists": "^4.0.0"
+ }
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "jest-worker": {
+ "version": "26.6.2",
+ "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz",
+ "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==",
+ "dev": true,
+ "requires": {
+ "@types/node": "*",
+ "merge-stream": "^2.0.0",
+ "supports-color": "^7.0.0"
+ }
+ },
+ "locate-path": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
+ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
+ "dev": true,
+ "requires": {
+ "p-locate": "^4.1.0"
+ }
+ },
+ "make-dir": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
+ "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
+ "dev": true,
+ "requires": {
+ "semver": "^6.0.0"
+ }
+ },
+ "p-locate": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
+ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
+ "dev": true,
+ "requires": {
+ "p-limit": "^2.2.0"
+ },
+ "dependencies": {
+ "p-limit": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
+ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
+ "dev": true,
+ "requires": {
+ "p-try": "^2.0.0"
+ }
+ }
+ }
+ },
+ "pkg-dir": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
+ "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
+ "dev": true,
+ "requires": {
+ "find-up": "^4.0.0"
+ }
+ },
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ },
+ "terser": {
+ "version": "5.10.0",
+ "resolved": "https://registry.npmjs.org/terser/-/terser-5.10.0.tgz",
+ "integrity": "sha512-AMmF99DMfEDiRJfxfY5jj5wNH/bYO09cniSqhfoyxc8sFoYIgkJy86G04UoZU5VjlpnplVu0K6Tx6E9b5+DlHA==",
+ "dev": true,
+ "requires": {
+ "commander": "^2.20.0",
+ "source-map": "~0.7.2",
+ "source-map-support": "~0.5.20"
+ },
+ "dependencies": {
+ "source-map": {
+ "version": "0.7.3",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz",
+ "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==",
+ "dev": true
+ }
+ }
+ }
+ }
+ },
+ "test-exclude": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz",
+ "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==",
+ "dev": true,
+ "requires": {
+ "@istanbuljs/schema": "^0.1.2",
+ "glob": "^7.1.4",
+ "minimatch": "^3.0.4"
+ }
+ },
+ "text-table": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz",
+ "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=",
+ "dev": true
+ },
+ "throat": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/throat/-/throat-6.0.1.tgz",
+ "integrity": "sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w==",
+ "dev": true
+ },
+ "throttle-debounce": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/throttle-debounce/-/throttle-debounce-3.0.1.tgz",
+ "integrity": "sha512-dTEWWNu6JmeVXY0ZYoPuH5cRIwc0MeGbJwah9KUNYSJwommQpCzTySTpEe8Gs1J23aeWEuAobe4Ag7EHVt/LOg==",
+ "dev": true
+ },
+ "through2": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz",
+ "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==",
+ "dev": true,
+ "requires": {
+ "readable-stream": "~2.3.6",
+ "xtend": "~4.0.1"
+ }
+ },
+ "timers-browserify": {
+ "version": "2.0.12",
+ "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz",
+ "integrity": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==",
+ "dev": true,
+ "requires": {
+ "setimmediate": "^1.0.4"
+ }
+ },
+ "tmpl": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz",
+ "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==",
+ "dev": true
+ },
+ "to-arraybuffer": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz",
+ "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=",
+ "dev": true
+ },
+ "to-fast-properties": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz",
+ "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=",
+ "dev": true
+ },
+ "to-object-path": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz",
+ "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=",
+ "dev": true,
+ "requires": {
+ "kind-of": "^3.0.2"
+ },
+ "dependencies": {
+ "is-buffer": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
+ "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==",
+ "dev": true
+ },
+ "kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "requires": {
+ "is-buffer": "^1.1.5"
+ }
+ }
+ }
+ },
+ "to-regex": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz",
+ "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==",
+ "dev": true,
+ "requires": {
+ "define-property": "^2.0.2",
+ "extend-shallow": "^3.0.2",
+ "regex-not": "^1.0.2",
+ "safe-regex": "^1.1.0"
+ }
+ },
+ "to-regex-range": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
+ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
+ "dev": true,
+ "requires": {
+ "is-number": "^7.0.0"
+ }
+ },
+ "toggle-selection": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/toggle-selection/-/toggle-selection-1.0.6.tgz",
+ "integrity": "sha1-bkWxJj8gF/oKzH2J14sVuL932jI=",
+ "dev": true
+ },
+ "toidentifier": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
+ "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
+ "dev": true
+ },
+ "tough-cookie": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.0.0.tgz",
+ "integrity": "sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==",
+ "dev": true,
+ "requires": {
+ "psl": "^1.1.33",
+ "punycode": "^2.1.1",
+ "universalify": "^0.1.2"
+ },
+ "dependencies": {
+ "universalify": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz",
+ "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==",
+ "dev": true
+ }
+ }
+ },
+ "tr46": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz",
+ "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==",
+ "dev": true,
+ "requires": {
+ "punycode": "^2.1.1"
+ }
+ },
+ "trim": {
+ "version": "0.0.1",
+ "resolved": "https://registry.npmjs.org/trim/-/trim-0.0.1.tgz",
+ "integrity": "sha1-WFhUf2spB1fulczMZm+1AITEYN0=",
+ "dev": true
+ },
+ "trim-trailing-lines": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/trim-trailing-lines/-/trim-trailing-lines-1.1.4.tgz",
+ "integrity": "sha512-rjUWSqnfTNrjbB9NQWfPMH/xRK1deHeGsHoVfpxJ++XeYXE0d6B1En37AHfw3jtfTU7dzMzZL2jjpe8Qb5gLIQ==",
+ "dev": true
+ },
+ "trough": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/trough/-/trough-2.0.2.tgz",
+ "integrity": "sha512-FnHq5sTMxC0sk957wHDzRnemFnNBvt/gSY99HzK8F7UP5WAbvP70yX5bd7CjEQkN+TjdxwI7g7lJ6podqrG2/w==",
+ "dev": true
+ },
+ "ts-dedent": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/ts-dedent/-/ts-dedent-2.2.0.tgz",
+ "integrity": "sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==",
+ "dev": true
+ },
+ "ts-pnp": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/ts-pnp/-/ts-pnp-1.2.0.tgz",
+ "integrity": "sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==",
+ "dev": true
+ },
+ "tslib": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz",
+ "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==",
+ "dev": true
+ },
+ "tty-browserify": {
+ "version": "0.0.0",
+ "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz",
+ "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=",
+ "dev": true
+ },
+ "type-check": {
+ "version": "0.3.2",
+ "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz",
+ "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=",
+ "dev": true,
+ "requires": {
+ "prelude-ls": "~1.1.2"
+ }
+ },
+ "type-detect": {
+ "version": "4.0.8",
+ "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz",
+ "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==",
+ "dev": true
+ },
+ "type-fest": {
+ "version": "0.20.2",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
+ "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
+ "dev": true
+ },
+ "type-is": {
+ "version": "1.6.18",
+ "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz",
+ "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==",
+ "dev": true,
+ "requires": {
+ "media-typer": "0.3.0",
+ "mime-types": "~2.1.24"
+ }
+ },
+ "typedarray": {
+ "version": "0.0.6",
+ "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz",
+ "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=",
+ "dev": true
+ },
+ "typedarray-to-buffer": {
+ "version": "3.1.5",
+ "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz",
+ "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==",
+ "dev": true,
+ "requires": {
+ "is-typedarray": "^1.0.0"
+ }
+ },
+ "typescript": {
+ "version": "4.5.4",
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.5.4.tgz",
+ "integrity": "sha512-VgYs2A2QIRuGphtzFV7aQJduJ2gyfTljngLzjpfW9FoYZF6xuw1W0vW9ghCKLfcWrCFxK81CSGRAvS1pn4fIUg==",
+ "dev": true
+ },
+ "uglify-js": {
+ "version": "3.14.5",
+ "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.14.5.tgz",
+ "integrity": "sha512-qZukoSxOG0urUTvjc2ERMTcAy+BiFh3weWAkeurLwjrCba73poHmG3E36XEjd/JGukMzwTL7uCxZiAexj8ppvQ==",
+ "dev": true,
+ "optional": true
+ },
+ "unbox-primitive": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz",
+ "integrity": "sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==",
+ "dev": true,
+ "requires": {
+ "function-bind": "^1.1.1",
+ "has-bigints": "^1.0.1",
+ "has-symbols": "^1.0.2",
+ "which-boxed-primitive": "^1.0.2"
+ }
+ },
+ "unfetch": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/unfetch/-/unfetch-4.2.0.tgz",
+ "integrity": "sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==",
+ "dev": true
+ },
+ "unherit": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/unherit/-/unherit-1.1.3.tgz",
+ "integrity": "sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==",
+ "dev": true,
+ "requires": {
+ "inherits": "^2.0.0",
+ "xtend": "^4.0.0"
+ }
+ },
+ "unicode-canonical-property-names-ecmascript": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz",
+ "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==",
+ "dev": true
+ },
+ "unicode-match-property-ecmascript": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz",
+ "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==",
+ "dev": true,
+ "requires": {
+ "unicode-canonical-property-names-ecmascript": "^2.0.0",
+ "unicode-property-aliases-ecmascript": "^2.0.0"
+ }
+ },
+ "unicode-match-property-value-ecmascript": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz",
+ "integrity": "sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==",
+ "dev": true
+ },
+ "unicode-property-aliases-ecmascript": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz",
+ "integrity": "sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==",
+ "dev": true
+ },
+ "unified": {
+ "version": "10.1.1",
+ "resolved": "https://registry.npmjs.org/unified/-/unified-10.1.1.tgz",
+ "integrity": "sha512-v4ky1+6BN9X3pQrOdkFIPWAaeDsHPE1svRDxq7YpTc2plkIqFMwukfqM+l0ewpP9EfwARlt9pPFAeWYhHm8X9w==",
+ "dev": true,
+ "requires": {
+ "@types/unist": "^2.0.0",
+ "bail": "^2.0.0",
+ "extend": "^3.0.0",
+ "is-buffer": "^2.0.0",
+ "is-plain-obj": "^4.0.0",
+ "trough": "^2.0.0",
+ "vfile": "^5.0.0"
+ },
+ "dependencies": {
+ "vfile": {
+ "version": "5.2.1",
+ "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.2.1.tgz",
+ "integrity": "sha512-vXW5XKbELM6mLj88kmkJ+gjFGZ/2gTmpdqPDjs3y+qbvI5i7md7rba/+pbYEawa7t22W7ynywPV6lUUAS1WiYg==",
+ "dev": true,
+ "requires": {
+ "@types/unist": "^2.0.0",
+ "is-buffer": "^2.0.0",
+ "unist-util-stringify-position": "^3.0.0",
+ "vfile-message": "^3.0.0"
+ }
+ },
+ "vfile-message": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-3.1.0.tgz",
+ "integrity": "sha512-4QJbBk+DkPEhBXq3f260xSaWtjE4gPKOfulzfMFF8ZNwaPZieWsg3iVlcmF04+eebzpcpeXOOFMfrYzJHVYg+g==",
+ "dev": true,
+ "requires": {
+ "@types/unist": "^2.0.0",
+ "unist-util-stringify-position": "^3.0.0"
+ }
+ }
+ }
+ },
+ "union-value": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz",
+ "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==",
+ "dev": true,
+ "requires": {
+ "arr-union": "^3.1.0",
+ "get-value": "^2.0.6",
+ "is-extendable": "^0.1.1",
+ "set-value": "^2.0.1"
+ },
+ "dependencies": {
+ "is-extendable": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+ "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
+ "dev": true
+ }
+ }
+ },
+ "unique-filename": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz",
+ "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==",
+ "dev": true,
+ "requires": {
+ "unique-slug": "^2.0.0"
+ }
+ },
+ "unique-slug": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz",
+ "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==",
+ "dev": true,
+ "requires": {
+ "imurmurhash": "^0.1.4"
+ }
+ },
+ "unist-builder": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/unist-builder/-/unist-builder-2.0.3.tgz",
+ "integrity": "sha512-f98yt5pnlMWlzP539tPc4grGMsFaQQlP/vM396b00jngsiINumNmsY8rkXjfoi1c6QaM8nQ3vaGDuoKWbe/1Uw==",
+ "dev": true
+ },
+ "unist-util-generated": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/unist-util-generated/-/unist-util-generated-1.1.6.tgz",
+ "integrity": "sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg==",
+ "dev": true
+ },
+ "unist-util-is": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz",
+ "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==",
+ "dev": true
+ },
+ "unist-util-position": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-3.1.0.tgz",
+ "integrity": "sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA==",
+ "dev": true
+ },
+ "unist-util-remove": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/unist-util-remove/-/unist-util-remove-2.1.0.tgz",
+ "integrity": "sha512-J8NYPyBm4baYLdCbjmf1bhPu45Cr1MWTm77qd9istEkzWpnN6O9tMsEbB2JhNnBCqGENRqEWomQ+He6au0B27Q==",
+ "dev": true,
+ "requires": {
+ "unist-util-is": "^4.0.0"
+ }
+ },
+ "unist-util-remove-position": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-2.0.1.tgz",
+ "integrity": "sha512-fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA==",
+ "dev": true,
+ "requires": {
+ "unist-util-visit": "^2.0.0"
+ },
+ "dependencies": {
+ "unist-util-visit": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz",
+ "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==",
+ "dev": true,
+ "requires": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0",
+ "unist-util-visit-parents": "^3.0.0"
+ }
+ },
+ "unist-util-visit-parents": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz",
+ "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==",
+ "dev": true,
+ "requires": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0"
+ }
+ }
+ }
+ },
+ "unist-util-stringify-position": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.0.tgz",
+ "integrity": "sha512-SdfAl8fsDclywZpfMDTVDxA2V7LjtRDTOFd44wUJamgl6OlVngsqWjxvermMYf60elWHbxhuRCZml7AnuXCaSA==",
+ "dev": true,
+ "requires": {
+ "@types/unist": "^2.0.0"
+ }
+ },
+ "unist-util-visit": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.0.tgz",
+ "integrity": "sha512-n7lyhFKJfVZ9MnKtqbsqkQEk5P1KShj0+//V7mAcoI6bpbUjh3C/OG8HVD+pBihfh6Ovl01m8dkcv9HNqYajmQ==",
+ "requires": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^5.0.0",
+ "unist-util-visit-parents": "^5.0.0"
+ },
+ "dependencies": {
+ "unist-util-is": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.1.1.tgz",
+ "integrity": "sha512-F5CZ68eYzuSvJjGhCLPL3cYx45IxkqXSetCcRgUXtbcm50X2L9oOWQlfUfDdAf+6Pd27YDblBfdtmsThXmwpbQ=="
+ },
+ "unist-util-visit-parents": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.0.tgz",
+ "integrity": "sha512-y+QVLcY5eR/YVpqDsLf/xh9R3Q2Y4HxkZTp7ViLDU6WtJCEcPmRzW1gpdWDCDIqIlhuPDXOgttqPlykrHYDekg==",
+ "requires": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^5.0.0"
+ }
+ }
+ }
+ },
+ "unist-util-visit-parents": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-4.1.1.tgz",
+ "integrity": "sha512-1xAFJXAKpnnJl8G7K5KgU7FY55y3GcLIXqkzUj5QF/QVP7biUm0K0O2oqVkYsdjzJKifYeWn9+o6piAK2hGSHw==",
+ "dev": true,
+ "requires": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^5.0.0"
+ },
+ "dependencies": {
+ "unist-util-is": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.1.1.tgz",
+ "integrity": "sha512-F5CZ68eYzuSvJjGhCLPL3cYx45IxkqXSetCcRgUXtbcm50X2L9oOWQlfUfDdAf+6Pd27YDblBfdtmsThXmwpbQ==",
+ "dev": true
+ }
+ }
+ },
+ "universalify": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+ "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+ "dev": true
+ },
+ "unpipe": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
+ "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=",
+ "dev": true
+ },
+ "unset-value": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz",
+ "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=",
+ "dev": true,
+ "requires": {
+ "has-value": "^0.3.1",
+ "isobject": "^3.0.0"
+ },
+ "dependencies": {
+ "has-value": {
+ "version": "0.3.1",
+ "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz",
+ "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=",
+ "dev": true,
+ "requires": {
+ "get-value": "^2.0.3",
+ "has-values": "^0.1.4",
+ "isobject": "^2.0.0"
+ },
+ "dependencies": {
+ "isobject": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz",
+ "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=",
+ "dev": true,
+ "requires": {
+ "isarray": "1.0.0"
+ }
+ }
+ }
+ },
+ "has-values": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz",
+ "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=",
+ "dev": true
+ },
+ "isarray": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
+ "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
+ "dev": true
+ }
+ }
+ },
+ "upath": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz",
+ "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==",
+ "dev": true,
+ "optional": true
+ },
+ "uri-js": {
+ "version": "4.4.1",
+ "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
+ "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
+ "dev": true,
+ "requires": {
+ "punycode": "^2.1.0"
+ }
+ },
+ "urix": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz",
+ "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=",
+ "dev": true
+ },
+ "url": {
+ "version": "0.11.0",
+ "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz",
+ "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=",
+ "dev": true,
+ "requires": {
+ "punycode": "1.3.2",
+ "querystring": "0.2.0"
+ },
+ "dependencies": {
+ "punycode": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz",
+ "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=",
+ "dev": true
+ }
+ }
+ },
+ "url-loader": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/url-loader/-/url-loader-4.1.1.tgz",
+ "integrity": "sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==",
+ "dev": true,
+ "requires": {
+ "loader-utils": "^2.0.0",
+ "mime-types": "^2.1.27",
+ "schema-utils": "^3.0.0"
+ }
+ },
+ "use": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz",
+ "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==",
+ "dev": true
+ },
+ "use-composed-ref": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/use-composed-ref/-/use-composed-ref-1.2.1.tgz",
+ "integrity": "sha512-6+X1FLlIcjvFMAeAD/hcxDT8tmyrWnbSPMU0EnxQuDLIxokuFzWliXBiYZuGIx+mrAMLBw0WFfCkaPw8ebzAhw==",
+ "dev": true
+ },
+ "use-isomorphic-layout-effect": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.1.1.tgz",
+ "integrity": "sha512-L7Evj8FGcwo/wpbv/qvSfrkHFtOpCzvM5yl2KVyDJoylVuSvzphiiasmjgQPttIGBAy2WKiBNR98q8w7PiNgKQ==",
+ "dev": true
+ },
+ "use-latest": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/use-latest/-/use-latest-1.2.0.tgz",
+ "integrity": "sha512-d2TEuG6nSLKQLAfW3By8mKr8HurOlTkul0sOpxbClIv4SQ4iOd7BYr7VIzdbktUCnv7dua/60xzd8igMU6jmyw==",
+ "dev": true,
+ "requires": {
+ "use-isomorphic-layout-effect": "^1.0.0"
+ }
+ },
+ "util": {
+ "version": "0.11.1",
+ "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz",
+ "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==",
+ "dev": true,
+ "requires": {
+ "inherits": "2.0.3"
+ },
+ "dependencies": {
+ "inherits": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
+ "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=",
+ "dev": true
+ }
+ }
+ },
+ "util-deprecate": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
+ "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8="
+ },
+ "util.promisify": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz",
+ "integrity": "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==",
+ "dev": true,
+ "requires": {
+ "define-properties": "^1.1.2",
+ "object.getownpropertydescriptors": "^2.0.3"
+ }
+ },
+ "utila": {
+ "version": "0.4.0",
+ "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz",
+ "integrity": "sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=",
+ "dev": true
+ },
+ "utils-merge": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
+ "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=",
+ "dev": true
+ },
+ "uuid": {
+ "version": "3.4.0",
+ "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
+ "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==",
+ "dev": true
+ },
+ "uuid-browser": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/uuid-browser/-/uuid-browser-3.1.0.tgz",
+ "integrity": "sha1-DwWkCu90+eWVHiDvv0SxGHHlZBA=",
+ "dev": true
+ },
+ "uvu": {
+ "version": "0.5.3",
+ "resolved": "https://registry.npmjs.org/uvu/-/uvu-0.5.3.tgz",
+ "integrity": "sha512-brFwqA3FXzilmtnIyJ+CxdkInkY/i4ErvP7uV0DnUVxQcQ55reuHphorpF+tZoVHK2MniZ/VJzI7zJQoc9T9Yw==",
+ "dev": true,
+ "requires": {
+ "dequal": "^2.0.0",
+ "diff": "^5.0.0",
+ "kleur": "^4.0.3",
+ "sade": "^1.7.3"
+ },
+ "dependencies": {
+ "kleur": {
+ "version": "4.1.4",
+ "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.4.tgz",
+ "integrity": "sha512-8QADVssbrFjivHWQU7KkMgptGTl6WAcSdlbBPY4uNF+mWr6DGcKrvY2w4FQJoXch7+fKMjj0dRrL75vk3k23OA==",
+ "dev": true
+ }
+ }
+ },
+ "v8-to-istanbul": {
+ "version": "8.1.0",
+ "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.0.tgz",
+ "integrity": "sha512-/PRhfd8aTNp9Ggr62HPzXg2XasNFGy5PBt0Rp04du7/8GNNSgxFL6WBTkgMKSL9bFjH+8kKEG3f37FmxiTqUUA==",
+ "dev": true,
+ "requires": {
+ "@types/istanbul-lib-coverage": "^2.0.1",
+ "convert-source-map": "^1.6.0",
+ "source-map": "^0.7.3"
+ },
+ "dependencies": {
+ "source-map": {
+ "version": "0.7.3",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz",
+ "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==",
+ "dev": true
+ }
+ }
+ },
+ "validate-npm-package-license": {
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz",
+ "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==",
+ "dev": true,
+ "requires": {
+ "spdx-correct": "^3.0.0",
+ "spdx-expression-parse": "^3.0.0"
+ }
+ },
+ "vary": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
+ "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=",
+ "dev": true
+ },
+ "vfile": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/vfile/-/vfile-4.2.1.tgz",
+ "integrity": "sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==",
+ "dev": true,
+ "requires": {
+ "@types/unist": "^2.0.0",
+ "is-buffer": "^2.0.0",
+ "unist-util-stringify-position": "^2.0.0",
+ "vfile-message": "^2.0.0"
+ },
+ "dependencies": {
+ "unist-util-stringify-position": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz",
+ "integrity": "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==",
+ "dev": true,
+ "requires": {
+ "@types/unist": "^2.0.2"
+ }
+ }
+ }
+ },
+ "vfile-location": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-3.2.0.tgz",
+ "integrity": "sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA==",
+ "dev": true
+ },
+ "vfile-message": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-2.0.4.tgz",
+ "integrity": "sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==",
+ "dev": true,
+ "requires": {
+ "@types/unist": "^2.0.0",
+ "unist-util-stringify-position": "^2.0.0"
+ },
+ "dependencies": {
+ "unist-util-stringify-position": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz",
+ "integrity": "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==",
+ "dev": true,
+ "requires": {
+ "@types/unist": "^2.0.2"
+ }
+ }
+ }
+ },
+ "vm-browserify": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz",
+ "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==",
+ "dev": true
+ },
+ "w3c-hr-time": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz",
+ "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==",
+ "dev": true,
+ "requires": {
+ "browser-process-hrtime": "^1.0.0"
+ }
+ },
+ "w3c-xmlserializer": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz",
+ "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==",
+ "dev": true,
+ "requires": {
+ "xml-name-validator": "^3.0.0"
+ }
+ },
+ "walker": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz",
+ "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==",
+ "dev": true,
+ "requires": {
+ "makeerror": "1.0.12"
+ }
+ },
+ "warning": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz",
+ "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==",
+ "dev": true,
+ "requires": {
+ "loose-envify": "^1.0.0"
+ }
+ },
+ "watchpack": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.3.1.tgz",
+ "integrity": "sha512-x0t0JuydIo8qCNctdDrn1OzH/qDzk2+rdCOC3YzumZ42fiMqmQ7T3xQurykYMhYfHaPHTp4ZxAx2NfUo1K6QaA==",
+ "dev": true,
+ "requires": {
+ "glob-to-regexp": "^0.4.1",
+ "graceful-fs": "^4.1.2"
+ }
+ },
+ "watchpack-chokidar2": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz",
+ "integrity": "sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "chokidar": "^2.1.8"
+ },
+ "dependencies": {
+ "anymatch": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz",
+ "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "micromatch": "^3.1.4",
+ "normalize-path": "^2.1.1"
+ },
+ "dependencies": {
+ "normalize-path": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz",
+ "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "remove-trailing-separator": "^1.0.1"
+ }
+ }
+ }
+ },
+ "binary-extensions": {
+ "version": "1.13.1",
+ "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz",
+ "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==",
+ "dev": true,
+ "optional": true
+ },
+ "braces": {
+ "version": "2.3.2",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
+ "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "arr-flatten": "^1.1.0",
+ "array-unique": "^0.3.2",
+ "extend-shallow": "^2.0.1",
+ "fill-range": "^4.0.0",
+ "isobject": "^3.0.1",
+ "repeat-element": "^1.1.2",
+ "snapdragon": "^0.8.1",
+ "snapdragon-node": "^2.0.1",
+ "split-string": "^3.0.2",
+ "to-regex": "^3.0.1"
+ },
+ "dependencies": {
+ "extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "is-extendable": "^0.1.0"
+ }
+ }
+ }
+ },
+ "chokidar": {
+ "version": "2.1.8",
+ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz",
+ "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "anymatch": "^2.0.0",
+ "async-each": "^1.0.1",
+ "braces": "^2.3.2",
+ "fsevents": "^1.2.7",
+ "glob-parent": "^3.1.0",
+ "inherits": "^2.0.3",
+ "is-binary-path": "^1.0.0",
+ "is-glob": "^4.0.0",
+ "normalize-path": "^3.0.0",
+ "path-is-absolute": "^1.0.0",
+ "readdirp": "^2.2.1",
+ "upath": "^1.1.1"
+ }
+ },
+ "fill-range": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz",
+ "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "extend-shallow": "^2.0.1",
+ "is-number": "^3.0.0",
+ "repeat-string": "^1.6.1",
+ "to-regex-range": "^2.1.0"
+ },
+ "dependencies": {
+ "extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "is-extendable": "^0.1.0"
+ }
+ }
+ }
+ },
+ "fsevents": {
+ "version": "1.2.13",
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz",
+ "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "bindings": "^1.5.0",
+ "nan": "^2.12.1"
+ }
+ },
+ "glob-parent": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz",
+ "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "is-glob": "^3.1.0",
+ "path-dirname": "^1.0.0"
+ },
+ "dependencies": {
+ "is-glob": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz",
+ "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "is-extglob": "^2.1.0"
+ }
+ }
+ }
+ },
+ "is-binary-path": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz",
+ "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "binary-extensions": "^1.0.0"
+ }
+ },
+ "is-buffer": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
+ "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==",
+ "dev": true,
+ "optional": true
+ },
+ "is-extendable": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+ "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
+ "dev": true,
+ "optional": true
+ },
+ "is-number": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz",
+ "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "kind-of": "^3.0.2"
+ },
+ "dependencies": {
+ "kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "is-buffer": "^1.1.5"
+ }
+ }
+ }
+ },
+ "micromatch": {
+ "version": "3.1.10",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
+ "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "arr-diff": "^4.0.0",
+ "array-unique": "^0.3.2",
+ "braces": "^2.3.1",
+ "define-property": "^2.0.2",
+ "extend-shallow": "^3.0.2",
+ "extglob": "^2.0.4",
+ "fragment-cache": "^0.2.1",
+ "kind-of": "^6.0.2",
+ "nanomatch": "^1.2.9",
+ "object.pick": "^1.3.0",
+ "regex-not": "^1.0.0",
+ "snapdragon": "^0.8.1",
+ "to-regex": "^3.0.2"
+ }
+ },
+ "readdirp": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz",
+ "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "graceful-fs": "^4.1.11",
+ "micromatch": "^3.1.10",
+ "readable-stream": "^2.0.2"
+ }
+ },
+ "to-regex-range": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz",
+ "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "is-number": "^3.0.0",
+ "repeat-string": "^1.6.1"
+ }
+ }
+ }
+ },
+ "web-namespaces": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/web-namespaces/-/web-namespaces-1.1.4.tgz",
+ "integrity": "sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw==",
+ "dev": true
+ },
+ "webidl-conversions": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz",
+ "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==",
+ "dev": true
+ },
+ "webpack": {
+ "version": "4.46.0",
+ "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.46.0.tgz",
+ "integrity": "sha512-6jJuJjg8znb/xRItk7bkT0+Q7AHCYjjFnvKIWQPkNIOyRqoCGvkOs0ipeQzrqz4l5FtN5ZI/ukEHroeX/o1/5Q==",
+ "dev": true,
+ "requires": {
+ "@webassemblyjs/ast": "1.9.0",
+ "@webassemblyjs/helper-module-context": "1.9.0",
+ "@webassemblyjs/wasm-edit": "1.9.0",
+ "@webassemblyjs/wasm-parser": "1.9.0",
+ "acorn": "^6.4.1",
+ "ajv": "^6.10.2",
+ "ajv-keywords": "^3.4.1",
+ "chrome-trace-event": "^1.0.2",
+ "enhanced-resolve": "^4.5.0",
+ "eslint-scope": "^4.0.3",
+ "json-parse-better-errors": "^1.0.2",
+ "loader-runner": "^2.4.0",
+ "loader-utils": "^1.2.3",
+ "memory-fs": "^0.4.1",
+ "micromatch": "^3.1.10",
+ "mkdirp": "^0.5.3",
+ "neo-async": "^2.6.1",
+ "node-libs-browser": "^2.2.1",
+ "schema-utils": "^1.0.0",
+ "tapable": "^1.1.3",
+ "terser-webpack-plugin": "^1.4.3",
+ "watchpack": "^1.7.4",
+ "webpack-sources": "^1.4.1"
+ },
+ "dependencies": {
+ "acorn": {
+ "version": "6.4.2",
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz",
+ "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==",
+ "dev": true
+ },
+ "braces": {
+ "version": "2.3.2",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
+ "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==",
+ "dev": true,
+ "requires": {
+ "arr-flatten": "^1.1.0",
+ "array-unique": "^0.3.2",
+ "extend-shallow": "^2.0.1",
+ "fill-range": "^4.0.0",
+ "isobject": "^3.0.1",
+ "repeat-element": "^1.1.2",
+ "snapdragon": "^0.8.1",
+ "snapdragon-node": "^2.0.1",
+ "split-string": "^3.0.2",
+ "to-regex": "^3.0.1"
+ },
+ "dependencies": {
+ "extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+ "dev": true,
+ "requires": {
+ "is-extendable": "^0.1.0"
+ }
+ }
+ }
+ },
+ "cacache": {
+ "version": "12.0.4",
+ "resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.4.tgz",
+ "integrity": "sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==",
+ "dev": true,
+ "requires": {
+ "bluebird": "^3.5.5",
+ "chownr": "^1.1.1",
+ "figgy-pudding": "^3.5.1",
+ "glob": "^7.1.4",
+ "graceful-fs": "^4.1.15",
+ "infer-owner": "^1.0.3",
+ "lru-cache": "^5.1.1",
+ "mississippi": "^3.0.0",
+ "mkdirp": "^0.5.1",
+ "move-concurrently": "^1.0.1",
+ "promise-inflight": "^1.0.1",
+ "rimraf": "^2.6.3",
+ "ssri": "^6.0.1",
+ "unique-filename": "^1.1.1",
+ "y18n": "^4.0.0"
+ }
+ },
+ "chownr": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz",
+ "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==",
+ "dev": true
+ },
+ "fill-range": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz",
+ "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=",
+ "dev": true,
+ "requires": {
+ "extend-shallow": "^2.0.1",
+ "is-number": "^3.0.0",
+ "repeat-string": "^1.6.1",
+ "to-regex-range": "^2.1.0"
+ },
+ "dependencies": {
+ "extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+ "dev": true,
+ "requires": {
+ "is-extendable": "^0.1.0"
+ }
+ }
+ }
+ },
+ "is-buffer": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
+ "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==",
+ "dev": true
+ },
+ "is-extendable": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+ "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
+ "dev": true
+ },
+ "is-number": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz",
+ "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=",
+ "dev": true,
+ "requires": {
+ "kind-of": "^3.0.2"
+ },
+ "dependencies": {
+ "kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "requires": {
+ "is-buffer": "^1.1.5"
+ }
+ }
+ }
+ },
+ "is-wsl": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz",
+ "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=",
+ "dev": true
+ },
+ "json5": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz",
+ "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==",
+ "dev": true,
+ "requires": {
+ "minimist": "^1.2.0"
+ }
+ },
+ "loader-utils": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz",
+ "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==",
+ "dev": true,
+ "requires": {
+ "big.js": "^5.2.2",
+ "emojis-list": "^3.0.0",
+ "json5": "^1.0.1"
+ }
+ },
+ "lru-cache": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
+ "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
+ "dev": true,
+ "requires": {
+ "yallist": "^3.0.2"
+ }
+ },
+ "micromatch": {
+ "version": "3.1.10",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
+ "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
+ "dev": true,
+ "requires": {
+ "arr-diff": "^4.0.0",
+ "array-unique": "^0.3.2",
+ "braces": "^2.3.1",
+ "define-property": "^2.0.2",
+ "extend-shallow": "^3.0.2",
+ "extglob": "^2.0.4",
+ "fragment-cache": "^0.2.1",
+ "kind-of": "^6.0.2",
+ "nanomatch": "^1.2.9",
+ "object.pick": "^1.3.0",
+ "regex-not": "^1.0.0",
+ "snapdragon": "^0.8.1",
+ "to-regex": "^3.0.2"
+ }
+ },
+ "mkdirp": {
+ "version": "0.5.5",
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz",
+ "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==",
+ "dev": true,
+ "requires": {
+ "minimist": "^1.2.5"
+ }
+ },
+ "rimraf": {
+ "version": "2.7.1",
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz",
+ "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==",
+ "dev": true,
+ "requires": {
+ "glob": "^7.1.3"
+ }
+ },
+ "schema-utils": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz",
+ "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==",
+ "dev": true,
+ "requires": {
+ "ajv": "^6.1.0",
+ "ajv-errors": "^1.0.0",
+ "ajv-keywords": "^3.1.0"
+ }
+ },
+ "serialize-javascript": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz",
+ "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==",
+ "dev": true,
+ "requires": {
+ "randombytes": "^2.1.0"
+ }
+ },
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ },
+ "ssri": {
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.2.tgz",
+ "integrity": "sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q==",
+ "dev": true,
+ "requires": {
+ "figgy-pudding": "^3.5.1"
+ }
+ },
+ "terser-webpack-plugin": {
+ "version": "1.4.5",
+ "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz",
+ "integrity": "sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==",
+ "dev": true,
+ "requires": {
+ "cacache": "^12.0.2",
+ "find-cache-dir": "^2.1.0",
+ "is-wsl": "^1.1.0",
+ "schema-utils": "^1.0.0",
+ "serialize-javascript": "^4.0.0",
+ "source-map": "^0.6.1",
+ "terser": "^4.1.2",
+ "webpack-sources": "^1.4.0",
+ "worker-farm": "^1.7.0"
+ }
+ },
+ "to-regex-range": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz",
+ "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=",
+ "dev": true,
+ "requires": {
+ "is-number": "^3.0.0",
+ "repeat-string": "^1.6.1"
+ }
+ },
+ "watchpack": {
+ "version": "1.7.5",
+ "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.7.5.tgz",
+ "integrity": "sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==",
+ "dev": true,
+ "requires": {
+ "chokidar": "^3.4.1",
+ "graceful-fs": "^4.1.2",
+ "neo-async": "^2.5.0",
+ "watchpack-chokidar2": "^2.0.1"
+ }
+ },
+ "y18n": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz",
+ "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==",
+ "dev": true
+ },
+ "yallist": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
+ "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
+ "dev": true
+ }
+ }
+ },
+ "webpack-dev-middleware": {
+ "version": "3.7.3",
+ "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz",
+ "integrity": "sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==",
+ "dev": true,
+ "requires": {
+ "memory-fs": "^0.4.1",
+ "mime": "^2.4.4",
+ "mkdirp": "^0.5.1",
+ "range-parser": "^1.2.1",
+ "webpack-log": "^2.0.0"
+ },
+ "dependencies": {
+ "mime": {
+ "version": "2.6.0",
+ "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz",
+ "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==",
+ "dev": true
+ },
+ "mkdirp": {
+ "version": "0.5.5",
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz",
+ "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==",
+ "dev": true,
+ "requires": {
+ "minimist": "^1.2.5"
+ }
+ }
+ }
+ },
+ "webpack-filter-warnings-plugin": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/webpack-filter-warnings-plugin/-/webpack-filter-warnings-plugin-1.2.1.tgz",
+ "integrity": "sha512-Ez6ytc9IseDMLPo0qCuNNYzgtUl8NovOqjIq4uAU8LTD4uoa1w1KpZyyzFtLTEMZpkkOkLfL9eN+KGYdk1Qtwg==",
+ "dev": true
+ },
+ "webpack-hot-middleware": {
+ "version": "2.25.1",
+ "resolved": "https://registry.npmjs.org/webpack-hot-middleware/-/webpack-hot-middleware-2.25.1.tgz",
+ "integrity": "sha512-Koh0KyU/RPYwel/khxbsDz9ibDivmUbrRuKSSQvW42KSDdO4w23WI3SkHpSUKHE76LrFnnM/L7JCrpBwu8AXYw==",
+ "dev": true,
+ "requires": {
+ "ansi-html-community": "0.0.8",
+ "html-entities": "^2.1.0",
+ "querystring": "^0.2.0",
+ "strip-ansi": "^6.0.0"
+ }
+ },
+ "webpack-log": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz",
+ "integrity": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==",
+ "dev": true,
+ "requires": {
+ "ansi-colors": "^3.0.0",
+ "uuid": "^3.3.2"
+ }
+ },
+ "webpack-sources": {
+ "version": "1.4.3",
+ "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz",
+ "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==",
+ "dev": true,
+ "requires": {
+ "source-list-map": "^2.0.0",
+ "source-map": "~0.6.1"
+ },
+ "dependencies": {
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ }
+ }
+ },
+ "webpack-virtual-modules": {
+ "version": "0.2.2",
+ "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.2.2.tgz",
+ "integrity": "sha512-kDUmfm3BZrei0y+1NTHJInejzxfhtU8eDj2M7OKb2IWrPFAeO1SOH2KuQ68MSZu9IGEHcxbkKKR1v18FrUSOmA==",
+ "dev": true,
+ "requires": {
+ "debug": "^3.0.0"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "3.2.7",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
+ "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
+ "dev": true,
+ "requires": {
+ "ms": "^2.1.1"
+ }
+ }
+ }
+ },
+ "whatwg-encoding": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz",
+ "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==",
+ "dev": true,
+ "requires": {
+ "iconv-lite": "0.4.24"
+ }
+ },
+ "whatwg-mimetype": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz",
+ "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==",
+ "dev": true
+ },
+ "whatwg-url": {
+ "version": "8.7.0",
+ "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz",
+ "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==",
+ "dev": true,
+ "requires": {
+ "lodash": "^4.7.0",
+ "tr46": "^2.1.0",
+ "webidl-conversions": "^6.1.0"
+ }
+ },
+ "which": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
+ "dev": true,
+ "requires": {
+ "isexe": "^2.0.0"
+ }
+ },
+ "which-boxed-primitive": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz",
+ "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==",
+ "dev": true,
+ "requires": {
+ "is-bigint": "^1.0.1",
+ "is-boolean-object": "^1.1.0",
+ "is-number-object": "^1.0.4",
+ "is-string": "^1.0.5",
+ "is-symbol": "^1.0.3"
+ }
+ },
+ "wide-align": {
+ "version": "1.1.5",
+ "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz",
+ "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==",
+ "dev": true,
+ "requires": {
+ "string-width": "^1.0.2 || 2 || 3 || 4"
+ }
+ },
+ "widest-line": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz",
+ "integrity": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==",
+ "dev": true,
+ "requires": {
+ "string-width": "^4.0.0"
+ }
+ },
+ "word-wrap": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz",
+ "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==",
+ "dev": true
+ },
+ "wordwrap": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz",
+ "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=",
+ "dev": true
+ },
+ "worker-farm": {
+ "version": "1.7.0",
+ "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz",
+ "integrity": "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==",
+ "dev": true,
+ "requires": {
+ "errno": "~0.1.7"
+ }
+ },
+ "worker-rpc": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/worker-rpc/-/worker-rpc-0.1.1.tgz",
+ "integrity": "sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg==",
+ "dev": true,
+ "requires": {
+ "microevent.ts": "~0.1.1"
+ }
+ },
+ "wrap-ansi": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
+ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.0.0",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^2.0.1"
+ }
+ }
+ }
+ },
+ "wrappy": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
+ "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=",
+ "dev": true
+ },
+ "write-file-atomic": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz",
+ "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==",
+ "dev": true,
+ "requires": {
+ "imurmurhash": "^0.1.4",
+ "is-typedarray": "^1.0.0",
+ "signal-exit": "^3.0.2",
+ "typedarray-to-buffer": "^3.1.5"
+ }
+ },
+ "ws": {
+ "version": "7.5.6",
+ "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.6.tgz",
+ "integrity": "sha512-6GLgCqo2cy2A2rjCNFlxQS6ZljG/coZfZXclldI8FB/1G3CCI36Zd8xy2HrFVACi8tfk5XrgLQEk+P0Tnz9UcA==",
+ "dev": true
+ },
+ "xml": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/xml/-/xml-1.0.1.tgz",
+ "integrity": "sha1-eLpyAgApxbyHuKgaPPzXS0ovweU="
+ },
+ "xml-js": {
+ "version": "1.6.11",
+ "resolved": "https://registry.npmjs.org/xml-js/-/xml-js-1.6.11.tgz",
+ "integrity": "sha512-7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g==",
+ "requires": {
+ "sax": "^1.2.4"
+ }
+ },
+ "xml-name-validator": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz",
+ "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==",
+ "dev": true
+ },
+ "xmlchars": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz",
+ "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==",
+ "dev": true
+ },
+ "xtend": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz",
+ "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==",
+ "dev": true
+ },
+ "y18n": {
+ "version": "5.0.8",
+ "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
+ "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
+ "dev": true
+ },
+ "yallist": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
+ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
+ "dev": true
+ },
+ "yaml": {
+ "version": "1.10.2",
+ "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz",
+ "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==",
+ "dev": true
+ },
+ "yargs": {
+ "version": "16.2.0",
+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz",
+ "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==",
+ "dev": true,
+ "requires": {
+ "cliui": "^7.0.2",
+ "escalade": "^3.1.1",
+ "get-caller-file": "^2.0.5",
+ "require-directory": "^2.1.1",
+ "string-width": "^4.2.0",
+ "y18n": "^5.0.5",
+ "yargs-parser": "^20.2.2"
+ }
+ },
+ "yargs-parser": {
+ "version": "20.2.9",
+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz",
+ "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==",
+ "dev": true
+ },
+ "yocto-queue": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
+ "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
+ "dev": true
+ },
+ "zwitch": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-1.0.5.tgz",
+ "integrity": "sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==",
+ "dev": true
+ }
+ }
+}
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..7a82e16
--- /dev/null
+++ b/package.json
@@ -0,0 +1,71 @@
+{
+ "name": "remark-docx",
+ "version": "0.0.0",
+ "description": "remark plugin to transform markdown to docx.",
+ "main": "lib/index.js",
+ "module": "lib/index.mjs",
+ "types": "lib/index.d.ts",
+ "files": [
+ "lib"
+ ],
+ "scripts": {
+ "build": "rollup -c",
+ "test": "jest",
+ "tsc": "tsc -p . --noEmit",
+ "tsc:d": "tsc -p . --outDir lib -d --emitDeclarationOnly",
+ "storybook": "start-storybook -p 6006",
+ "storybook:build": "build-storybook",
+ "prepublishOnly": "rimraf lib && npm run build && npm run tsc:d"
+ },
+ "dependencies": {
+ "docx": "^7.3.0",
+ "unist-util-visit": "^4.1.0"
+ },
+ "devDependencies": {
+ "@babel/core": "7.15.5",
+ "@babel/preset-env": "7.15.6",
+ "@babel/preset-typescript": "7.15.0",
+ "@rollup/plugin-typescript": "8.2.5",
+ "@storybook/addon-essentials": "6.4.9",
+ "@storybook/addon-links": "6.4.9",
+ "@storybook/react": "6.4.9",
+ "@types/jest": "^27.4.0",
+ "@types/mdast": "^3.0.10",
+ "@types/unist": "2.0.6",
+ "babel-jest": "27.4.6",
+ "file-saver": "^2.0.5",
+ "jest": "27.4.7",
+ "react": "17.0.2",
+ "react-dom": "17.0.2",
+ "react-is": "17.0.2",
+ "remark-footnotes": "4.0.1",
+ "remark-frontmatter": "4.0.1",
+ "remark-gfm": "3.0.1",
+ "remark-math": "5.1.1",
+ "remark-parse": "10.0.1",
+ "rimraf": "3.0.2",
+ "rollup": "2.63.0",
+ "tslib": "2.3.1",
+ "typescript": "4.5.4",
+ "unified": "10.1.1"
+ },
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/inokawa/remark-docx.git"
+ },
+ "keywords": [
+ "unist",
+ "remark",
+ "mdast",
+ "markdown",
+ "docx",
+ "word",
+ "office"
+ ],
+ "author": "inokawa (https://github.com/inokawa/)",
+ "license": "MIT",
+ "bugs": {
+ "url": "https://github.com/inokawa/remark-docx/issues"
+ },
+ "homepage": "https://github.com/inokawa/remark-docx#readme"
+}
diff --git a/rollup.config.js b/rollup.config.js
new file mode 100644
index 0000000..1d81ee7
--- /dev/null
+++ b/rollup.config.js
@@ -0,0 +1,18 @@
+import typescript from "@rollup/plugin-typescript";
+import pkg from "./package.json";
+
+export default {
+ input: "src/index.ts",
+ output: [
+ {
+ file: pkg.main,
+ format: "cjs",
+ },
+ {
+ file: pkg.module,
+ format: "es",
+ },
+ ],
+ external: Object.keys(pkg.dependencies),
+ plugins: [typescript()],
+};
diff --git a/src/__snapshots__/index.spec.ts.snap b/src/__snapshots__/index.spec.ts.snap
new file mode 100644
index 0000000..cb29c12
--- /dev/null
+++ b/src/__snapshots__/index.spec.ts.snap
@@ -0,0 +1,81160 @@
+// Jest Snapshot v1, https://goo.gl/fbAQLP
+
+exports[`e2e article.md 1`] = `
+Yo {
+ "appProperties": yi {
+ "root": Array [
+ gi {
+ "root": Object {
+ "vt": "http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes",
+ "xmlns": "http://schemas.openxmlformats.org/officeDocument/2006/extended-properties",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "vt": "xmlns:vt",
+ "xmlns": "xmlns",
+ },
+ },
+ ],
+ "rootKey": "Properties",
+ },
+ "contentTypes": Ti {
+ "root": Array [
+ bi {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/package/2006/content-types",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns",
+ },
+ },
+ _i {
+ "root": Array [
+ vi {
+ "root": Object {
+ "contentType": "image/png",
+ "extension": "png",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "extension": "Extension",
+ },
+ },
+ ],
+ "rootKey": "Default",
+ },
+ _i {
+ "root": Array [
+ vi {
+ "root": Object {
+ "contentType": "image/jpeg",
+ "extension": "jpeg",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "extension": "Extension",
+ },
+ },
+ ],
+ "rootKey": "Default",
+ },
+ _i {
+ "root": Array [
+ vi {
+ "root": Object {
+ "contentType": "image/jpeg",
+ "extension": "jpg",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "extension": "Extension",
+ },
+ },
+ ],
+ "rootKey": "Default",
+ },
+ _i {
+ "root": Array [
+ vi {
+ "root": Object {
+ "contentType": "image/bmp",
+ "extension": "bmp",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "extension": "Extension",
+ },
+ },
+ ],
+ "rootKey": "Default",
+ },
+ _i {
+ "root": Array [
+ vi {
+ "root": Object {
+ "contentType": "image/gif",
+ "extension": "gif",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "extension": "Extension",
+ },
+ },
+ ],
+ "rootKey": "Default",
+ },
+ _i {
+ "root": Array [
+ vi {
+ "root": Object {
+ "contentType": "application/vnd.openxmlformats-package.relationships+xml",
+ "extension": "rels",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "extension": "Extension",
+ },
+ },
+ ],
+ "rootKey": "Default",
+ },
+ _i {
+ "root": Array [
+ vi {
+ "root": Object {
+ "contentType": "application/xml",
+ "extension": "xml",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "extension": "Extension",
+ },
+ },
+ ],
+ "rootKey": "Default",
+ },
+ Ei {
+ "root": Array [
+ xi {
+ "root": Object {
+ "contentType": "application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml",
+ "partName": "/word/document.xml",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "partName": "PartName",
+ },
+ },
+ ],
+ "rootKey": "Override",
+ },
+ Ei {
+ "root": Array [
+ xi {
+ "root": Object {
+ "contentType": "application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml",
+ "partName": "/word/styles.xml",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "partName": "PartName",
+ },
+ },
+ ],
+ "rootKey": "Override",
+ },
+ Ei {
+ "root": Array [
+ xi {
+ "root": Object {
+ "contentType": "application/vnd.openxmlformats-package.core-properties+xml",
+ "partName": "/docProps/core.xml",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "partName": "PartName",
+ },
+ },
+ ],
+ "rootKey": "Override",
+ },
+ Ei {
+ "root": Array [
+ xi {
+ "root": Object {
+ "contentType": "application/vnd.openxmlformats-officedocument.custom-properties+xml",
+ "partName": "/docProps/custom.xml",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "partName": "PartName",
+ },
+ },
+ ],
+ "rootKey": "Override",
+ },
+ Ei {
+ "root": Array [
+ xi {
+ "root": Object {
+ "contentType": "application/vnd.openxmlformats-officedocument.extended-properties+xml",
+ "partName": "/docProps/app.xml",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "partName": "PartName",
+ },
+ },
+ ],
+ "rootKey": "Override",
+ },
+ Ei {
+ "root": Array [
+ xi {
+ "root": Object {
+ "contentType": "application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml",
+ "partName": "/word/numbering.xml",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "partName": "PartName",
+ },
+ },
+ ],
+ "rootKey": "Override",
+ },
+ Ei {
+ "root": Array [
+ xi {
+ "root": Object {
+ "contentType": "application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml",
+ "partName": "/word/footnotes.xml",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "partName": "PartName",
+ },
+ },
+ ],
+ "rootKey": "Override",
+ },
+ Ei {
+ "root": Array [
+ xi {
+ "root": Object {
+ "contentType": "application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml",
+ "partName": "/word/settings.xml",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "partName": "PartName",
+ },
+ },
+ ],
+ "rootKey": "Override",
+ },
+ ],
+ "rootKey": "Types",
+ },
+ "coreProperties": Ai {
+ "root": Array [
+ An {
+ "root": Object {
+ "cp": "http://schemas.openxmlformats.org/package/2006/metadata/core-properties",
+ "dc": "http://purl.org/dc/elements/1.1/",
+ "dcmitype": "http://purl.org/dc/dcmitype/",
+ "dcterms": "http://purl.org/dc/terms/",
+ "xsi": "http://www.w3.org/2001/XMLSchema-instance",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "Ignorable": "mc:Ignorable",
+ "cp": "xmlns:cp",
+ "dc": "xmlns:dc",
+ "dcmitype": "xmlns:dcmitype",
+ "dcterms": "xmlns:dcterms",
+ "m": "xmlns:m",
+ "mc": "xmlns:mc",
+ "o": "xmlns:o",
+ "r": "xmlns:r",
+ "type": "xsi:type",
+ "v": "xmlns:v",
+ "w": "xmlns:w",
+ "w10": "xmlns:w10",
+ "w14": "xmlns:w14",
+ "w15": "xmlns:w15",
+ "wne": "xmlns:wne",
+ "wp": "xmlns:wp",
+ "wp14": "xmlns:wp14",
+ "wpc": "xmlns:wpc",
+ "wpg": "xmlns:wpg",
+ "wpi": "xmlns:wpi",
+ "wps": "xmlns:wps",
+ "xsi": "xmlns:xsi",
+ },
+ },
+ M {
+ "root": Array [
+ "Un-named",
+ ],
+ "rootKey": "dc:creator",
+ },
+ M {
+ "root": Array [
+ "Un-named",
+ ],
+ "rootKey": "cp:lastModifiedBy",
+ },
+ M {
+ "root": Array [
+ "1",
+ ],
+ "rootKey": "cp:revision",
+ },
+ Si {
+ "root": Array [
+ An {
+ "root": Object {
+ "type": "dcterms:W3CDTF",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "Ignorable": "mc:Ignorable",
+ "cp": "xmlns:cp",
+ "dc": "xmlns:dc",
+ "dcmitype": "xmlns:dcmitype",
+ "dcterms": "xmlns:dcterms",
+ "m": "xmlns:m",
+ "mc": "xmlns:mc",
+ "o": "xmlns:o",
+ "r": "xmlns:r",
+ "type": "xsi:type",
+ "v": "xmlns:v",
+ "w": "xmlns:w",
+ "w10": "xmlns:w10",
+ "w14": "xmlns:w14",
+ "w15": "xmlns:w15",
+ "wne": "xmlns:wne",
+ "wp": "xmlns:wp",
+ "wp14": "xmlns:wp14",
+ "wpc": "xmlns:wpc",
+ "wpg": "xmlns:wpg",
+ "wpi": "xmlns:wpi",
+ "wps": "xmlns:wps",
+ "xsi": "xmlns:xsi",
+ },
+ },
+ "2022-01-08T16:22:25.512Z",
+ ],
+ "rootKey": "dcterms:created",
+ },
+ Si {
+ "root": Array [
+ An {
+ "root": Object {
+ "type": "dcterms:W3CDTF",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "Ignorable": "mc:Ignorable",
+ "cp": "xmlns:cp",
+ "dc": "xmlns:dc",
+ "dcmitype": "xmlns:dcmitype",
+ "dcterms": "xmlns:dcterms",
+ "m": "xmlns:m",
+ "mc": "xmlns:mc",
+ "o": "xmlns:o",
+ "r": "xmlns:r",
+ "type": "xsi:type",
+ "v": "xmlns:v",
+ "w": "xmlns:w",
+ "w10": "xmlns:w10",
+ "w14": "xmlns:w14",
+ "w15": "xmlns:w15",
+ "wne": "xmlns:wne",
+ "wp": "xmlns:wp",
+ "wp14": "xmlns:wp14",
+ "wpc": "xmlns:wpc",
+ "wpg": "xmlns:wpg",
+ "wpi": "xmlns:wpi",
+ "wps": "xmlns:wps",
+ "xsi": "xmlns:xsi",
+ },
+ },
+ "2022-01-08T16:22:25.512Z",
+ ],
+ "rootKey": "dcterms:modified",
+ },
+ ],
+ "rootKey": "cp:coreProperties",
+ },
+ "currentRelationshipId": 5,
+ "customProperties": Ci {
+ "nextId": 2,
+ "properties": Array [],
+ "root": Array [
+ Ri {
+ "root": Object {
+ "vt": "http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes",
+ "xmlns": "http://schemas.openxmlformats.org/officeDocument/2006/custom-properties",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "vt": "xmlns:vt",
+ "xmlns": "xmlns",
+ },
+ },
+ ],
+ "rootKey": "Properties",
+ },
+ "documentWrapper": Cn {
+ "document": In {
+ "body": xn {
+ "root": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ undefined,
+ ],
+ "rootKey": "w:pPr",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Ir {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Heading1",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:pStyle",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Ir {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Heading1",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:pStyle",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "heading 1",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Ir {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Heading2",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:pStyle",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Ir {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Heading2",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:pStyle",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "heading 2",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Ir {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Heading3",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:pStyle",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Ir {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Heading3",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:pStyle",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "heading 3",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Ir {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Heading4",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:pStyle",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Ir {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Heading4",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:pStyle",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "heading 4",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Ir {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Heading5",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:pStyle",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Ir {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Heading5",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:pStyle",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "heading 5",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Ir {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Heading6",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:pStyle",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Ir {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Heading6",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:pStyle",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "heading 6",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aaaaaaaa",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "bold",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:i",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:iCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:i",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:iCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "emphasis",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:strike",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:strike",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "delete",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "inline code",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Object {
+ "checked": null,
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "list",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Object {
+ "checked": null,
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "list",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Object {
+ "checked": null,
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "list",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "spread": false,
+ "type": "listItem",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "spread": false,
+ "type": "listItem",
+ },
+ Object {
+ "checked": null,
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "list",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "spread": false,
+ "type": "listItem",
+ },
+ Object {
+ "checked": null,
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "list",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "spread": false,
+ "type": "listItem",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "spread": true,
+ "type": "listItem",
+ },
+ Object {
+ "checked": false,
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "not checked",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "spread": false,
+ "type": "listItem",
+ },
+ Object {
+ "checked": true,
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "checked",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "spread": false,
+ "type": "listItem",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Object {
+ "checked": null,
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "ordered list",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "spread": false,
+ "type": "listItem",
+ },
+ Object {
+ "checked": null,
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "ordered list",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "spread": false,
+ "type": "listItem",
+ },
+ Object {
+ "checked": null,
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "ordered list",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Object {
+ "checked": null,
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aaa",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "spread": false,
+ "type": "listItem",
+ },
+ Object {
+ "checked": null,
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aaa",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Object {
+ "checked": null,
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "eeeee",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "spread": false,
+ "type": "listItem",
+ },
+ Object {
+ "checked": null,
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "eeeee",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "spread": false,
+ "type": "listItem",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "spread": false,
+ "type": "listItem",
+ },
+ Object {
+ "checked": null,
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aaa",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "spread": false,
+ "type": "listItem",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "spread": false,
+ "type": "listItem",
+ },
+ Object {
+ "checked": null,
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "ordered list",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "spread": false,
+ "type": "listItem",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "This is ",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ zr {
+ "options": Object {
+ "children": Array [
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "link to GitHub.com",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "link": "https://github.com/",
+ },
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ ".",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "This is ",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ fr {
+ "imageData": Object {
+ "fileName": "l45ewhhyzv8lezjkfaxuz.png",
+ "stream": Uint8Array [],
+ "transformation": Object {
+ "emus": Object {
+ "x": 5715000,
+ "y": 3810000,
+ },
+ "flip": undefined,
+ "pixels": Object {
+ "x": 600,
+ "y": 400,
+ },
+ "rotation": undefined,
+ },
+ },
+ "key": "l45ewhhyzv8lezjkfaxuz.png",
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ dr {
+ "inline": pr {
+ "extent": ir {
+ "attributes": sr {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ sr {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "wp:extent",
+ },
+ "graphic": Ve {
+ "data": Ge {
+ "pic": Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{l45ewhhyzv8lezjkfaxuz.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ "root": Array [
+ ye {
+ "root": Object {
+ "uri": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "uri": "uri",
+ },
+ },
+ Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{l45ewhhyzv8lezjkfaxuz.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ ],
+ "rootKey": "a:graphicData",
+ },
+ "root": Array [
+ We {
+ "root": Object {
+ "a": "http://schemas.openxmlformats.org/drawingml/2006/main",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "a": "xmlns:a",
+ },
+ },
+ Ge {
+ "pic": Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{l45ewhhyzv8lezjkfaxuz.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ "root": Array [
+ ye {
+ "root": Object {
+ "uri": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "uri": "uri",
+ },
+ },
+ Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{l45ewhhyzv8lezjkfaxuz.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ ],
+ "rootKey": "a:graphicData",
+ },
+ ],
+ "rootKey": "a:graphic",
+ },
+ "root": Array [
+ hr {
+ "root": Object {
+ "distB": 0,
+ "distL": 0,
+ "distR": 0,
+ "distT": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "distB": "distB",
+ "distL": "distL",
+ "distR": "distR",
+ "distT": "distT",
+ },
+ },
+ ir {
+ "attributes": sr {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ sr {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "wp:extent",
+ },
+ nr {
+ "root": Array [
+ rr {
+ "root": Object {
+ "b": 0,
+ "l": 0,
+ "r": 0,
+ "t": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "b": "b",
+ "l": "l",
+ "r": "r",
+ "t": "t",
+ },
+ },
+ ],
+ "rootKey": "wp:effectExtent",
+ },
+ er {
+ "root": Array [
+ tr {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "wp:docPr",
+ },
+ cr {
+ "root": Array [
+ ar {
+ "root": Array [
+ or {
+ "root": Object {
+ "noChangeAspect": 1,
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/main",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeAspect": "noChangeAspect",
+ "xmlns": "xmlns:a",
+ },
+ },
+ ],
+ "rootKey": "a:graphicFrameLocks",
+ },
+ ],
+ "rootKey": "wp:cNvGraphicFramePr",
+ },
+ Ve {
+ "data": Ge {
+ "pic": Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{l45ewhhyzv8lezjkfaxuz.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ "root": Array [
+ ye {
+ "root": Object {
+ "uri": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "uri": "uri",
+ },
+ },
+ Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{l45ewhhyzv8lezjkfaxuz.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ ],
+ "rootKey": "a:graphicData",
+ },
+ "root": Array [
+ We {
+ "root": Object {
+ "a": "http://schemas.openxmlformats.org/drawingml/2006/main",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "a": "xmlns:a",
+ },
+ },
+ Ge {
+ "pic": Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{l45ewhhyzv8lezjkfaxuz.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ "root": Array [
+ ye {
+ "root": Object {
+ "uri": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "uri": "uri",
+ },
+ },
+ Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{l45ewhhyzv8lezjkfaxuz.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ ],
+ "rootKey": "a:graphicData",
+ },
+ ],
+ "rootKey": "a:graphic",
+ },
+ ],
+ "rootKey": "wp:inline",
+ },
+ "root": Array [
+ pr {
+ "extent": ir {
+ "attributes": sr {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ sr {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "wp:extent",
+ },
+ "graphic": Ve {
+ "data": Ge {
+ "pic": Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{l45ewhhyzv8lezjkfaxuz.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ "root": Array [
+ ye {
+ "root": Object {
+ "uri": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "uri": "uri",
+ },
+ },
+ Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{l45ewhhyzv8lezjkfaxuz.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ ],
+ "rootKey": "a:graphicData",
+ },
+ "root": Array [
+ We {
+ "root": Object {
+ "a": "http://schemas.openxmlformats.org/drawingml/2006/main",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "a": "xmlns:a",
+ },
+ },
+ Ge {
+ "pic": Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{l45ewhhyzv8lezjkfaxuz.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ "root": Array [
+ ye {
+ "root": Object {
+ "uri": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "uri": "uri",
+ },
+ },
+ Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{l45ewhhyzv8lezjkfaxuz.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ ],
+ "rootKey": "a:graphicData",
+ },
+ ],
+ "rootKey": "a:graphic",
+ },
+ "root": Array [
+ hr {
+ "root": Object {
+ "distB": 0,
+ "distL": 0,
+ "distR": 0,
+ "distT": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "distB": "distB",
+ "distL": "distL",
+ "distR": "distR",
+ "distT": "distT",
+ },
+ },
+ ir {
+ "attributes": sr {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ sr {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "wp:extent",
+ },
+ nr {
+ "root": Array [
+ rr {
+ "root": Object {
+ "b": 0,
+ "l": 0,
+ "r": 0,
+ "t": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "b": "b",
+ "l": "l",
+ "r": "r",
+ "t": "t",
+ },
+ },
+ ],
+ "rootKey": "wp:effectExtent",
+ },
+ er {
+ "root": Array [
+ tr {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "wp:docPr",
+ },
+ cr {
+ "root": Array [
+ ar {
+ "root": Array [
+ or {
+ "root": Object {
+ "noChangeAspect": 1,
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/main",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeAspect": "noChangeAspect",
+ "xmlns": "xmlns:a",
+ },
+ },
+ ],
+ "rootKey": "a:graphicFrameLocks",
+ },
+ ],
+ "rootKey": "wp:cNvGraphicFramePr",
+ },
+ Ve {
+ "data": Ge {
+ "pic": Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{l45ewhhyzv8lezjkfaxuz.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ "root": Array [
+ ye {
+ "root": Object {
+ "uri": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "uri": "uri",
+ },
+ },
+ Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{l45ewhhyzv8lezjkfaxuz.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ ],
+ "rootKey": "a:graphicData",
+ },
+ "root": Array [
+ We {
+ "root": Object {
+ "a": "http://schemas.openxmlformats.org/drawingml/2006/main",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "a": "xmlns:a",
+ },
+ },
+ Ge {
+ "pic": Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{l45ewhhyzv8lezjkfaxuz.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ "root": Array [
+ ye {
+ "root": Object {
+ "uri": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "uri": "uri",
+ },
+ },
+ Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{l45ewhhyzv8lezjkfaxuz.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ ],
+ "rootKey": "a:graphicData",
+ },
+ ],
+ "rootKey": "a:graphic",
+ },
+ ],
+ "rootKey": "wp:inline",
+ },
+ ],
+ "rootKey": "w:drawing",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ ".",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "quote
+quote
+quote
+quote",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "quote",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "quoted quote",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ pi {
+ "root": Array [
+ hi {
+ "root": Array [
+ Ms {
+ "root": Array [
+ Bs {
+ "root": Object {
+ "size": 100,
+ "type": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "size": "w:w",
+ "type": "w:type",
+ },
+ },
+ ],
+ "rootKey": "w:tblW",
+ },
+ Ys {
+ "root": Array [
+ q {
+ "root": Array [
+ Z {
+ "root": Object {
+ "color": "auto",
+ "size": 4,
+ "space": undefined,
+ "style": "single",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "color": "w:color",
+ "size": "w:sz",
+ "space": "w:space",
+ "style": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:top",
+ },
+ q {
+ "root": Array [
+ Z {
+ "root": Object {
+ "color": "auto",
+ "size": 4,
+ "space": undefined,
+ "style": "single",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "color": "w:color",
+ "size": "w:sz",
+ "space": "w:space",
+ "style": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:left",
+ },
+ q {
+ "root": Array [
+ Z {
+ "root": Object {
+ "color": "auto",
+ "size": 4,
+ "space": undefined,
+ "style": "single",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "color": "w:color",
+ "size": "w:sz",
+ "space": "w:space",
+ "style": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:bottom",
+ },
+ q {
+ "root": Array [
+ Z {
+ "root": Object {
+ "color": "auto",
+ "size": 4,
+ "space": undefined,
+ "style": "single",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "color": "w:color",
+ "size": "w:sz",
+ "space": "w:space",
+ "style": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:right",
+ },
+ q {
+ "root": Array [
+ Z {
+ "root": Object {
+ "color": "auto",
+ "size": 4,
+ "space": undefined,
+ "style": "single",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "color": "w:color",
+ "size": "w:sz",
+ "space": "w:space",
+ "style": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:insideH",
+ },
+ q {
+ "root": Array [
+ Z {
+ "root": Object {
+ "color": "auto",
+ "size": 4,
+ "space": undefined,
+ "style": "single",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "color": "w:color",
+ "size": "w:sz",
+ "space": "w:space",
+ "style": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:insideV",
+ },
+ ],
+ "rootKey": "w:tblBorders",
+ },
+ ],
+ "rootKey": "w:tblPr",
+ },
+ Os {
+ "root": Array [
+ ks {
+ "root": Array [
+ Cs {
+ "root": Object {
+ "w": 100,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:gridCol",
+ },
+ ks {
+ "root": Array [
+ Cs {
+ "root": Object {
+ "w": 100,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:gridCol",
+ },
+ ks {
+ "root": Array [
+ Cs {
+ "root": Object {
+ "w": 100,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:gridCol",
+ },
+ ],
+ "rootKey": "w:tblGrid",
+ },
+ wi {
+ "options": Object {
+ "children": Array [
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "Left align",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "Left align",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "Right align",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "Right align",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "Center align",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "Center align",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ ],
+ },
+ "root": Array [
+ mi {
+ "root": Array [],
+ "rootKey": "w:trPr",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "Left align",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "Left align",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "Right align",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "Right align",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "Center align",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "Center align",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ ],
+ "rootKey": "w:tr",
+ },
+ wi {
+ "options": Object {
+ "children": Array [
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "This",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "This",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "This",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "This",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "This",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "This",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ ],
+ },
+ "root": Array [
+ mi {
+ "root": Array [],
+ "rootKey": "w:trPr",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "This",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "This",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "This",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "This",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "This",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "This",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ ],
+ "rootKey": "w:tr",
+ },
+ wi {
+ "options": Object {
+ "children": Array [
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "column",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "column",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "column",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "column",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "column",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "column",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ ],
+ },
+ "root": Array [
+ mi {
+ "root": Array [],
+ "rootKey": "w:trPr",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "column",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "column",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "column",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "column",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "column",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "column",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ ],
+ "rootKey": "w:tr",
+ },
+ wi {
+ "options": Object {
+ "children": Array [
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "will",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "will",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "will",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "will",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "will",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "will",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ ],
+ },
+ "root": Array [
+ mi {
+ "root": Array [],
+ "rootKey": "w:trPr",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "will",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "will",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "will",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "will",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "will",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "will",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ ],
+ "rootKey": "w:tr",
+ },
+ wi {
+ "options": Object {
+ "children": Array [
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "be",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "be",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "be",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "be",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "be",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "be",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ ],
+ },
+ "root": Array [
+ mi {
+ "root": Array [],
+ "rootKey": "w:trPr",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "be",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "be",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "be",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "be",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "be",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "be",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ ],
+ "rootKey": "w:tr",
+ },
+ wi {
+ "options": Object {
+ "children": Array [
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "left",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "left",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "right",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "right",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "center",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "center",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ ],
+ },
+ "root": Array [
+ mi {
+ "root": Array [],
+ "rootKey": "w:trPr",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "left",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "left",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "right",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "right",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "center",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "center",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ ],
+ "rootKey": "w:tr",
+ },
+ wi {
+ "options": Object {
+ "children": Array [
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aligned",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aligned",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aligned",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aligned",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aligned",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aligned",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ ],
+ },
+ "root": Array [
+ mi {
+ "root": Array [],
+ "rootKey": "w:trPr",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aligned",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aligned",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aligned",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aligned",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aligned",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aligned",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ ],
+ "rootKey": "w:tr",
+ },
+ ],
+ "rootKey": "w:tbl",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "
+This is HTML
+
",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Q {
+ "root": Array [
+ q {
+ "root": Array [
+ Z {
+ "root": Object {
+ "color": "auto",
+ "size": 6,
+ "space": 1,
+ "style": "single",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "color": "w:color",
+ "size": "w:sz",
+ "space": "w:space",
+ "style": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:bottom",
+ },
+ ],
+ "rootKey": "w:pBdr",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Q {
+ "root": Array [
+ q {
+ "root": Array [
+ Z {
+ "root": Object {
+ "color": "auto",
+ "size": 6,
+ "space": 1,
+ "style": "single",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "color": "w:color",
+ "size": "w:sz",
+ "space": "w:space",
+ "style": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:bottom",
+ },
+ ],
+ "rootKey": "w:pBdr",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Q {
+ "root": Array [
+ q {
+ "root": Array [
+ Z {
+ "root": Object {
+ "color": "auto",
+ "size": 6,
+ "space": 1,
+ "style": "single",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "color": "w:color",
+ "size": "w:sz",
+ "space": "w:space",
+ "style": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:bottom",
+ },
+ ],
+ "rootKey": "w:pBdr",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Q {
+ "root": Array [
+ q {
+ "root": Array [
+ Z {
+ "root": Object {
+ "color": "auto",
+ "size": 6,
+ "space": 1,
+ "style": "single",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "color": "w:color",
+ "size": "w:sz",
+ "space": "w:space",
+ "style": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:bottom",
+ },
+ ],
+ "rootKey": "w:pBdr",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "function $initHighlight(block, cls) {
+ try {
+ if (cls.search(/\\\\bno\\\\-highlight\\\\b/) != -1)
+ return process(block, true, 0x0F) +
+ \` class=\\"\${cls}\\"\`;
+ } catch (e) {
+ /* handle exception */
+ }
+ for (var i = 0 / 2; i < classes.length; i++) {
+ if (checkCondition(classes[i]) === undefined)
+ console.log('undefined');
+ }
+
+ return (
+
+ {block}
+
+ )
+}
+
+export $initHighlight;",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:body",
+ "sections": Array [
+ _n {
+ "root": Array [
+ fn {
+ "root": Array [
+ dn {
+ "root": Object {
+ "height": 16838,
+ "orientation": "portrait",
+ "width": 11906,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "height": "w:h",
+ "orientation": "w:orient",
+ "width": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:pgSz",
+ },
+ ln {
+ "root": Array [
+ un {
+ "root": Object {
+ "bottom": "1in",
+ "footer": 708,
+ "gutter": 0,
+ "header": 708,
+ "left": "1in",
+ "right": "1in",
+ "top": "1in",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "header": "w:header",
+ "left": "w:left",
+ "right": "w:right",
+ "top": "w:top",
+ },
+ },
+ ],
+ "rootKey": "w:pgMar",
+ },
+ pn {
+ "root": Array [
+ hn {
+ "root": Object {
+ "formatType": undefined,
+ "separator": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "formatType": "w:fmt",
+ "separator": "w:chapSep",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:pgNumType",
+ },
+ nn {
+ "root": Array [
+ rn {
+ "root": Object {
+ "charSpace": undefined,
+ "linePitch": 360,
+ "type": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "charSpace": "w:charSpace",
+ "linePitch": "w:linePitch",
+ "type": "w:type",
+ },
+ },
+ ],
+ "rootKey": "w:docGrid",
+ },
+ ],
+ "rootKey": "w:sectPr",
+ },
+ ],
+ },
+ "root": Array [
+ An {
+ "root": Object {
+ "Ignorable": "w14 w15 wp14",
+ "m": "http://schemas.openxmlformats.org/officeDocument/2006/math",
+ "mc": "http://schemas.openxmlformats.org/markup-compatibility/2006",
+ "o": "urn:schemas-microsoft-com:office:office",
+ "r": "http://schemas.openxmlformats.org/officeDocument/2006/relationships",
+ "v": "urn:schemas-microsoft-com:vml",
+ "w": "http://schemas.openxmlformats.org/wordprocessingml/2006/main",
+ "w10": "urn:schemas-microsoft-com:office:word",
+ "w14": "http://schemas.microsoft.com/office/word/2010/wordml",
+ "w15": "http://schemas.microsoft.com/office/word/2012/wordml",
+ "wne": "http://schemas.microsoft.com/office/word/2006/wordml",
+ "wp": "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing",
+ "wp14": "http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing",
+ "wpc": "http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas",
+ "wpg": "http://schemas.microsoft.com/office/word/2010/wordprocessingGroup",
+ "wpi": "http://schemas.microsoft.com/office/word/2010/wordprocessingInk",
+ "wps": "http://schemas.microsoft.com/office/word/2010/wordprocessingShape",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "Ignorable": "mc:Ignorable",
+ "cp": "xmlns:cp",
+ "dc": "xmlns:dc",
+ "dcmitype": "xmlns:dcmitype",
+ "dcterms": "xmlns:dcterms",
+ "m": "xmlns:m",
+ "mc": "xmlns:mc",
+ "o": "xmlns:o",
+ "r": "xmlns:r",
+ "type": "xsi:type",
+ "v": "xmlns:v",
+ "w": "xmlns:w",
+ "w10": "xmlns:w10",
+ "w14": "xmlns:w14",
+ "w15": "xmlns:w15",
+ "wne": "xmlns:wne",
+ "wp": "xmlns:wp",
+ "wp14": "xmlns:wp14",
+ "wpc": "xmlns:wpc",
+ "wpg": "xmlns:wpg",
+ "wpi": "xmlns:wpi",
+ "wps": "xmlns:wps",
+ "xsi": "xmlns:xsi",
+ },
+ },
+ Rn {
+ "root": Array [
+ Sn {
+ "root": Object {
+ "color": undefined,
+ "themeColor": undefined,
+ "themeShade": undefined,
+ "themeTint": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "color": "w:color",
+ "themeColor": "w:themeColor",
+ "themeShade": "w:themeShade",
+ "themeTint": "w:themeTint",
+ },
+ },
+ ],
+ "rootKey": "w:background",
+ },
+ xn {
+ "root": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ undefined,
+ ],
+ "rootKey": "w:pPr",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Ir {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Heading1",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:pStyle",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Ir {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Heading1",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:pStyle",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "heading 1",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Ir {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Heading2",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:pStyle",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Ir {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Heading2",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:pStyle",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "heading 2",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Ir {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Heading3",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:pStyle",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Ir {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Heading3",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:pStyle",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "heading 3",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Ir {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Heading4",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:pStyle",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Ir {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Heading4",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:pStyle",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "heading 4",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Ir {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Heading5",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:pStyle",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Ir {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Heading5",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:pStyle",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "heading 5",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Ir {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Heading6",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:pStyle",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Ir {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Heading6",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:pStyle",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "heading 6",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aaaaaaaa",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "bold",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:i",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:iCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:i",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:iCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "emphasis",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:strike",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:strike",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "delete",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "inline code",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Object {
+ "checked": null,
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "list",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Object {
+ "checked": null,
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "list",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Object {
+ "checked": null,
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "list",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "spread": false,
+ "type": "listItem",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "spread": false,
+ "type": "listItem",
+ },
+ Object {
+ "checked": null,
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "list",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "spread": false,
+ "type": "listItem",
+ },
+ Object {
+ "checked": null,
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "list",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "spread": false,
+ "type": "listItem",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "spread": true,
+ "type": "listItem",
+ },
+ Object {
+ "checked": false,
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "not checked",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "spread": false,
+ "type": "listItem",
+ },
+ Object {
+ "checked": true,
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "checked",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "spread": false,
+ "type": "listItem",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Object {
+ "checked": null,
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "ordered list",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "spread": false,
+ "type": "listItem",
+ },
+ Object {
+ "checked": null,
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "ordered list",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "spread": false,
+ "type": "listItem",
+ },
+ Object {
+ "checked": null,
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "ordered list",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Object {
+ "checked": null,
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aaa",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "spread": false,
+ "type": "listItem",
+ },
+ Object {
+ "checked": null,
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aaa",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Object {
+ "checked": null,
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "eeeee",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "spread": false,
+ "type": "listItem",
+ },
+ Object {
+ "checked": null,
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "eeeee",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "spread": false,
+ "type": "listItem",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "spread": false,
+ "type": "listItem",
+ },
+ Object {
+ "checked": null,
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aaa",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "spread": false,
+ "type": "listItem",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "spread": false,
+ "type": "listItem",
+ },
+ Object {
+ "checked": null,
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "ordered list",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "spread": false,
+ "type": "listItem",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "This is ",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ zr {
+ "options": Object {
+ "children": Array [
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "link to GitHub.com",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "link": "https://github.com/",
+ },
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ ".",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "This is ",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ fr {
+ "imageData": Object {
+ "fileName": "l45ewhhyzv8lezjkfaxuz.png",
+ "stream": Uint8Array [],
+ "transformation": Object {
+ "emus": Object {
+ "x": 5715000,
+ "y": 3810000,
+ },
+ "flip": undefined,
+ "pixels": Object {
+ "x": 600,
+ "y": 400,
+ },
+ "rotation": undefined,
+ },
+ },
+ "key": "l45ewhhyzv8lezjkfaxuz.png",
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ dr {
+ "inline": pr {
+ "extent": ir {
+ "attributes": sr {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ sr {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "wp:extent",
+ },
+ "graphic": Ve {
+ "data": Ge {
+ "pic": Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{l45ewhhyzv8lezjkfaxuz.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ "root": Array [
+ ye {
+ "root": Object {
+ "uri": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "uri": "uri",
+ },
+ },
+ Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{l45ewhhyzv8lezjkfaxuz.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ ],
+ "rootKey": "a:graphicData",
+ },
+ "root": Array [
+ We {
+ "root": Object {
+ "a": "http://schemas.openxmlformats.org/drawingml/2006/main",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "a": "xmlns:a",
+ },
+ },
+ Ge {
+ "pic": Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{l45ewhhyzv8lezjkfaxuz.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ "root": Array [
+ ye {
+ "root": Object {
+ "uri": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "uri": "uri",
+ },
+ },
+ Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{l45ewhhyzv8lezjkfaxuz.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ ],
+ "rootKey": "a:graphicData",
+ },
+ ],
+ "rootKey": "a:graphic",
+ },
+ "root": Array [
+ hr {
+ "root": Object {
+ "distB": 0,
+ "distL": 0,
+ "distR": 0,
+ "distT": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "distB": "distB",
+ "distL": "distL",
+ "distR": "distR",
+ "distT": "distT",
+ },
+ },
+ ir {
+ "attributes": sr {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ sr {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "wp:extent",
+ },
+ nr {
+ "root": Array [
+ rr {
+ "root": Object {
+ "b": 0,
+ "l": 0,
+ "r": 0,
+ "t": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "b": "b",
+ "l": "l",
+ "r": "r",
+ "t": "t",
+ },
+ },
+ ],
+ "rootKey": "wp:effectExtent",
+ },
+ er {
+ "root": Array [
+ tr {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "wp:docPr",
+ },
+ cr {
+ "root": Array [
+ ar {
+ "root": Array [
+ or {
+ "root": Object {
+ "noChangeAspect": 1,
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/main",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeAspect": "noChangeAspect",
+ "xmlns": "xmlns:a",
+ },
+ },
+ ],
+ "rootKey": "a:graphicFrameLocks",
+ },
+ ],
+ "rootKey": "wp:cNvGraphicFramePr",
+ },
+ Ve {
+ "data": Ge {
+ "pic": Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{l45ewhhyzv8lezjkfaxuz.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ "root": Array [
+ ye {
+ "root": Object {
+ "uri": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "uri": "uri",
+ },
+ },
+ Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{l45ewhhyzv8lezjkfaxuz.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ ],
+ "rootKey": "a:graphicData",
+ },
+ "root": Array [
+ We {
+ "root": Object {
+ "a": "http://schemas.openxmlformats.org/drawingml/2006/main",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "a": "xmlns:a",
+ },
+ },
+ Ge {
+ "pic": Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{l45ewhhyzv8lezjkfaxuz.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ "root": Array [
+ ye {
+ "root": Object {
+ "uri": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "uri": "uri",
+ },
+ },
+ Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{l45ewhhyzv8lezjkfaxuz.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ ],
+ "rootKey": "a:graphicData",
+ },
+ ],
+ "rootKey": "a:graphic",
+ },
+ ],
+ "rootKey": "wp:inline",
+ },
+ "root": Array [
+ pr {
+ "extent": ir {
+ "attributes": sr {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ sr {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "wp:extent",
+ },
+ "graphic": Ve {
+ "data": Ge {
+ "pic": Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{l45ewhhyzv8lezjkfaxuz.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ "root": Array [
+ ye {
+ "root": Object {
+ "uri": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "uri": "uri",
+ },
+ },
+ Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{l45ewhhyzv8lezjkfaxuz.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ ],
+ "rootKey": "a:graphicData",
+ },
+ "root": Array [
+ We {
+ "root": Object {
+ "a": "http://schemas.openxmlformats.org/drawingml/2006/main",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "a": "xmlns:a",
+ },
+ },
+ Ge {
+ "pic": Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{l45ewhhyzv8lezjkfaxuz.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ "root": Array [
+ ye {
+ "root": Object {
+ "uri": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "uri": "uri",
+ },
+ },
+ Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{l45ewhhyzv8lezjkfaxuz.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ ],
+ "rootKey": "a:graphicData",
+ },
+ ],
+ "rootKey": "a:graphic",
+ },
+ "root": Array [
+ hr {
+ "root": Object {
+ "distB": 0,
+ "distL": 0,
+ "distR": 0,
+ "distT": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "distB": "distB",
+ "distL": "distL",
+ "distR": "distR",
+ "distT": "distT",
+ },
+ },
+ ir {
+ "attributes": sr {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ sr {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "wp:extent",
+ },
+ nr {
+ "root": Array [
+ rr {
+ "root": Object {
+ "b": 0,
+ "l": 0,
+ "r": 0,
+ "t": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "b": "b",
+ "l": "l",
+ "r": "r",
+ "t": "t",
+ },
+ },
+ ],
+ "rootKey": "wp:effectExtent",
+ },
+ er {
+ "root": Array [
+ tr {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "wp:docPr",
+ },
+ cr {
+ "root": Array [
+ ar {
+ "root": Array [
+ or {
+ "root": Object {
+ "noChangeAspect": 1,
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/main",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeAspect": "noChangeAspect",
+ "xmlns": "xmlns:a",
+ },
+ },
+ ],
+ "rootKey": "a:graphicFrameLocks",
+ },
+ ],
+ "rootKey": "wp:cNvGraphicFramePr",
+ },
+ Ve {
+ "data": Ge {
+ "pic": Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{l45ewhhyzv8lezjkfaxuz.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ "root": Array [
+ ye {
+ "root": Object {
+ "uri": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "uri": "uri",
+ },
+ },
+ Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{l45ewhhyzv8lezjkfaxuz.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ ],
+ "rootKey": "a:graphicData",
+ },
+ "root": Array [
+ We {
+ "root": Object {
+ "a": "http://schemas.openxmlformats.org/drawingml/2006/main",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "a": "xmlns:a",
+ },
+ },
+ Ge {
+ "pic": Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{l45ewhhyzv8lezjkfaxuz.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ "root": Array [
+ ye {
+ "root": Object {
+ "uri": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "uri": "uri",
+ },
+ },
+ Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{l45ewhhyzv8lezjkfaxuz.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ ],
+ "rootKey": "a:graphicData",
+ },
+ ],
+ "rootKey": "a:graphic",
+ },
+ ],
+ "rootKey": "wp:inline",
+ },
+ ],
+ "rootKey": "w:drawing",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ ".",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "quote
+quote
+quote
+quote",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "quote",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "quoted quote",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ pi {
+ "root": Array [
+ hi {
+ "root": Array [
+ Ms {
+ "root": Array [
+ Bs {
+ "root": Object {
+ "size": 100,
+ "type": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "size": "w:w",
+ "type": "w:type",
+ },
+ },
+ ],
+ "rootKey": "w:tblW",
+ },
+ Ys {
+ "root": Array [
+ q {
+ "root": Array [
+ Z {
+ "root": Object {
+ "color": "auto",
+ "size": 4,
+ "space": undefined,
+ "style": "single",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "color": "w:color",
+ "size": "w:sz",
+ "space": "w:space",
+ "style": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:top",
+ },
+ q {
+ "root": Array [
+ Z {
+ "root": Object {
+ "color": "auto",
+ "size": 4,
+ "space": undefined,
+ "style": "single",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "color": "w:color",
+ "size": "w:sz",
+ "space": "w:space",
+ "style": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:left",
+ },
+ q {
+ "root": Array [
+ Z {
+ "root": Object {
+ "color": "auto",
+ "size": 4,
+ "space": undefined,
+ "style": "single",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "color": "w:color",
+ "size": "w:sz",
+ "space": "w:space",
+ "style": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:bottom",
+ },
+ q {
+ "root": Array [
+ Z {
+ "root": Object {
+ "color": "auto",
+ "size": 4,
+ "space": undefined,
+ "style": "single",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "color": "w:color",
+ "size": "w:sz",
+ "space": "w:space",
+ "style": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:right",
+ },
+ q {
+ "root": Array [
+ Z {
+ "root": Object {
+ "color": "auto",
+ "size": 4,
+ "space": undefined,
+ "style": "single",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "color": "w:color",
+ "size": "w:sz",
+ "space": "w:space",
+ "style": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:insideH",
+ },
+ q {
+ "root": Array [
+ Z {
+ "root": Object {
+ "color": "auto",
+ "size": 4,
+ "space": undefined,
+ "style": "single",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "color": "w:color",
+ "size": "w:sz",
+ "space": "w:space",
+ "style": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:insideV",
+ },
+ ],
+ "rootKey": "w:tblBorders",
+ },
+ ],
+ "rootKey": "w:tblPr",
+ },
+ Os {
+ "root": Array [
+ ks {
+ "root": Array [
+ Cs {
+ "root": Object {
+ "w": 100,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:gridCol",
+ },
+ ks {
+ "root": Array [
+ Cs {
+ "root": Object {
+ "w": 100,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:gridCol",
+ },
+ ks {
+ "root": Array [
+ Cs {
+ "root": Object {
+ "w": 100,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:gridCol",
+ },
+ ],
+ "rootKey": "w:tblGrid",
+ },
+ wi {
+ "options": Object {
+ "children": Array [
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "Left align",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "Left align",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "Right align",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "Right align",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "Center align",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "Center align",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ ],
+ },
+ "root": Array [
+ mi {
+ "root": Array [],
+ "rootKey": "w:trPr",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "Left align",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "Left align",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "Right align",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "Right align",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "Center align",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "Center align",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ ],
+ "rootKey": "w:tr",
+ },
+ wi {
+ "options": Object {
+ "children": Array [
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "This",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "This",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "This",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "This",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "This",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "This",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ ],
+ },
+ "root": Array [
+ mi {
+ "root": Array [],
+ "rootKey": "w:trPr",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "This",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "This",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "This",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "This",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "This",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "This",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ ],
+ "rootKey": "w:tr",
+ },
+ wi {
+ "options": Object {
+ "children": Array [
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "column",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "column",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "column",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "column",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "column",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "column",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ ],
+ },
+ "root": Array [
+ mi {
+ "root": Array [],
+ "rootKey": "w:trPr",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "column",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "column",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "column",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "column",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "column",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "column",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ ],
+ "rootKey": "w:tr",
+ },
+ wi {
+ "options": Object {
+ "children": Array [
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "will",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "will",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "will",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "will",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "will",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "will",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ ],
+ },
+ "root": Array [
+ mi {
+ "root": Array [],
+ "rootKey": "w:trPr",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "will",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "will",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "will",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "will",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "will",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "will",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ ],
+ "rootKey": "w:tr",
+ },
+ wi {
+ "options": Object {
+ "children": Array [
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "be",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "be",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "be",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "be",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "be",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "be",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ ],
+ },
+ "root": Array [
+ mi {
+ "root": Array [],
+ "rootKey": "w:trPr",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "be",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "be",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "be",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "be",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "be",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "be",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ ],
+ "rootKey": "w:tr",
+ },
+ wi {
+ "options": Object {
+ "children": Array [
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "left",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "left",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "right",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "right",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "center",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "center",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ ],
+ },
+ "root": Array [
+ mi {
+ "root": Array [],
+ "rootKey": "w:trPr",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "left",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "left",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "right",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "right",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "center",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "center",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ ],
+ "rootKey": "w:tr",
+ },
+ wi {
+ "options": Object {
+ "children": Array [
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aligned",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aligned",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aligned",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aligned",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aligned",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aligned",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ ],
+ },
+ "root": Array [
+ mi {
+ "root": Array [],
+ "rootKey": "w:trPr",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aligned",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aligned",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aligned",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "right",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aligned",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ Xs {
+ "options": Object {
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aligned",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ },
+ "root": Array [
+ $s {
+ "root": Array [],
+ "rootKey": "w:tcPr",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ X {
+ "root": Array [
+ $ {
+ "root": Object {
+ "val": "center",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:jc",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aligned",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:tc",
+ },
+ ],
+ "rootKey": "w:tr",
+ },
+ ],
+ "rootKey": "w:tbl",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "
+This is HTML
+
",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Q {
+ "root": Array [
+ q {
+ "root": Array [
+ Z {
+ "root": Object {
+ "color": "auto",
+ "size": 6,
+ "space": 1,
+ "style": "single",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "color": "w:color",
+ "size": "w:sz",
+ "space": "w:space",
+ "style": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:bottom",
+ },
+ ],
+ "rootKey": "w:pBdr",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Q {
+ "root": Array [
+ q {
+ "root": Array [
+ Z {
+ "root": Object {
+ "color": "auto",
+ "size": 6,
+ "space": 1,
+ "style": "single",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "color": "w:color",
+ "size": "w:sz",
+ "space": "w:space",
+ "style": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:bottom",
+ },
+ ],
+ "rootKey": "w:pBdr",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Q {
+ "root": Array [
+ q {
+ "root": Array [
+ Z {
+ "root": Object {
+ "color": "auto",
+ "size": 6,
+ "space": 1,
+ "style": "single",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "color": "w:color",
+ "size": "w:sz",
+ "space": "w:space",
+ "style": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:bottom",
+ },
+ ],
+ "rootKey": "w:pBdr",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Q {
+ "root": Array [
+ q {
+ "root": Array [
+ Z {
+ "root": Object {
+ "color": "auto",
+ "size": 6,
+ "space": 1,
+ "style": "single",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "color": "w:color",
+ "size": "w:sz",
+ "space": "w:space",
+ "style": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:bottom",
+ },
+ ],
+ "rootKey": "w:pBdr",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "function $initHighlight(block, cls) {
+ try {
+ if (cls.search(/\\\\bno\\\\-highlight\\\\b/) != -1)
+ return process(block, true, 0x0F) +
+ \` class=\\"\${cls}\\"\`;
+ } catch (e) {
+ /* handle exception */
+ }
+ for (var i = 0 / 2; i < classes.length; i++) {
+ if (checkCondition(classes[i]) === undefined)
+ console.log('undefined');
+ }
+
+ return (
+
+ {block}
+
+ )
+}
+
+export $initHighlight;",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:body",
+ "sections": Array [
+ _n {
+ "root": Array [
+ fn {
+ "root": Array [
+ dn {
+ "root": Object {
+ "height": 16838,
+ "orientation": "portrait",
+ "width": 11906,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "height": "w:h",
+ "orientation": "w:orient",
+ "width": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:pgSz",
+ },
+ ln {
+ "root": Array [
+ un {
+ "root": Object {
+ "bottom": "1in",
+ "footer": 708,
+ "gutter": 0,
+ "header": 708,
+ "left": "1in",
+ "right": "1in",
+ "top": "1in",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "header": "w:header",
+ "left": "w:left",
+ "right": "w:right",
+ "top": "w:top",
+ },
+ },
+ ],
+ "rootKey": "w:pgMar",
+ },
+ pn {
+ "root": Array [
+ hn {
+ "root": Object {
+ "formatType": undefined,
+ "separator": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "formatType": "w:fmt",
+ "separator": "w:chapSep",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:pgNumType",
+ },
+ nn {
+ "root": Array [
+ rn {
+ "root": Object {
+ "charSpace": undefined,
+ "linePitch": 360,
+ "type": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "charSpace": "w:charSpace",
+ "linePitch": "w:linePitch",
+ "type": "w:type",
+ },
+ },
+ ],
+ "rootKey": "w:docGrid",
+ },
+ ],
+ "rootKey": "w:sectPr",
+ },
+ ],
+ },
+ ],
+ "rootKey": "w:document",
+ },
+ "relationships": On {
+ "root": Array [
+ Nn {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/package/2006/relationships",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns",
+ },
+ },
+ Fr {
+ "root": Array [
+ Pr {
+ "root": Object {
+ "id": "rId1",
+ "target": "styles.xml",
+ "targetMode": undefined,
+ "type": "http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "id": "Id",
+ "target": "Target",
+ "targetMode": "TargetMode",
+ "type": "Type",
+ },
+ },
+ ],
+ "rootKey": "Relationship",
+ },
+ Fr {
+ "root": Array [
+ Pr {
+ "root": Object {
+ "id": "rId2",
+ "target": "numbering.xml",
+ "targetMode": undefined,
+ "type": "http://schemas.openxmlformats.org/officeDocument/2006/relationships/numbering",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "id": "Id",
+ "target": "Target",
+ "targetMode": "TargetMode",
+ "type": "Type",
+ },
+ },
+ ],
+ "rootKey": "Relationship",
+ },
+ Fr {
+ "root": Array [
+ Pr {
+ "root": Object {
+ "id": "rId3",
+ "target": "footnotes.xml",
+ "targetMode": undefined,
+ "type": "http://schemas.openxmlformats.org/officeDocument/2006/relationships/footnotes",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "id": "Id",
+ "target": "Target",
+ "targetMode": "TargetMode",
+ "type": "Type",
+ },
+ },
+ ],
+ "rootKey": "Relationship",
+ },
+ Fr {
+ "root": Array [
+ Pr {
+ "root": Object {
+ "id": "rId4",
+ "target": "settings.xml",
+ "targetMode": undefined,
+ "type": "http://schemas.openxmlformats.org/officeDocument/2006/relationships/settings",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "id": "Id",
+ "target": "Target",
+ "targetMode": "TargetMode",
+ "type": "Type",
+ },
+ },
+ ],
+ "rootKey": "Relationship",
+ },
+ ],
+ "rootKey": "Relationships",
+ },
+ },
+ "fileRelationships": On {
+ "root": Array [
+ Nn {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/package/2006/relationships",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns",
+ },
+ },
+ Fr {
+ "root": Array [
+ Pr {
+ "root": Object {
+ "id": "rId1",
+ "target": "word/document.xml",
+ "targetMode": undefined,
+ "type": "http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "id": "Id",
+ "target": "Target",
+ "targetMode": "TargetMode",
+ "type": "Type",
+ },
+ },
+ ],
+ "rootKey": "Relationship",
+ },
+ Fr {
+ "root": Array [
+ Pr {
+ "root": Object {
+ "id": "rId2",
+ "target": "docProps/core.xml",
+ "targetMode": undefined,
+ "type": "http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "id": "Id",
+ "target": "Target",
+ "targetMode": "TargetMode",
+ "type": "Type",
+ },
+ },
+ ],
+ "rootKey": "Relationship",
+ },
+ Fr {
+ "root": Array [
+ Pr {
+ "root": Object {
+ "id": "rId3",
+ "target": "docProps/app.xml",
+ "targetMode": undefined,
+ "type": "http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "id": "Id",
+ "target": "Target",
+ "targetMode": "TargetMode",
+ "type": "Type",
+ },
+ },
+ ],
+ "rootKey": "Relationship",
+ },
+ Fr {
+ "root": Array [
+ Pr {
+ "root": Object {
+ "id": "rId4",
+ "target": "docProps/custom.xml",
+ "targetMode": undefined,
+ "type": "http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "id": "Id",
+ "target": "Target",
+ "targetMode": "TargetMode",
+ "type": "Type",
+ },
+ },
+ ],
+ "rootKey": "Relationship",
+ },
+ ],
+ "rootKey": "Relationships",
+ },
+ "footers": Array [],
+ "footnotesWrapper": Wi {
+ "footnotess": Gi {
+ "root": Array [
+ Ki {
+ "root": Object {
+ "Ignorable": "w14 w15 wp14",
+ "m": "http://schemas.openxmlformats.org/officeDocument/2006/math",
+ "mc": "http://schemas.openxmlformats.org/markup-compatibility/2006",
+ "o": "urn:schemas-microsoft-com:office:office",
+ "r": "http://schemas.openxmlformats.org/officeDocument/2006/relationships",
+ "v": "urn:schemas-microsoft-com:vml",
+ "w": "http://schemas.openxmlformats.org/wordprocessingml/2006/main",
+ "w10": "urn:schemas-microsoft-com:office:word",
+ "w14": "http://schemas.microsoft.com/office/word/2010/wordml",
+ "w15": "http://schemas.microsoft.com/office/word/2012/wordml",
+ "wne": "http://schemas.microsoft.com/office/word/2006/wordml",
+ "wp": "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing",
+ "wp14": "http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing",
+ "wpc": "http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas",
+ "wpg": "http://schemas.microsoft.com/office/word/2010/wordprocessingGroup",
+ "wpi": "http://schemas.microsoft.com/office/word/2010/wordprocessingInk",
+ "wps": "http://schemas.microsoft.com/office/word/2010/wordprocessingShape",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "Ignorable": "mc:Ignorable",
+ "m": "xmlns:m",
+ "mc": "xmlns:mc",
+ "o": "xmlns:o",
+ "r": "xmlns:r",
+ "v": "xmlns:v",
+ "w": "xmlns:w",
+ "w10": "xmlns:w10",
+ "w14": "xmlns:w14",
+ "w15": "xmlns:w15",
+ "wne": "xmlns:wne",
+ "wp": "xmlns:wp",
+ "wp14": "xmlns:wp14",
+ "wpc": "xmlns:wpc",
+ "wpg": "xmlns:wpg",
+ "wpi": "xmlns:wpi",
+ "wps": "xmlns:wps",
+ },
+ },
+ Mi {
+ "root": Array [
+ Pi {
+ "root": Object {
+ "id": -1,
+ "type": "separator",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "id": "w:id",
+ "type": "w:type",
+ },
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Rr {
+ "root": Array [
+ Sr {
+ "root": Object {
+ "after": 0,
+ "line": 240,
+ "lineRule": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "after": "w:after",
+ "before": "w:before",
+ "line": "w:line",
+ "lineRule": "w:lineRule",
+ },
+ },
+ ],
+ "rootKey": "w:spacing",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Rr {
+ "root": Array [
+ Sr {
+ "root": Object {
+ "after": 0,
+ "line": 240,
+ "lineRule": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "after": "w:after",
+ "before": "w:before",
+ "line": "w:line",
+ "lineRule": "w:lineRule",
+ },
+ },
+ ],
+ "rootKey": "w:spacing",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Bi {
+ "properties": St {
+ "root": Array [
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "FootnoteReference",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:rStyle",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "FootnoteReference",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:rStyle",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Fi {
+ "root": Array [],
+ "rootKey": "w:footnoteRef",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ji {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Hi {
+ "root": Array [],
+ "rootKey": "w:separator",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:footnote",
+ },
+ Mi {
+ "root": Array [
+ Pi {
+ "root": Object {
+ "id": 0,
+ "type": "continuationSeparator",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "id": "w:id",
+ "type": "w:type",
+ },
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Rr {
+ "root": Array [
+ Sr {
+ "root": Object {
+ "after": 0,
+ "line": 240,
+ "lineRule": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "after": "w:after",
+ "before": "w:before",
+ "line": "w:line",
+ "lineRule": "w:lineRule",
+ },
+ },
+ ],
+ "rootKey": "w:spacing",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Rr {
+ "root": Array [
+ Sr {
+ "root": Object {
+ "after": 0,
+ "line": 240,
+ "lineRule": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "after": "w:after",
+ "before": "w:before",
+ "line": "w:line",
+ "lineRule": "w:lineRule",
+ },
+ },
+ ],
+ "rootKey": "w:spacing",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Bi {
+ "properties": St {
+ "root": Array [
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "FootnoteReference",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:rStyle",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "FootnoteReference",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:rStyle",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Fi {
+ "root": Array [],
+ "rootKey": "w:footnoteRef",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ zi {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Ui {
+ "root": Array [],
+ "rootKey": "w:continuationSeparator",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:footnote",
+ },
+ ],
+ "rootKey": "w:footnotes",
+ },
+ "relationships": On {
+ "root": Array [
+ Nn {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/package/2006/relationships",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns",
+ },
+ },
+ ],
+ "rootKey": "Relationships",
+ },
+ },
+ "headers": Array [],
+ "media": qi {
+ "map": Map {},
+ },
+ "numbering": yo {
+ "abstractNumberingMap": Map {
+ "default-bullet-numbering" => uo {
+ "id": 7,
+ "root": Array [
+ co {
+ "root": Object {
+ "abstractNumId": 7,
+ "restartNumberingAfterBreak": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "abstractNumId": "w:abstractNumId",
+ "restartNumberingAfterBreak": "w15:restartNumberingAfterBreak",
+ },
+ },
+ ao {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "hybridMultilevel",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:multiLevelType",
+ },
+ io {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 720,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ B {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:start",
+ },
+ to {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "bullet",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:numFmt",
+ },
+ eo {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "●",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlText",
+ },
+ ro {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlJc",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 720,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Ji {
+ "root": Object {
+ "ilvl": 0,
+ "tentative": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "ilvl": "w:ilvl",
+ "tentative": "w15:tentative",
+ },
+ },
+ ],
+ "rootKey": "w:lvl",
+ "runProperties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ },
+ io {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 1440,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ B {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:start",
+ },
+ to {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "bullet",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:numFmt",
+ },
+ eo {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "○",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlText",
+ },
+ ro {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlJc",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 1440,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Ji {
+ "root": Object {
+ "ilvl": 1,
+ "tentative": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "ilvl": "w:ilvl",
+ "tentative": "w15:tentative",
+ },
+ },
+ ],
+ "rootKey": "w:lvl",
+ "runProperties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ },
+ io {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 2160,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ B {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:start",
+ },
+ to {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "bullet",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:numFmt",
+ },
+ eo {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "■",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlText",
+ },
+ ro {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlJc",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 2160,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Ji {
+ "root": Object {
+ "ilvl": 2,
+ "tentative": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "ilvl": "w:ilvl",
+ "tentative": "w15:tentative",
+ },
+ },
+ ],
+ "rootKey": "w:lvl",
+ "runProperties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ },
+ io {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 2880,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ B {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:start",
+ },
+ to {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "bullet",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:numFmt",
+ },
+ eo {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "●",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlText",
+ },
+ ro {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlJc",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 2880,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Ji {
+ "root": Object {
+ "ilvl": 3,
+ "tentative": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "ilvl": "w:ilvl",
+ "tentative": "w15:tentative",
+ },
+ },
+ ],
+ "rootKey": "w:lvl",
+ "runProperties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ },
+ io {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 3600,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ B {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:start",
+ },
+ to {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "bullet",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:numFmt",
+ },
+ eo {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "○",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlText",
+ },
+ ro {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlJc",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 3600,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Ji {
+ "root": Object {
+ "ilvl": 4,
+ "tentative": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "ilvl": "w:ilvl",
+ "tentative": "w15:tentative",
+ },
+ },
+ ],
+ "rootKey": "w:lvl",
+ "runProperties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ },
+ io {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 4320,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ B {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:start",
+ },
+ to {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "bullet",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:numFmt",
+ },
+ eo {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "■",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlText",
+ },
+ ro {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlJc",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 4320,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Ji {
+ "root": Object {
+ "ilvl": 5,
+ "tentative": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "ilvl": "w:ilvl",
+ "tentative": "w15:tentative",
+ },
+ },
+ ],
+ "rootKey": "w:lvl",
+ "runProperties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ },
+ io {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 5040,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ B {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:start",
+ },
+ to {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "bullet",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:numFmt",
+ },
+ eo {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "●",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlText",
+ },
+ ro {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlJc",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 5040,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Ji {
+ "root": Object {
+ "ilvl": 6,
+ "tentative": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "ilvl": "w:ilvl",
+ "tentative": "w15:tentative",
+ },
+ },
+ ],
+ "rootKey": "w:lvl",
+ "runProperties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ },
+ io {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 5760,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ B {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:start",
+ },
+ to {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "bullet",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:numFmt",
+ },
+ eo {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "●",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlText",
+ },
+ ro {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlJc",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 5760,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Ji {
+ "root": Object {
+ "ilvl": 7,
+ "tentative": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "ilvl": "w:ilvl",
+ "tentative": "w15:tentative",
+ },
+ },
+ ],
+ "rootKey": "w:lvl",
+ "runProperties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ },
+ io {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 6480,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ B {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:start",
+ },
+ to {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "bullet",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:numFmt",
+ },
+ eo {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "●",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlText",
+ },
+ ro {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlJc",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 6480,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Ji {
+ "root": Object {
+ "ilvl": 8,
+ "tentative": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "ilvl": "w:ilvl",
+ "tentative": "w15:tentative",
+ },
+ },
+ ],
+ "rootKey": "w:lvl",
+ "runProperties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ },
+ ],
+ "rootKey": "w:abstractNum",
+ },
+ },
+ "concreteNumberingMap": Map {
+ "default-bullet-numbering" => po {
+ "instance": 0,
+ "numId": 1,
+ "reference": "default-bullet-numbering",
+ "root": Array [
+ ho {
+ "root": Object {
+ "numId": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "numId": "w:numId",
+ },
+ },
+ lo {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 7,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:abstractNumId",
+ },
+ mo {
+ "root": Array [
+ fo {
+ "root": Object {
+ "ilvl": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "ilvl": "w:ilvl",
+ },
+ },
+ go {
+ "root": Array [
+ wo {
+ "root": Object {
+ "val": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:startOverride",
+ },
+ ],
+ "rootKey": "w:lvlOverride",
+ },
+ ],
+ "rootKey": "w:num",
+ },
+ },
+ "referenceConfigMap": Map {},
+ "root": Array [
+ An {
+ "root": Object {
+ "Ignorable": "w14 w15 wp14",
+ "m": "http://schemas.openxmlformats.org/officeDocument/2006/math",
+ "mc": "http://schemas.openxmlformats.org/markup-compatibility/2006",
+ "o": "urn:schemas-microsoft-com:office:office",
+ "r": "http://schemas.openxmlformats.org/officeDocument/2006/relationships",
+ "v": "urn:schemas-microsoft-com:vml",
+ "w": "http://schemas.openxmlformats.org/wordprocessingml/2006/main",
+ "w10": "urn:schemas-microsoft-com:office:word",
+ "w14": "http://schemas.microsoft.com/office/word/2010/wordml",
+ "w15": "http://schemas.microsoft.com/office/word/2012/wordml",
+ "wne": "http://schemas.microsoft.com/office/word/2006/wordml",
+ "wp": "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing",
+ "wp14": "http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing",
+ "wpc": "http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas",
+ "wpg": "http://schemas.microsoft.com/office/word/2010/wordprocessingGroup",
+ "wpi": "http://schemas.microsoft.com/office/word/2010/wordprocessingInk",
+ "wps": "http://schemas.microsoft.com/office/word/2010/wordprocessingShape",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "Ignorable": "mc:Ignorable",
+ "cp": "xmlns:cp",
+ "dc": "xmlns:dc",
+ "dcmitype": "xmlns:dcmitype",
+ "dcterms": "xmlns:dcterms",
+ "m": "xmlns:m",
+ "mc": "xmlns:mc",
+ "o": "xmlns:o",
+ "r": "xmlns:r",
+ "type": "xsi:type",
+ "v": "xmlns:v",
+ "w": "xmlns:w",
+ "w10": "xmlns:w10",
+ "w14": "xmlns:w14",
+ "w15": "xmlns:w15",
+ "wne": "xmlns:wne",
+ "wp": "xmlns:wp",
+ "wp14": "xmlns:wp14",
+ "wpc": "xmlns:wpc",
+ "wpg": "xmlns:wpg",
+ "wpi": "xmlns:wpi",
+ "wps": "xmlns:wps",
+ "xsi": "xmlns:xsi",
+ },
+ },
+ ],
+ "rootKey": "w:numbering",
+ },
+ "settings": Eo {
+ "root": Array [
+ xo {
+ "root": Object {
+ "Ignorable": "w14 w15 wp14",
+ "m": "http://schemas.openxmlformats.org/officeDocument/2006/math",
+ "mc": "http://schemas.openxmlformats.org/markup-compatibility/2006",
+ "o": "urn:schemas-microsoft-com:office:office",
+ "r": "http://schemas.openxmlformats.org/officeDocument/2006/relationships",
+ "v": "urn:schemas-microsoft-com:vml",
+ "w": "http://schemas.openxmlformats.org/wordprocessingml/2006/main",
+ "w10": "urn:schemas-microsoft-com:office:word",
+ "w14": "http://schemas.microsoft.com/office/word/2010/wordml",
+ "w15": "http://schemas.microsoft.com/office/word/2012/wordml",
+ "wne": "http://schemas.microsoft.com/office/word/2006/wordml",
+ "wp": "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing",
+ "wp14": "http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing",
+ "wpc": "http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas",
+ "wpg": "http://schemas.microsoft.com/office/word/2010/wordprocessingGroup",
+ "wpi": "http://schemas.microsoft.com/office/word/2010/wordprocessingInk",
+ "wps": "http://schemas.microsoft.com/office/word/2010/wordprocessingShape",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "Ignorable": "mc:Ignorable",
+ "m": "xmlns:m",
+ "mc": "xmlns:mc",
+ "o": "xmlns:o",
+ "r": "xmlns:r",
+ "v": "xmlns:v",
+ "w": "xmlns:w",
+ "w10": "xmlns:w10",
+ "w14": "xmlns:w14",
+ "w15": "xmlns:w15",
+ "wne": "xmlns:wne",
+ "wp": "xmlns:wp",
+ "wp14": "xmlns:wp14",
+ "wpc": "xmlns:wpc",
+ "wpg": "xmlns:wpg",
+ "wpi": "xmlns:wpi",
+ "wps": "xmlns:wps",
+ },
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:displayBackgroundShape",
+ },
+ L {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": false,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:evenAndOddHeaders",
+ },
+ _o {
+ "root": Array [
+ vo {
+ "root": Array [
+ bo {
+ "root": Object {
+ "name": "compatibilityMode",
+ "uri": "http://schemas.microsoft.com/office/word",
+ "version": 15,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "name": "w:name",
+ "uri": "w:uri",
+ "version": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:compatSetting",
+ },
+ ],
+ "rootKey": "w:compat",
+ },
+ ],
+ "rootKey": "w:settings",
+ },
+ "styles": Wo {
+ "root": Array [
+ An {
+ "root": Object {
+ "Ignorable": "w14 w15",
+ "mc": "http://schemas.openxmlformats.org/markup-compatibility/2006",
+ "r": "http://schemas.openxmlformats.org/officeDocument/2006/relationships",
+ "w": "http://schemas.openxmlformats.org/wordprocessingml/2006/main",
+ "w14": "http://schemas.microsoft.com/office/word/2010/wordml",
+ "w15": "http://schemas.microsoft.com/office/word/2012/wordml",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "Ignorable": "mc:Ignorable",
+ "cp": "xmlns:cp",
+ "dc": "xmlns:dc",
+ "dcmitype": "xmlns:dcmitype",
+ "dcterms": "xmlns:dcterms",
+ "m": "xmlns:m",
+ "mc": "xmlns:mc",
+ "o": "xmlns:o",
+ "r": "xmlns:r",
+ "type": "xsi:type",
+ "v": "xmlns:v",
+ "w": "xmlns:w",
+ "w10": "xmlns:w10",
+ "w14": "xmlns:w14",
+ "w15": "xmlns:w15",
+ "wne": "xmlns:wne",
+ "wp": "xmlns:wp",
+ "wp14": "xmlns:wp14",
+ "wpc": "xmlns:wpc",
+ "wpg": "xmlns:wpg",
+ "wpi": "xmlns:wpi",
+ "wps": "xmlns:wps",
+ "xsi": "xmlns:xsi",
+ },
+ },
+ Xo {
+ "paragraphPropertiesDefaults": Vo {
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ ],
+ "rootKey": "w:pPrDefault",
+ },
+ "root": Array [
+ $o {
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:rPrDefault",
+ },
+ Vo {
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ ],
+ "rootKey": "w:pPrDefault",
+ },
+ ],
+ "rootKey": "w:docDefaults",
+ "runPropertiesDefaults": $o {
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:rPrDefault",
+ },
+ },
+ ko {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "Title",
+ "type": "paragraph",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "Title",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:next",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:qFormat",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 56,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:sz",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 56,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:szCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 56,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:sz",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 56,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:szCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ },
+ Do {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "Heading1",
+ "type": "paragraph",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "Heading 1",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:next",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:qFormat",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "2E74B5",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 32,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:sz",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 32,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:szCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "2E74B5",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 32,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:sz",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 32,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:szCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ },
+ Lo {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "Heading2",
+ "type": "paragraph",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "Heading 2",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:next",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:qFormat",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "2E74B5",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 26,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:sz",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 26,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:szCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "2E74B5",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 26,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:sz",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 26,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:szCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ },
+ Po {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "Heading3",
+ "type": "paragraph",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "Heading 3",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:next",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:qFormat",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "1F4D78",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 24,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:sz",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 24,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:szCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "1F4D78",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 24,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:sz",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 24,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:szCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ },
+ Fo {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "Heading4",
+ "type": "paragraph",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "Heading 4",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:next",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:qFormat",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:i",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:iCs",
+ },
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "2E74B5",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:i",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:iCs",
+ },
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "2E74B5",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ },
+ Bo {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "Heading5",
+ "type": "paragraph",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "Heading 5",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:next",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:qFormat",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "2E74B5",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "2E74B5",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ },
+ Mo {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "Heading6",
+ "type": "paragraph",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "Heading 6",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:next",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:qFormat",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "1F4D78",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "1F4D78",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ },
+ Uo {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "Strong",
+ "type": "paragraph",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "Strong",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:next",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:qFormat",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ },
+ zo {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "ListParagraph",
+ "type": "paragraph",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "List Paragraph",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:qFormat",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ },
+ Go {
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "Hyperlink",
+ "type": "character",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "Hyperlink",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "DefaultParagraphFont",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ So {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": 99,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:uiPriority",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:unhideWhenUsed",
+ },
+ St {
+ "root": Array [
+ At {
+ "root": Array [
+ a {
+ "root": Object {
+ "color": undefined,
+ "val": "single",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:u",
+ },
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "0563C1",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [
+ At {
+ "root": Array [
+ a {
+ "root": Object {
+ "color": undefined,
+ "val": "single",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:u",
+ },
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "0563C1",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ },
+ jo {
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "FootnoteReference",
+ "type": "character",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "footnote reference",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "DefaultParagraphFont",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ So {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": 99,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:uiPriority",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:semiHidden",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:unhideWhenUsed",
+ },
+ St {
+ "root": Array [
+ Et {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "superscript",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:vertAlign",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [
+ Et {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "superscript",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:vertAlign",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ },
+ Ho {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Rr {
+ "root": Array [
+ Sr {
+ "root": Object {
+ "after": 0,
+ "line": 240,
+ "lineRule": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "after": "w:after",
+ "before": "w:before",
+ "line": "w:line",
+ "lineRule": "w:lineRule",
+ },
+ },
+ ],
+ "rootKey": "w:spacing",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "FootnoteText",
+ "type": "paragraph",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "footnote text",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "FootnoteTextChar",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:link",
+ },
+ So {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": 99,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:uiPriority",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:semiHidden",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:unhideWhenUsed",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Rr {
+ "root": Array [
+ Sr {
+ "root": Object {
+ "after": 0,
+ "line": 240,
+ "lineRule": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "after": "w:after",
+ "before": "w:before",
+ "line": "w:line",
+ "lineRule": "w:lineRule",
+ },
+ },
+ ],
+ "rootKey": "w:spacing",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 20,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:sz",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 20,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:szCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 20,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:sz",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 20,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:szCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ },
+ Ko {
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "FootnoteTextChar",
+ "type": "character",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "Footnote Text Char",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "DefaultParagraphFont",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "FootnoteText",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:link",
+ },
+ So {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": 99,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:uiPriority",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:semiHidden",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:unhideWhenUsed",
+ },
+ St {
+ "root": Array [
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 20,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:sz",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 20,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:szCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 20,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:sz",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 20,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:szCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ },
+ ],
+ "rootKey": "w:styles",
+ },
+}
+`;
+
+exports[`e2e node-break.md 1`] = `
+Object {
+ "w:body": Array [
+ Object {
+ "w:p": Array [
+ Object {
+ "w:pPr": Array [
+ Object {
+ "w:pBdr": Array [
+ Object {
+ "w:bottom": Object {
+ "_attr": Object {
+ "w:color": "auto",
+ "w:space": 1,
+ "w:sz": 6,
+ "w:val": "single",
+ },
+ },
+ },
+ ],
+ },
+ ],
+ },
+ ],
+ },
+ Object {
+ "w:p": Array [
+ Object {
+ "w:pPr": Array [
+ Object {
+ "w:pBdr": Array [
+ Object {
+ "w:bottom": Object {
+ "_attr": Object {
+ "w:color": "auto",
+ "w:space": 1,
+ "w:sz": 6,
+ "w:val": "single",
+ },
+ },
+ },
+ ],
+ },
+ ],
+ },
+ ],
+ },
+ Object {
+ "w:sectPr": Array [
+ Object {
+ "w:pgSz": Object {
+ "_attr": Object {
+ "w:h": 16838,
+ "w:orient": "portrait",
+ "w:w": 11906,
+ },
+ },
+ },
+ Object {
+ "w:pgMar": Object {
+ "_attr": Object {
+ "w:bottom": "1in",
+ "w:footer": 708,
+ "w:gutter": 0,
+ "w:header": 708,
+ "w:left": "1in",
+ "w:right": "1in",
+ "w:top": "1in",
+ },
+ },
+ },
+ Object {
+ "w:pgNumType": Object {
+ "_attr": Object {},
+ },
+ },
+ Object {
+ "w:docGrid": Object {
+ "_attr": Object {
+ "w:linePitch": 360,
+ },
+ },
+ },
+ ],
+ },
+ ],
+}
+`;
+
+exports[`e2e node-code.md 1`] = `
+Object {
+ "w:body": Array [
+ Object {
+ "w:p": Array [
+ Object {
+ "w:r": Array [
+ Object {
+ "w:t": Array [
+ Object {
+ "_attr": Object {
+ "xml:space": "preserve",
+ },
+ },
+ "@font-face {
+ font-family: Chunkfive;
+ src: url(\\"Chunkfive.otf\\");
+}
+
+body,
+.usertext {
+ color: #f0f0f0;
+ background: #600;
+ font-family: Chunkfive, sans;
+ --heading-1: 30px/32px Helvetica, sans-serif;
+}
+
+@import url(print.css);
+@media print {
+ a[href^=\\"http\\"]::after {
+ content: attr(href);
+ }
+}",
+ ],
+ },
+ ],
+ },
+ ],
+ },
+ Object {
+ "w:p": Array [
+ Object {
+ "w:r": Array [
+ Object {
+ "w:t": Array [
+ Object {
+ "_attr": Object {
+ "xml:space": "preserve",
+ },
+ },
+ "function $initHighlight(block, cls) {
+ try {
+ if (cls.search(/\\\\bno\\\\-highlight\\\\b/) != -1)
+ return process(block, true, 0x0F) +
+ \` class=\\"\${cls}\\"\`;
+ } catch (e) {
+ /* handle exception */
+ }
+ for (var i = 0 / 2; i < classes.length; i++) {
+ if (checkCondition(classes[i]) === undefined)
+ console.log('undefined');
+ }
+
+ return (
+
+ {block}
+
+ )
+}
+
+export $initHighlight;",
+ ],
+ },
+ ],
+ },
+ ],
+ },
+ Object {
+ "w:p": Array [
+ Object {
+ "w:r": Array [
+ Object {
+ "w:t": Array [
+ Object {
+ "_attr": Object {
+ "xml:space": "preserve",
+ },
+ },
+ "class MyClass {
+ public static myValue: string;
+ constructor(init: string) {
+ this.myValue = init;
+ }
+}
+import fs = require(\\"fs\\");
+module MyModule {
+ export interface MyInterface extends Other {
+ myProperty: any;
+ }
+}
+declare magicNumber number;
+myArray.forEach(() => { }); // fat arrow syntax",
+ ],
+ },
+ ],
+ },
+ ],
+ },
+ Object {
+ "w:sectPr": Array [
+ Object {
+ "w:pgSz": Object {
+ "_attr": Object {
+ "w:h": 16838,
+ "w:orient": "portrait",
+ "w:w": 11906,
+ },
+ },
+ },
+ Object {
+ "w:pgMar": Object {
+ "_attr": Object {
+ "w:bottom": "1in",
+ "w:footer": 708,
+ "w:gutter": 0,
+ "w:header": 708,
+ "w:left": "1in",
+ "w:right": "1in",
+ "w:top": "1in",
+ },
+ },
+ },
+ Object {
+ "w:pgNumType": Object {
+ "_attr": Object {},
+ },
+ },
+ Object {
+ "w:docGrid": Object {
+ "_attr": Object {
+ "w:linePitch": 360,
+ },
+ },
+ },
+ ],
+ },
+ ],
+}
+`;
+
+exports[`e2e node-footnotes.md 1`] = `
+Object {
+ "w:body": Array [
+ Object {
+ "w:p": Array [
+ Object {
+ "w:r": Array [
+ Object {
+ "w:t": Array [
+ Object {
+ "_attr": Object {
+ "xml:space": "preserve",
+ },
+ },
+ "This is footnote",
+ ],
+ },
+ ],
+ },
+ Object {
+ "w:r": Array [
+ Object {
+ "w:t": Array [
+ Object {
+ "_attr": Object {
+ "xml:space": "preserve",
+ },
+ },
+ ". And this is also ",
+ ],
+ },
+ ],
+ },
+ Object {
+ "w:p": Array [
+ Object {
+ "w:r": Array [
+ Object {
+ "w:t": Array [
+ Object {
+ "_attr": Object {
+ "xml:space": "preserve",
+ },
+ },
+ "inline footnote",
+ ],
+ },
+ ],
+ },
+ ],
+ },
+ Object {
+ "w:r": Array [
+ Object {
+ "w:t": Array [
+ Object {
+ "_attr": Object {
+ "xml:space": "preserve",
+ },
+ },
+ ".",
+ ],
+ },
+ ],
+ },
+ ],
+ },
+ Object {
+ "w:sectPr": Array [
+ Object {
+ "w:pgSz": Object {
+ "_attr": Object {
+ "w:h": 16838,
+ "w:orient": "portrait",
+ "w:w": 11906,
+ },
+ },
+ },
+ Object {
+ "w:pgMar": Object {
+ "_attr": Object {
+ "w:bottom": "1in",
+ "w:footer": 708,
+ "w:gutter": 0,
+ "w:header": 708,
+ "w:left": "1in",
+ "w:right": "1in",
+ "w:top": "1in",
+ },
+ },
+ },
+ Object {
+ "w:pgNumType": Object {
+ "_attr": Object {},
+ },
+ },
+ Object {
+ "w:docGrid": Object {
+ "_attr": Object {
+ "w:linePitch": 360,
+ },
+ },
+ },
+ ],
+ },
+ ],
+}
+`;
+
+exports[`e2e node-frontmatter-toml.md 1`] = `
+Object {
+ "w:body": Array [
+ Object {
+ "w:p": Array [
+ Object {
+ "w:pPr": Array [
+ Object {
+ "w:pStyle": Object {
+ "_attr": Object {
+ "w:val": "Title",
+ },
+ },
+ },
+ ],
+ },
+ Object {
+ "w:r": Array [
+ Object {
+ "w:t": Array [
+ Object {
+ "_attr": Object {
+ "xml:space": "preserve",
+ },
+ },
+ "Other markdown",
+ ],
+ },
+ ],
+ },
+ ],
+ },
+ Object {
+ "w:p": Array [
+ Object {
+ "w:r": Array [
+ Object {
+ "w:t": Array [
+ Object {
+ "_attr": Object {
+ "xml:space": "preserve",
+ },
+ },
+ "blablabla",
+ ],
+ },
+ ],
+ },
+ ],
+ },
+ Object {
+ "w:sectPr": Array [
+ Object {
+ "w:pgSz": Object {
+ "_attr": Object {
+ "w:h": 16838,
+ "w:orient": "portrait",
+ "w:w": 11906,
+ },
+ },
+ },
+ Object {
+ "w:pgMar": Object {
+ "_attr": Object {
+ "w:bottom": "1in",
+ "w:footer": 708,
+ "w:gutter": 0,
+ "w:header": 708,
+ "w:left": "1in",
+ "w:right": "1in",
+ "w:top": "1in",
+ },
+ },
+ },
+ Object {
+ "w:pgNumType": Object {
+ "_attr": Object {},
+ },
+ },
+ Object {
+ "w:docGrid": Object {
+ "_attr": Object {
+ "w:linePitch": 360,
+ },
+ },
+ },
+ ],
+ },
+ ],
+}
+`;
+
+exports[`e2e node-frontmatter-yaml.md 1`] = `
+Object {
+ "w:body": Array [
+ Object {
+ "w:p": Array [
+ Object {
+ "w:pPr": Array [
+ Object {
+ "w:pStyle": Object {
+ "_attr": Object {
+ "w:val": "Title",
+ },
+ },
+ },
+ ],
+ },
+ Object {
+ "w:r": Array [
+ Object {
+ "w:t": Array [
+ Object {
+ "_attr": Object {
+ "xml:space": "preserve",
+ },
+ },
+ "Other markdown",
+ ],
+ },
+ ],
+ },
+ ],
+ },
+ Object {
+ "w:p": Array [
+ Object {
+ "w:r": Array [
+ Object {
+ "w:t": Array [
+ Object {
+ "_attr": Object {
+ "xml:space": "preserve",
+ },
+ },
+ "blablabla",
+ ],
+ },
+ ],
+ },
+ ],
+ },
+ Object {
+ "w:sectPr": Array [
+ Object {
+ "w:pgSz": Object {
+ "_attr": Object {
+ "w:h": 16838,
+ "w:orient": "portrait",
+ "w:w": 11906,
+ },
+ },
+ },
+ Object {
+ "w:pgMar": Object {
+ "_attr": Object {
+ "w:bottom": "1in",
+ "w:footer": 708,
+ "w:gutter": 0,
+ "w:header": 708,
+ "w:left": "1in",
+ "w:right": "1in",
+ "w:top": "1in",
+ },
+ },
+ },
+ Object {
+ "w:pgNumType": Object {
+ "_attr": Object {},
+ },
+ },
+ Object {
+ "w:docGrid": Object {
+ "_attr": Object {
+ "w:linePitch": 360,
+ },
+ },
+ },
+ ],
+ },
+ ],
+}
+`;
+
+exports[`e2e node-heading.md 1`] = `
+Object {
+ "w:body": Array [
+ Object {
+ "w:p": Array [
+ Object {
+ "w:pPr": Array [
+ Object {
+ "w:pStyle": Object {
+ "_attr": Object {
+ "w:val": "Title",
+ },
+ },
+ },
+ ],
+ },
+ Object {
+ "w:r": Array [
+ Object {
+ "w:t": Array [
+ Object {
+ "_attr": Object {
+ "xml:space": "preserve",
+ },
+ },
+ "Alpha",
+ ],
+ },
+ ],
+ },
+ ],
+ },
+ Object {
+ "w:p": Array [
+ Object {
+ "w:r": Array [
+ Object {
+ "w:t": Array [
+ Object {
+ "_attr": Object {
+ "xml:space": "preserve",
+ },
+ },
+ "aaaa",
+ ],
+ },
+ ],
+ },
+ ],
+ },
+ Object {
+ "w:p": Array [
+ Object {
+ "w:pPr": Array [
+ Object {
+ "w:pStyle": Object {
+ "_attr": Object {
+ "w:val": "Heading1",
+ },
+ },
+ },
+ ],
+ },
+ Object {
+ "w:r": Array [
+ Object {
+ "w:t": Array [
+ Object {
+ "_attr": Object {
+ "xml:space": "preserve",
+ },
+ },
+ "Bravo",
+ ],
+ },
+ ],
+ },
+ ],
+ },
+ Object {
+ "w:p": Array [
+ Object {
+ "w:r": Array [
+ Object {
+ "w:t": Array [
+ Object {
+ "_attr": Object {
+ "xml:space": "preserve",
+ },
+ },
+ "bbbb",
+ ],
+ },
+ ],
+ },
+ ],
+ },
+ Object {
+ "w:p": Array [
+ Object {
+ "w:pPr": Array [
+ Object {
+ "w:pStyle": Object {
+ "_attr": Object {
+ "w:val": "Heading2",
+ },
+ },
+ },
+ ],
+ },
+ Object {
+ "w:r": Array [
+ Object {
+ "w:t": Array [
+ Object {
+ "_attr": Object {
+ "xml:space": "preserve",
+ },
+ },
+ "Charlie",
+ ],
+ },
+ ],
+ },
+ ],
+ },
+ Object {
+ "w:p": Array [
+ Object {
+ "w:r": Array [
+ Object {
+ "w:t": Array [
+ Object {
+ "_attr": Object {
+ "xml:space": "preserve",
+ },
+ },
+ "cccc",
+ ],
+ },
+ ],
+ },
+ ],
+ },
+ Object {
+ "w:p": Array [
+ Object {
+ "w:pPr": Array [
+ Object {
+ "w:pStyle": Object {
+ "_attr": Object {
+ "w:val": "Heading1",
+ },
+ },
+ },
+ ],
+ },
+ Object {
+ "w:r": Array [
+ Object {
+ "w:t": Array [
+ Object {
+ "_attr": Object {
+ "xml:space": "preserve",
+ },
+ },
+ "Delta",
+ ],
+ },
+ ],
+ },
+ ],
+ },
+ Object {
+ "w:p": Array [
+ Object {
+ "w:r": Array [
+ Object {
+ "w:t": Array [
+ Object {
+ "_attr": Object {
+ "xml:space": "preserve",
+ },
+ },
+ "dddd",
+ ],
+ },
+ ],
+ },
+ ],
+ },
+ Object {
+ "w:p": Array [
+ Object {
+ "w:pPr": Array [
+ Object {
+ "w:pStyle": Object {
+ "_attr": Object {
+ "w:val": "Heading2",
+ },
+ },
+ },
+ ],
+ },
+ Object {
+ "w:r": Array [
+ Object {
+ "w:t": Array [
+ Object {
+ "_attr": Object {
+ "xml:space": "preserve",
+ },
+ },
+ "E",
+ ],
+ },
+ ],
+ },
+ ],
+ },
+ Object {
+ "w:p": Array [
+ Object {
+ "w:pPr": Array [
+ Object {
+ "w:pStyle": Object {
+ "_attr": Object {
+ "w:val": "Heading3",
+ },
+ },
+ },
+ ],
+ },
+ Object {
+ "w:r": Array [
+ Object {
+ "w:t": Array [
+ Object {
+ "_attr": Object {
+ "xml:space": "preserve",
+ },
+ },
+ "F",
+ ],
+ },
+ ],
+ },
+ ],
+ },
+ Object {
+ "w:p": Array [
+ Object {
+ "w:pPr": Array [
+ Object {
+ "w:pStyle": Object {
+ "_attr": Object {
+ "w:val": "Heading4",
+ },
+ },
+ },
+ ],
+ },
+ Object {
+ "w:r": Array [
+ Object {
+ "w:t": Array [
+ Object {
+ "_attr": Object {
+ "xml:space": "preserve",
+ },
+ },
+ "G",
+ ],
+ },
+ ],
+ },
+ ],
+ },
+ Object {
+ "w:p": Array [
+ Object {
+ "w:pPr": Array [
+ Object {
+ "w:pStyle": Object {
+ "_attr": Object {
+ "w:val": "Heading5",
+ },
+ },
+ },
+ ],
+ },
+ Object {
+ "w:r": Array [
+ Object {
+ "w:t": Array [
+ Object {
+ "_attr": Object {
+ "xml:space": "preserve",
+ },
+ },
+ "H",
+ ],
+ },
+ ],
+ },
+ ],
+ },
+ Object {
+ "w:sectPr": Array [
+ Object {
+ "w:pgSz": Object {
+ "_attr": Object {
+ "w:h": 16838,
+ "w:orient": "portrait",
+ "w:w": 11906,
+ },
+ },
+ },
+ Object {
+ "w:pgMar": Object {
+ "_attr": Object {
+ "w:bottom": "1in",
+ "w:footer": 708,
+ "w:gutter": 0,
+ "w:header": 708,
+ "w:left": "1in",
+ "w:right": "1in",
+ "w:top": "1in",
+ },
+ },
+ },
+ Object {
+ "w:pgNumType": Object {
+ "_attr": Object {},
+ },
+ },
+ Object {
+ "w:docGrid": Object {
+ "_attr": Object {
+ "w:linePitch": 360,
+ },
+ },
+ },
+ ],
+ },
+ ],
+}
+`;
+
+exports[`e2e node-math.md 1`] = `
+Object {
+ "w:body": Array [
+ Object {
+ "w:p": Array [
+ Object {
+ "w:r": Array [
+ Object {
+ "w:t": Array [
+ Object {
+ "_attr": Object {
+ "xml:space": "preserve",
+ },
+ },
+ "Lift(",
+ ],
+ },
+ ],
+ },
+ Object {
+ "w:r": Array [
+ Object {
+ "w:t": Array [
+ Object {
+ "_attr": Object {
+ "xml:space": "preserve",
+ },
+ },
+ "L",
+ ],
+ },
+ ],
+ },
+ Object {
+ "w:r": Array [
+ Object {
+ "w:t": Array [
+ Object {
+ "_attr": Object {
+ "xml:space": "preserve",
+ },
+ },
+ ") can be determined by Lift Coefficient (",
+ ],
+ },
+ ],
+ },
+ Object {
+ "w:r": Array [
+ Object {
+ "w:t": Array [
+ Object {
+ "_attr": Object {
+ "xml:space": "preserve",
+ },
+ },
+ "C_L",
+ ],
+ },
+ ],
+ },
+ Object {
+ "w:r": Array [
+ Object {
+ "w:t": Array [
+ Object {
+ "_attr": Object {
+ "xml:space": "preserve",
+ },
+ },
+ ") like the following
+equation.",
+ ],
+ },
+ ],
+ },
+ ],
+ },
+ Object {
+ "w:p": Array [
+ Object {
+ "w:r": Array [
+ Object {
+ "w:t": Array [
+ Object {
+ "_attr": Object {
+ "xml:space": "preserve",
+ },
+ },
+ "L = \\\\frac{1}{2} \\\\rho v^2 S C_L",
+ ],
+ },
+ ],
+ },
+ ],
+ },
+ Object {
+ "w:sectPr": Array [
+ Object {
+ "w:pgSz": Object {
+ "_attr": Object {
+ "w:h": 16838,
+ "w:orient": "portrait",
+ "w:w": 11906,
+ },
+ },
+ },
+ Object {
+ "w:pgMar": Object {
+ "_attr": Object {
+ "w:bottom": "1in",
+ "w:footer": 708,
+ "w:gutter": 0,
+ "w:header": 708,
+ "w:left": "1in",
+ "w:right": "1in",
+ "w:top": "1in",
+ },
+ },
+ },
+ Object {
+ "w:pgNumType": Object {
+ "_attr": Object {},
+ },
+ },
+ Object {
+ "w:docGrid": Object {
+ "_attr": Object {
+ "w:linePitch": 360,
+ },
+ },
+ },
+ ],
+ },
+ ],
+}
+`;
+
+exports[`e2e node-ml.md 1`] = `
+Yo {
+ "appProperties": yi {
+ "root": Array [
+ gi {
+ "root": Object {
+ "vt": "http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes",
+ "xmlns": "http://schemas.openxmlformats.org/officeDocument/2006/extended-properties",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "vt": "xmlns:vt",
+ "xmlns": "xmlns",
+ },
+ },
+ ],
+ "rootKey": "Properties",
+ },
+ "contentTypes": Ti {
+ "root": Array [
+ bi {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/package/2006/content-types",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns",
+ },
+ },
+ _i {
+ "root": Array [
+ vi {
+ "root": Object {
+ "contentType": "image/png",
+ "extension": "png",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "extension": "Extension",
+ },
+ },
+ ],
+ "rootKey": "Default",
+ },
+ _i {
+ "root": Array [
+ vi {
+ "root": Object {
+ "contentType": "image/jpeg",
+ "extension": "jpeg",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "extension": "Extension",
+ },
+ },
+ ],
+ "rootKey": "Default",
+ },
+ _i {
+ "root": Array [
+ vi {
+ "root": Object {
+ "contentType": "image/jpeg",
+ "extension": "jpg",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "extension": "Extension",
+ },
+ },
+ ],
+ "rootKey": "Default",
+ },
+ _i {
+ "root": Array [
+ vi {
+ "root": Object {
+ "contentType": "image/bmp",
+ "extension": "bmp",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "extension": "Extension",
+ },
+ },
+ ],
+ "rootKey": "Default",
+ },
+ _i {
+ "root": Array [
+ vi {
+ "root": Object {
+ "contentType": "image/gif",
+ "extension": "gif",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "extension": "Extension",
+ },
+ },
+ ],
+ "rootKey": "Default",
+ },
+ _i {
+ "root": Array [
+ vi {
+ "root": Object {
+ "contentType": "application/vnd.openxmlformats-package.relationships+xml",
+ "extension": "rels",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "extension": "Extension",
+ },
+ },
+ ],
+ "rootKey": "Default",
+ },
+ _i {
+ "root": Array [
+ vi {
+ "root": Object {
+ "contentType": "application/xml",
+ "extension": "xml",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "extension": "Extension",
+ },
+ },
+ ],
+ "rootKey": "Default",
+ },
+ Ei {
+ "root": Array [
+ xi {
+ "root": Object {
+ "contentType": "application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml",
+ "partName": "/word/document.xml",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "partName": "PartName",
+ },
+ },
+ ],
+ "rootKey": "Override",
+ },
+ Ei {
+ "root": Array [
+ xi {
+ "root": Object {
+ "contentType": "application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml",
+ "partName": "/word/styles.xml",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "partName": "PartName",
+ },
+ },
+ ],
+ "rootKey": "Override",
+ },
+ Ei {
+ "root": Array [
+ xi {
+ "root": Object {
+ "contentType": "application/vnd.openxmlformats-package.core-properties+xml",
+ "partName": "/docProps/core.xml",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "partName": "PartName",
+ },
+ },
+ ],
+ "rootKey": "Override",
+ },
+ Ei {
+ "root": Array [
+ xi {
+ "root": Object {
+ "contentType": "application/vnd.openxmlformats-officedocument.custom-properties+xml",
+ "partName": "/docProps/custom.xml",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "partName": "PartName",
+ },
+ },
+ ],
+ "rootKey": "Override",
+ },
+ Ei {
+ "root": Array [
+ xi {
+ "root": Object {
+ "contentType": "application/vnd.openxmlformats-officedocument.extended-properties+xml",
+ "partName": "/docProps/app.xml",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "partName": "PartName",
+ },
+ },
+ ],
+ "rootKey": "Override",
+ },
+ Ei {
+ "root": Array [
+ xi {
+ "root": Object {
+ "contentType": "application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml",
+ "partName": "/word/numbering.xml",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "partName": "PartName",
+ },
+ },
+ ],
+ "rootKey": "Override",
+ },
+ Ei {
+ "root": Array [
+ xi {
+ "root": Object {
+ "contentType": "application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml",
+ "partName": "/word/footnotes.xml",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "partName": "PartName",
+ },
+ },
+ ],
+ "rootKey": "Override",
+ },
+ Ei {
+ "root": Array [
+ xi {
+ "root": Object {
+ "contentType": "application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml",
+ "partName": "/word/settings.xml",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "partName": "PartName",
+ },
+ },
+ ],
+ "rootKey": "Override",
+ },
+ ],
+ "rootKey": "Types",
+ },
+ "coreProperties": Ai {
+ "root": Array [
+ An {
+ "root": Object {
+ "cp": "http://schemas.openxmlformats.org/package/2006/metadata/core-properties",
+ "dc": "http://purl.org/dc/elements/1.1/",
+ "dcmitype": "http://purl.org/dc/dcmitype/",
+ "dcterms": "http://purl.org/dc/terms/",
+ "xsi": "http://www.w3.org/2001/XMLSchema-instance",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "Ignorable": "mc:Ignorable",
+ "cp": "xmlns:cp",
+ "dc": "xmlns:dc",
+ "dcmitype": "xmlns:dcmitype",
+ "dcterms": "xmlns:dcterms",
+ "m": "xmlns:m",
+ "mc": "xmlns:mc",
+ "o": "xmlns:o",
+ "r": "xmlns:r",
+ "type": "xsi:type",
+ "v": "xmlns:v",
+ "w": "xmlns:w",
+ "w10": "xmlns:w10",
+ "w14": "xmlns:w14",
+ "w15": "xmlns:w15",
+ "wne": "xmlns:wne",
+ "wp": "xmlns:wp",
+ "wp14": "xmlns:wp14",
+ "wpc": "xmlns:wpc",
+ "wpg": "xmlns:wpg",
+ "wpi": "xmlns:wpi",
+ "wps": "xmlns:wps",
+ "xsi": "xmlns:xsi",
+ },
+ },
+ M {
+ "root": Array [
+ "Un-named",
+ ],
+ "rootKey": "dc:creator",
+ },
+ M {
+ "root": Array [
+ "Un-named",
+ ],
+ "rootKey": "cp:lastModifiedBy",
+ },
+ M {
+ "root": Array [
+ "1",
+ ],
+ "rootKey": "cp:revision",
+ },
+ Si {
+ "root": Array [
+ An {
+ "root": Object {
+ "type": "dcterms:W3CDTF",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "Ignorable": "mc:Ignorable",
+ "cp": "xmlns:cp",
+ "dc": "xmlns:dc",
+ "dcmitype": "xmlns:dcmitype",
+ "dcterms": "xmlns:dcterms",
+ "m": "xmlns:m",
+ "mc": "xmlns:mc",
+ "o": "xmlns:o",
+ "r": "xmlns:r",
+ "type": "xsi:type",
+ "v": "xmlns:v",
+ "w": "xmlns:w",
+ "w10": "xmlns:w10",
+ "w14": "xmlns:w14",
+ "w15": "xmlns:w15",
+ "wne": "xmlns:wne",
+ "wp": "xmlns:wp",
+ "wp14": "xmlns:wp14",
+ "wpc": "xmlns:wpc",
+ "wpg": "xmlns:wpg",
+ "wpi": "xmlns:wpi",
+ "wps": "xmlns:wps",
+ "xsi": "xmlns:xsi",
+ },
+ },
+ "2022-01-08T16:22:25.835Z",
+ ],
+ "rootKey": "dcterms:created",
+ },
+ Si {
+ "root": Array [
+ An {
+ "root": Object {
+ "type": "dcterms:W3CDTF",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "Ignorable": "mc:Ignorable",
+ "cp": "xmlns:cp",
+ "dc": "xmlns:dc",
+ "dcmitype": "xmlns:dcmitype",
+ "dcterms": "xmlns:dcterms",
+ "m": "xmlns:m",
+ "mc": "xmlns:mc",
+ "o": "xmlns:o",
+ "r": "xmlns:r",
+ "type": "xsi:type",
+ "v": "xmlns:v",
+ "w": "xmlns:w",
+ "w10": "xmlns:w10",
+ "w14": "xmlns:w14",
+ "w15": "xmlns:w15",
+ "wne": "xmlns:wne",
+ "wp": "xmlns:wp",
+ "wp14": "xmlns:wp14",
+ "wpc": "xmlns:wpc",
+ "wpg": "xmlns:wpg",
+ "wpi": "xmlns:wpi",
+ "wps": "xmlns:wps",
+ "xsi": "xmlns:xsi",
+ },
+ },
+ "2022-01-08T16:22:25.835Z",
+ ],
+ "rootKey": "dcterms:modified",
+ },
+ ],
+ "rootKey": "cp:coreProperties",
+ },
+ "currentRelationshipId": 5,
+ "customProperties": Ci {
+ "nextId": 2,
+ "properties": Array [],
+ "root": Array [
+ Ri {
+ "root": Object {
+ "vt": "http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes",
+ "xmlns": "http://schemas.openxmlformats.org/officeDocument/2006/custom-properties",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "vt": "xmlns:vt",
+ "xmlns": "xmlns",
+ },
+ },
+ ],
+ "rootKey": "Properties",
+ },
+ "documentWrapper": Cn {
+ "document": In {
+ "body": xn {
+ "root": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ undefined,
+ ],
+ "rootKey": "w:pPr",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "
+This is html
+
",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ zr {
+ "options": Object {
+ "children": Array [
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "mailto:foobarbaz",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "link": "mailto:foobarbaz",
+ },
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aaaaaa",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:body",
+ "sections": Array [
+ _n {
+ "root": Array [
+ fn {
+ "root": Array [
+ dn {
+ "root": Object {
+ "height": 16838,
+ "orientation": "portrait",
+ "width": 11906,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "height": "w:h",
+ "orientation": "w:orient",
+ "width": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:pgSz",
+ },
+ ln {
+ "root": Array [
+ un {
+ "root": Object {
+ "bottom": "1in",
+ "footer": 708,
+ "gutter": 0,
+ "header": 708,
+ "left": "1in",
+ "right": "1in",
+ "top": "1in",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "header": "w:header",
+ "left": "w:left",
+ "right": "w:right",
+ "top": "w:top",
+ },
+ },
+ ],
+ "rootKey": "w:pgMar",
+ },
+ pn {
+ "root": Array [
+ hn {
+ "root": Object {
+ "formatType": undefined,
+ "separator": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "formatType": "w:fmt",
+ "separator": "w:chapSep",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:pgNumType",
+ },
+ nn {
+ "root": Array [
+ rn {
+ "root": Object {
+ "charSpace": undefined,
+ "linePitch": 360,
+ "type": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "charSpace": "w:charSpace",
+ "linePitch": "w:linePitch",
+ "type": "w:type",
+ },
+ },
+ ],
+ "rootKey": "w:docGrid",
+ },
+ ],
+ "rootKey": "w:sectPr",
+ },
+ ],
+ },
+ "root": Array [
+ An {
+ "root": Object {
+ "Ignorable": "w14 w15 wp14",
+ "m": "http://schemas.openxmlformats.org/officeDocument/2006/math",
+ "mc": "http://schemas.openxmlformats.org/markup-compatibility/2006",
+ "o": "urn:schemas-microsoft-com:office:office",
+ "r": "http://schemas.openxmlformats.org/officeDocument/2006/relationships",
+ "v": "urn:schemas-microsoft-com:vml",
+ "w": "http://schemas.openxmlformats.org/wordprocessingml/2006/main",
+ "w10": "urn:schemas-microsoft-com:office:word",
+ "w14": "http://schemas.microsoft.com/office/word/2010/wordml",
+ "w15": "http://schemas.microsoft.com/office/word/2012/wordml",
+ "wne": "http://schemas.microsoft.com/office/word/2006/wordml",
+ "wp": "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing",
+ "wp14": "http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing",
+ "wpc": "http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas",
+ "wpg": "http://schemas.microsoft.com/office/word/2010/wordprocessingGroup",
+ "wpi": "http://schemas.microsoft.com/office/word/2010/wordprocessingInk",
+ "wps": "http://schemas.microsoft.com/office/word/2010/wordprocessingShape",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "Ignorable": "mc:Ignorable",
+ "cp": "xmlns:cp",
+ "dc": "xmlns:dc",
+ "dcmitype": "xmlns:dcmitype",
+ "dcterms": "xmlns:dcterms",
+ "m": "xmlns:m",
+ "mc": "xmlns:mc",
+ "o": "xmlns:o",
+ "r": "xmlns:r",
+ "type": "xsi:type",
+ "v": "xmlns:v",
+ "w": "xmlns:w",
+ "w10": "xmlns:w10",
+ "w14": "xmlns:w14",
+ "w15": "xmlns:w15",
+ "wne": "xmlns:wne",
+ "wp": "xmlns:wp",
+ "wp14": "xmlns:wp14",
+ "wpc": "xmlns:wpc",
+ "wpg": "xmlns:wpg",
+ "wpi": "xmlns:wpi",
+ "wps": "xmlns:wps",
+ "xsi": "xmlns:xsi",
+ },
+ },
+ Rn {
+ "root": Array [
+ Sn {
+ "root": Object {
+ "color": undefined,
+ "themeColor": undefined,
+ "themeShade": undefined,
+ "themeTint": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "color": "w:color",
+ "themeColor": "w:themeColor",
+ "themeShade": "w:themeShade",
+ "themeTint": "w:themeTint",
+ },
+ },
+ ],
+ "rootKey": "w:background",
+ },
+ xn {
+ "root": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ undefined,
+ ],
+ "rootKey": "w:pPr",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "
+This is html
+
",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ zr {
+ "options": Object {
+ "children": Array [
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "mailto:foobarbaz",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "link": "mailto:foobarbaz",
+ },
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aaaaaa",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:body",
+ "sections": Array [
+ _n {
+ "root": Array [
+ fn {
+ "root": Array [
+ dn {
+ "root": Object {
+ "height": 16838,
+ "orientation": "portrait",
+ "width": 11906,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "height": "w:h",
+ "orientation": "w:orient",
+ "width": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:pgSz",
+ },
+ ln {
+ "root": Array [
+ un {
+ "root": Object {
+ "bottom": "1in",
+ "footer": 708,
+ "gutter": 0,
+ "header": 708,
+ "left": "1in",
+ "right": "1in",
+ "top": "1in",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "header": "w:header",
+ "left": "w:left",
+ "right": "w:right",
+ "top": "w:top",
+ },
+ },
+ ],
+ "rootKey": "w:pgMar",
+ },
+ pn {
+ "root": Array [
+ hn {
+ "root": Object {
+ "formatType": undefined,
+ "separator": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "formatType": "w:fmt",
+ "separator": "w:chapSep",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:pgNumType",
+ },
+ nn {
+ "root": Array [
+ rn {
+ "root": Object {
+ "charSpace": undefined,
+ "linePitch": 360,
+ "type": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "charSpace": "w:charSpace",
+ "linePitch": "w:linePitch",
+ "type": "w:type",
+ },
+ },
+ ],
+ "rootKey": "w:docGrid",
+ },
+ ],
+ "rootKey": "w:sectPr",
+ },
+ ],
+ },
+ ],
+ "rootKey": "w:document",
+ },
+ "relationships": On {
+ "root": Array [
+ Nn {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/package/2006/relationships",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns",
+ },
+ },
+ Fr {
+ "root": Array [
+ Pr {
+ "root": Object {
+ "id": "rId1",
+ "target": "styles.xml",
+ "targetMode": undefined,
+ "type": "http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "id": "Id",
+ "target": "Target",
+ "targetMode": "TargetMode",
+ "type": "Type",
+ },
+ },
+ ],
+ "rootKey": "Relationship",
+ },
+ Fr {
+ "root": Array [
+ Pr {
+ "root": Object {
+ "id": "rId2",
+ "target": "numbering.xml",
+ "targetMode": undefined,
+ "type": "http://schemas.openxmlformats.org/officeDocument/2006/relationships/numbering",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "id": "Id",
+ "target": "Target",
+ "targetMode": "TargetMode",
+ "type": "Type",
+ },
+ },
+ ],
+ "rootKey": "Relationship",
+ },
+ Fr {
+ "root": Array [
+ Pr {
+ "root": Object {
+ "id": "rId3",
+ "target": "footnotes.xml",
+ "targetMode": undefined,
+ "type": "http://schemas.openxmlformats.org/officeDocument/2006/relationships/footnotes",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "id": "Id",
+ "target": "Target",
+ "targetMode": "TargetMode",
+ "type": "Type",
+ },
+ },
+ ],
+ "rootKey": "Relationship",
+ },
+ Fr {
+ "root": Array [
+ Pr {
+ "root": Object {
+ "id": "rId4",
+ "target": "settings.xml",
+ "targetMode": undefined,
+ "type": "http://schemas.openxmlformats.org/officeDocument/2006/relationships/settings",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "id": "Id",
+ "target": "Target",
+ "targetMode": "TargetMode",
+ "type": "Type",
+ },
+ },
+ ],
+ "rootKey": "Relationship",
+ },
+ ],
+ "rootKey": "Relationships",
+ },
+ },
+ "fileRelationships": On {
+ "root": Array [
+ Nn {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/package/2006/relationships",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns",
+ },
+ },
+ Fr {
+ "root": Array [
+ Pr {
+ "root": Object {
+ "id": "rId1",
+ "target": "word/document.xml",
+ "targetMode": undefined,
+ "type": "http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "id": "Id",
+ "target": "Target",
+ "targetMode": "TargetMode",
+ "type": "Type",
+ },
+ },
+ ],
+ "rootKey": "Relationship",
+ },
+ Fr {
+ "root": Array [
+ Pr {
+ "root": Object {
+ "id": "rId2",
+ "target": "docProps/core.xml",
+ "targetMode": undefined,
+ "type": "http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "id": "Id",
+ "target": "Target",
+ "targetMode": "TargetMode",
+ "type": "Type",
+ },
+ },
+ ],
+ "rootKey": "Relationship",
+ },
+ Fr {
+ "root": Array [
+ Pr {
+ "root": Object {
+ "id": "rId3",
+ "target": "docProps/app.xml",
+ "targetMode": undefined,
+ "type": "http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "id": "Id",
+ "target": "Target",
+ "targetMode": "TargetMode",
+ "type": "Type",
+ },
+ },
+ ],
+ "rootKey": "Relationship",
+ },
+ Fr {
+ "root": Array [
+ Pr {
+ "root": Object {
+ "id": "rId4",
+ "target": "docProps/custom.xml",
+ "targetMode": undefined,
+ "type": "http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "id": "Id",
+ "target": "Target",
+ "targetMode": "TargetMode",
+ "type": "Type",
+ },
+ },
+ ],
+ "rootKey": "Relationship",
+ },
+ ],
+ "rootKey": "Relationships",
+ },
+ "footers": Array [],
+ "footnotesWrapper": Wi {
+ "footnotess": Gi {
+ "root": Array [
+ Ki {
+ "root": Object {
+ "Ignorable": "w14 w15 wp14",
+ "m": "http://schemas.openxmlformats.org/officeDocument/2006/math",
+ "mc": "http://schemas.openxmlformats.org/markup-compatibility/2006",
+ "o": "urn:schemas-microsoft-com:office:office",
+ "r": "http://schemas.openxmlformats.org/officeDocument/2006/relationships",
+ "v": "urn:schemas-microsoft-com:vml",
+ "w": "http://schemas.openxmlformats.org/wordprocessingml/2006/main",
+ "w10": "urn:schemas-microsoft-com:office:word",
+ "w14": "http://schemas.microsoft.com/office/word/2010/wordml",
+ "w15": "http://schemas.microsoft.com/office/word/2012/wordml",
+ "wne": "http://schemas.microsoft.com/office/word/2006/wordml",
+ "wp": "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing",
+ "wp14": "http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing",
+ "wpc": "http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas",
+ "wpg": "http://schemas.microsoft.com/office/word/2010/wordprocessingGroup",
+ "wpi": "http://schemas.microsoft.com/office/word/2010/wordprocessingInk",
+ "wps": "http://schemas.microsoft.com/office/word/2010/wordprocessingShape",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "Ignorable": "mc:Ignorable",
+ "m": "xmlns:m",
+ "mc": "xmlns:mc",
+ "o": "xmlns:o",
+ "r": "xmlns:r",
+ "v": "xmlns:v",
+ "w": "xmlns:w",
+ "w10": "xmlns:w10",
+ "w14": "xmlns:w14",
+ "w15": "xmlns:w15",
+ "wne": "xmlns:wne",
+ "wp": "xmlns:wp",
+ "wp14": "xmlns:wp14",
+ "wpc": "xmlns:wpc",
+ "wpg": "xmlns:wpg",
+ "wpi": "xmlns:wpi",
+ "wps": "xmlns:wps",
+ },
+ },
+ Mi {
+ "root": Array [
+ Pi {
+ "root": Object {
+ "id": -1,
+ "type": "separator",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "id": "w:id",
+ "type": "w:type",
+ },
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Rr {
+ "root": Array [
+ Sr {
+ "root": Object {
+ "after": 0,
+ "line": 240,
+ "lineRule": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "after": "w:after",
+ "before": "w:before",
+ "line": "w:line",
+ "lineRule": "w:lineRule",
+ },
+ },
+ ],
+ "rootKey": "w:spacing",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Rr {
+ "root": Array [
+ Sr {
+ "root": Object {
+ "after": 0,
+ "line": 240,
+ "lineRule": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "after": "w:after",
+ "before": "w:before",
+ "line": "w:line",
+ "lineRule": "w:lineRule",
+ },
+ },
+ ],
+ "rootKey": "w:spacing",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Bi {
+ "properties": St {
+ "root": Array [
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "FootnoteReference",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:rStyle",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "FootnoteReference",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:rStyle",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Fi {
+ "root": Array [],
+ "rootKey": "w:footnoteRef",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ji {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Hi {
+ "root": Array [],
+ "rootKey": "w:separator",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:footnote",
+ },
+ Mi {
+ "root": Array [
+ Pi {
+ "root": Object {
+ "id": 0,
+ "type": "continuationSeparator",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "id": "w:id",
+ "type": "w:type",
+ },
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Rr {
+ "root": Array [
+ Sr {
+ "root": Object {
+ "after": 0,
+ "line": 240,
+ "lineRule": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "after": "w:after",
+ "before": "w:before",
+ "line": "w:line",
+ "lineRule": "w:lineRule",
+ },
+ },
+ ],
+ "rootKey": "w:spacing",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Rr {
+ "root": Array [
+ Sr {
+ "root": Object {
+ "after": 0,
+ "line": 240,
+ "lineRule": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "after": "w:after",
+ "before": "w:before",
+ "line": "w:line",
+ "lineRule": "w:lineRule",
+ },
+ },
+ ],
+ "rootKey": "w:spacing",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Bi {
+ "properties": St {
+ "root": Array [
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "FootnoteReference",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:rStyle",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "FootnoteReference",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:rStyle",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Fi {
+ "root": Array [],
+ "rootKey": "w:footnoteRef",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ zi {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Ui {
+ "root": Array [],
+ "rootKey": "w:continuationSeparator",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:footnote",
+ },
+ ],
+ "rootKey": "w:footnotes",
+ },
+ "relationships": On {
+ "root": Array [
+ Nn {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/package/2006/relationships",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns",
+ },
+ },
+ ],
+ "rootKey": "Relationships",
+ },
+ },
+ "headers": Array [],
+ "media": qi {
+ "map": Map {},
+ },
+ "numbering": yo {
+ "abstractNumberingMap": Map {
+ "default-bullet-numbering" => uo {
+ "id": 15,
+ "root": Array [
+ co {
+ "root": Object {
+ "abstractNumId": 15,
+ "restartNumberingAfterBreak": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "abstractNumId": "w:abstractNumId",
+ "restartNumberingAfterBreak": "w15:restartNumberingAfterBreak",
+ },
+ },
+ ao {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "hybridMultilevel",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:multiLevelType",
+ },
+ io {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 720,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ B {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:start",
+ },
+ to {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "bullet",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:numFmt",
+ },
+ eo {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "●",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlText",
+ },
+ ro {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlJc",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 720,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Ji {
+ "root": Object {
+ "ilvl": 0,
+ "tentative": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "ilvl": "w:ilvl",
+ "tentative": "w15:tentative",
+ },
+ },
+ ],
+ "rootKey": "w:lvl",
+ "runProperties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ },
+ io {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 1440,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ B {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:start",
+ },
+ to {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "bullet",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:numFmt",
+ },
+ eo {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "○",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlText",
+ },
+ ro {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlJc",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 1440,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Ji {
+ "root": Object {
+ "ilvl": 1,
+ "tentative": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "ilvl": "w:ilvl",
+ "tentative": "w15:tentative",
+ },
+ },
+ ],
+ "rootKey": "w:lvl",
+ "runProperties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ },
+ io {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 2160,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ B {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:start",
+ },
+ to {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "bullet",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:numFmt",
+ },
+ eo {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "■",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlText",
+ },
+ ro {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlJc",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 2160,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Ji {
+ "root": Object {
+ "ilvl": 2,
+ "tentative": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "ilvl": "w:ilvl",
+ "tentative": "w15:tentative",
+ },
+ },
+ ],
+ "rootKey": "w:lvl",
+ "runProperties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ },
+ io {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 2880,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ B {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:start",
+ },
+ to {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "bullet",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:numFmt",
+ },
+ eo {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "●",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlText",
+ },
+ ro {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlJc",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 2880,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Ji {
+ "root": Object {
+ "ilvl": 3,
+ "tentative": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "ilvl": "w:ilvl",
+ "tentative": "w15:tentative",
+ },
+ },
+ ],
+ "rootKey": "w:lvl",
+ "runProperties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ },
+ io {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 3600,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ B {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:start",
+ },
+ to {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "bullet",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:numFmt",
+ },
+ eo {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "○",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlText",
+ },
+ ro {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlJc",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 3600,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Ji {
+ "root": Object {
+ "ilvl": 4,
+ "tentative": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "ilvl": "w:ilvl",
+ "tentative": "w15:tentative",
+ },
+ },
+ ],
+ "rootKey": "w:lvl",
+ "runProperties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ },
+ io {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 4320,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ B {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:start",
+ },
+ to {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "bullet",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:numFmt",
+ },
+ eo {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "■",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlText",
+ },
+ ro {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlJc",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 4320,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Ji {
+ "root": Object {
+ "ilvl": 5,
+ "tentative": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "ilvl": "w:ilvl",
+ "tentative": "w15:tentative",
+ },
+ },
+ ],
+ "rootKey": "w:lvl",
+ "runProperties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ },
+ io {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 5040,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ B {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:start",
+ },
+ to {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "bullet",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:numFmt",
+ },
+ eo {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "●",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlText",
+ },
+ ro {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlJc",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 5040,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Ji {
+ "root": Object {
+ "ilvl": 6,
+ "tentative": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "ilvl": "w:ilvl",
+ "tentative": "w15:tentative",
+ },
+ },
+ ],
+ "rootKey": "w:lvl",
+ "runProperties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ },
+ io {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 5760,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ B {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:start",
+ },
+ to {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "bullet",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:numFmt",
+ },
+ eo {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "●",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlText",
+ },
+ ro {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlJc",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 5760,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Ji {
+ "root": Object {
+ "ilvl": 7,
+ "tentative": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "ilvl": "w:ilvl",
+ "tentative": "w15:tentative",
+ },
+ },
+ ],
+ "rootKey": "w:lvl",
+ "runProperties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ },
+ io {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 6480,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ B {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:start",
+ },
+ to {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "bullet",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:numFmt",
+ },
+ eo {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "●",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlText",
+ },
+ ro {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlJc",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 6480,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Ji {
+ "root": Object {
+ "ilvl": 8,
+ "tentative": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "ilvl": "w:ilvl",
+ "tentative": "w15:tentative",
+ },
+ },
+ ],
+ "rootKey": "w:lvl",
+ "runProperties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ },
+ ],
+ "rootKey": "w:abstractNum",
+ },
+ },
+ "concreteNumberingMap": Map {
+ "default-bullet-numbering" => po {
+ "instance": 0,
+ "numId": 1,
+ "reference": "default-bullet-numbering",
+ "root": Array [
+ ho {
+ "root": Object {
+ "numId": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "numId": "w:numId",
+ },
+ },
+ lo {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 15,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:abstractNumId",
+ },
+ mo {
+ "root": Array [
+ fo {
+ "root": Object {
+ "ilvl": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "ilvl": "w:ilvl",
+ },
+ },
+ go {
+ "root": Array [
+ wo {
+ "root": Object {
+ "val": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:startOverride",
+ },
+ ],
+ "rootKey": "w:lvlOverride",
+ },
+ ],
+ "rootKey": "w:num",
+ },
+ },
+ "referenceConfigMap": Map {},
+ "root": Array [
+ An {
+ "root": Object {
+ "Ignorable": "w14 w15 wp14",
+ "m": "http://schemas.openxmlformats.org/officeDocument/2006/math",
+ "mc": "http://schemas.openxmlformats.org/markup-compatibility/2006",
+ "o": "urn:schemas-microsoft-com:office:office",
+ "r": "http://schemas.openxmlformats.org/officeDocument/2006/relationships",
+ "v": "urn:schemas-microsoft-com:vml",
+ "w": "http://schemas.openxmlformats.org/wordprocessingml/2006/main",
+ "w10": "urn:schemas-microsoft-com:office:word",
+ "w14": "http://schemas.microsoft.com/office/word/2010/wordml",
+ "w15": "http://schemas.microsoft.com/office/word/2012/wordml",
+ "wne": "http://schemas.microsoft.com/office/word/2006/wordml",
+ "wp": "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing",
+ "wp14": "http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing",
+ "wpc": "http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas",
+ "wpg": "http://schemas.microsoft.com/office/word/2010/wordprocessingGroup",
+ "wpi": "http://schemas.microsoft.com/office/word/2010/wordprocessingInk",
+ "wps": "http://schemas.microsoft.com/office/word/2010/wordprocessingShape",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "Ignorable": "mc:Ignorable",
+ "cp": "xmlns:cp",
+ "dc": "xmlns:dc",
+ "dcmitype": "xmlns:dcmitype",
+ "dcterms": "xmlns:dcterms",
+ "m": "xmlns:m",
+ "mc": "xmlns:mc",
+ "o": "xmlns:o",
+ "r": "xmlns:r",
+ "type": "xsi:type",
+ "v": "xmlns:v",
+ "w": "xmlns:w",
+ "w10": "xmlns:w10",
+ "w14": "xmlns:w14",
+ "w15": "xmlns:w15",
+ "wne": "xmlns:wne",
+ "wp": "xmlns:wp",
+ "wp14": "xmlns:wp14",
+ "wpc": "xmlns:wpc",
+ "wpg": "xmlns:wpg",
+ "wpi": "xmlns:wpi",
+ "wps": "xmlns:wps",
+ "xsi": "xmlns:xsi",
+ },
+ },
+ ],
+ "rootKey": "w:numbering",
+ },
+ "settings": Eo {
+ "root": Array [
+ xo {
+ "root": Object {
+ "Ignorable": "w14 w15 wp14",
+ "m": "http://schemas.openxmlformats.org/officeDocument/2006/math",
+ "mc": "http://schemas.openxmlformats.org/markup-compatibility/2006",
+ "o": "urn:schemas-microsoft-com:office:office",
+ "r": "http://schemas.openxmlformats.org/officeDocument/2006/relationships",
+ "v": "urn:schemas-microsoft-com:vml",
+ "w": "http://schemas.openxmlformats.org/wordprocessingml/2006/main",
+ "w10": "urn:schemas-microsoft-com:office:word",
+ "w14": "http://schemas.microsoft.com/office/word/2010/wordml",
+ "w15": "http://schemas.microsoft.com/office/word/2012/wordml",
+ "wne": "http://schemas.microsoft.com/office/word/2006/wordml",
+ "wp": "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing",
+ "wp14": "http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing",
+ "wpc": "http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas",
+ "wpg": "http://schemas.microsoft.com/office/word/2010/wordprocessingGroup",
+ "wpi": "http://schemas.microsoft.com/office/word/2010/wordprocessingInk",
+ "wps": "http://schemas.microsoft.com/office/word/2010/wordprocessingShape",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "Ignorable": "mc:Ignorable",
+ "m": "xmlns:m",
+ "mc": "xmlns:mc",
+ "o": "xmlns:o",
+ "r": "xmlns:r",
+ "v": "xmlns:v",
+ "w": "xmlns:w",
+ "w10": "xmlns:w10",
+ "w14": "xmlns:w14",
+ "w15": "xmlns:w15",
+ "wne": "xmlns:wne",
+ "wp": "xmlns:wp",
+ "wp14": "xmlns:wp14",
+ "wpc": "xmlns:wpc",
+ "wpg": "xmlns:wpg",
+ "wpi": "xmlns:wpi",
+ "wps": "xmlns:wps",
+ },
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:displayBackgroundShape",
+ },
+ L {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": false,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:evenAndOddHeaders",
+ },
+ _o {
+ "root": Array [
+ vo {
+ "root": Array [
+ bo {
+ "root": Object {
+ "name": "compatibilityMode",
+ "uri": "http://schemas.microsoft.com/office/word",
+ "version": 15,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "name": "w:name",
+ "uri": "w:uri",
+ "version": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:compatSetting",
+ },
+ ],
+ "rootKey": "w:compat",
+ },
+ ],
+ "rootKey": "w:settings",
+ },
+ "styles": Wo {
+ "root": Array [
+ An {
+ "root": Object {
+ "Ignorable": "w14 w15",
+ "mc": "http://schemas.openxmlformats.org/markup-compatibility/2006",
+ "r": "http://schemas.openxmlformats.org/officeDocument/2006/relationships",
+ "w": "http://schemas.openxmlformats.org/wordprocessingml/2006/main",
+ "w14": "http://schemas.microsoft.com/office/word/2010/wordml",
+ "w15": "http://schemas.microsoft.com/office/word/2012/wordml",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "Ignorable": "mc:Ignorable",
+ "cp": "xmlns:cp",
+ "dc": "xmlns:dc",
+ "dcmitype": "xmlns:dcmitype",
+ "dcterms": "xmlns:dcterms",
+ "m": "xmlns:m",
+ "mc": "xmlns:mc",
+ "o": "xmlns:o",
+ "r": "xmlns:r",
+ "type": "xsi:type",
+ "v": "xmlns:v",
+ "w": "xmlns:w",
+ "w10": "xmlns:w10",
+ "w14": "xmlns:w14",
+ "w15": "xmlns:w15",
+ "wne": "xmlns:wne",
+ "wp": "xmlns:wp",
+ "wp14": "xmlns:wp14",
+ "wpc": "xmlns:wpc",
+ "wpg": "xmlns:wpg",
+ "wpi": "xmlns:wpi",
+ "wps": "xmlns:wps",
+ "xsi": "xmlns:xsi",
+ },
+ },
+ Xo {
+ "paragraphPropertiesDefaults": Vo {
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ ],
+ "rootKey": "w:pPrDefault",
+ },
+ "root": Array [
+ $o {
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:rPrDefault",
+ },
+ Vo {
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ ],
+ "rootKey": "w:pPrDefault",
+ },
+ ],
+ "rootKey": "w:docDefaults",
+ "runPropertiesDefaults": $o {
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:rPrDefault",
+ },
+ },
+ ko {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "Title",
+ "type": "paragraph",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "Title",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:next",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:qFormat",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 56,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:sz",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 56,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:szCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 56,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:sz",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 56,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:szCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ },
+ Do {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "Heading1",
+ "type": "paragraph",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "Heading 1",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:next",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:qFormat",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "2E74B5",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 32,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:sz",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 32,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:szCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "2E74B5",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 32,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:sz",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 32,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:szCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ },
+ Lo {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "Heading2",
+ "type": "paragraph",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "Heading 2",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:next",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:qFormat",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "2E74B5",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 26,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:sz",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 26,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:szCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "2E74B5",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 26,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:sz",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 26,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:szCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ },
+ Po {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "Heading3",
+ "type": "paragraph",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "Heading 3",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:next",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:qFormat",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "1F4D78",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 24,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:sz",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 24,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:szCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "1F4D78",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 24,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:sz",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 24,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:szCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ },
+ Fo {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "Heading4",
+ "type": "paragraph",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "Heading 4",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:next",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:qFormat",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:i",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:iCs",
+ },
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "2E74B5",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:i",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:iCs",
+ },
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "2E74B5",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ },
+ Bo {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "Heading5",
+ "type": "paragraph",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "Heading 5",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:next",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:qFormat",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "2E74B5",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "2E74B5",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ },
+ Mo {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "Heading6",
+ "type": "paragraph",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "Heading 6",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:next",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:qFormat",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "1F4D78",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "1F4D78",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ },
+ Uo {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "Strong",
+ "type": "paragraph",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "Strong",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:next",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:qFormat",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ },
+ zo {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "ListParagraph",
+ "type": "paragraph",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "List Paragraph",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:qFormat",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ },
+ Go {
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "Hyperlink",
+ "type": "character",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "Hyperlink",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "DefaultParagraphFont",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ So {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": 99,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:uiPriority",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:unhideWhenUsed",
+ },
+ St {
+ "root": Array [
+ At {
+ "root": Array [
+ a {
+ "root": Object {
+ "color": undefined,
+ "val": "single",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:u",
+ },
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "0563C1",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [
+ At {
+ "root": Array [
+ a {
+ "root": Object {
+ "color": undefined,
+ "val": "single",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:u",
+ },
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "0563C1",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ },
+ jo {
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "FootnoteReference",
+ "type": "character",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "footnote reference",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "DefaultParagraphFont",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ So {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": 99,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:uiPriority",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:semiHidden",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:unhideWhenUsed",
+ },
+ St {
+ "root": Array [
+ Et {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "superscript",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:vertAlign",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [
+ Et {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "superscript",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:vertAlign",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ },
+ Ho {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Rr {
+ "root": Array [
+ Sr {
+ "root": Object {
+ "after": 0,
+ "line": 240,
+ "lineRule": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "after": "w:after",
+ "before": "w:before",
+ "line": "w:line",
+ "lineRule": "w:lineRule",
+ },
+ },
+ ],
+ "rootKey": "w:spacing",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "FootnoteText",
+ "type": "paragraph",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "footnote text",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "FootnoteTextChar",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:link",
+ },
+ So {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": 99,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:uiPriority",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:semiHidden",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:unhideWhenUsed",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Rr {
+ "root": Array [
+ Sr {
+ "root": Object {
+ "after": 0,
+ "line": 240,
+ "lineRule": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "after": "w:after",
+ "before": "w:before",
+ "line": "w:line",
+ "lineRule": "w:lineRule",
+ },
+ },
+ ],
+ "rootKey": "w:spacing",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 20,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:sz",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 20,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:szCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 20,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:sz",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 20,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:szCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ },
+ Ko {
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "FootnoteTextChar",
+ "type": "character",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "Footnote Text Char",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "DefaultParagraphFont",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "FootnoteText",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:link",
+ },
+ So {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": 99,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:uiPriority",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:semiHidden",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:unhideWhenUsed",
+ },
+ St {
+ "root": Array [
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 20,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:sz",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 20,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:szCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 20,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:sz",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 20,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:szCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ },
+ ],
+ "rootKey": "w:styles",
+ },
+}
+`;
+
+exports[`e2e node-paragraph.md 1`] = `
+Object {
+ "w:body": Array [
+ Object {
+ "w:p": Array [
+ Object {
+ "w:r": Array [
+ Object {
+ "w:t": Array [
+ Object {
+ "_attr": Object {
+ "xml:space": "preserve",
+ },
+ },
+ "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.",
+ ],
+ },
+ ],
+ },
+ ],
+ },
+ Object {
+ "w:p": Array [
+ Object {
+ "w:r": Array [
+ Object {
+ "w:t": Array [
+ Object {
+ "_attr": Object {
+ "xml:space": "preserve",
+ },
+ },
+ "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.",
+ ],
+ },
+ ],
+ },
+ ],
+ },
+ Object {
+ "w:sectPr": Array [
+ Object {
+ "w:pgSz": Object {
+ "_attr": Object {
+ "w:h": 16838,
+ "w:orient": "portrait",
+ "w:w": 11906,
+ },
+ },
+ },
+ Object {
+ "w:pgMar": Object {
+ "_attr": Object {
+ "w:bottom": "1in",
+ "w:footer": 708,
+ "w:gutter": 0,
+ "w:header": 708,
+ "w:left": "1in",
+ "w:right": "1in",
+ "w:top": "1in",
+ },
+ },
+ },
+ Object {
+ "w:pgNumType": Object {
+ "_attr": Object {},
+ },
+ },
+ Object {
+ "w:docGrid": Object {
+ "_attr": Object {
+ "w:linePitch": 360,
+ },
+ },
+ },
+ ],
+ },
+ ],
+}
+`;
+
+exports[`e2e node-phrasing-1.md 1`] = `
+Yo {
+ "appProperties": yi {
+ "root": Array [
+ gi {
+ "root": Object {
+ "vt": "http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes",
+ "xmlns": "http://schemas.openxmlformats.org/officeDocument/2006/extended-properties",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "vt": "xmlns:vt",
+ "xmlns": "xmlns",
+ },
+ },
+ ],
+ "rootKey": "Properties",
+ },
+ "contentTypes": Ti {
+ "root": Array [
+ bi {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/package/2006/content-types",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns",
+ },
+ },
+ _i {
+ "root": Array [
+ vi {
+ "root": Object {
+ "contentType": "image/png",
+ "extension": "png",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "extension": "Extension",
+ },
+ },
+ ],
+ "rootKey": "Default",
+ },
+ _i {
+ "root": Array [
+ vi {
+ "root": Object {
+ "contentType": "image/jpeg",
+ "extension": "jpeg",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "extension": "Extension",
+ },
+ },
+ ],
+ "rootKey": "Default",
+ },
+ _i {
+ "root": Array [
+ vi {
+ "root": Object {
+ "contentType": "image/jpeg",
+ "extension": "jpg",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "extension": "Extension",
+ },
+ },
+ ],
+ "rootKey": "Default",
+ },
+ _i {
+ "root": Array [
+ vi {
+ "root": Object {
+ "contentType": "image/bmp",
+ "extension": "bmp",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "extension": "Extension",
+ },
+ },
+ ],
+ "rootKey": "Default",
+ },
+ _i {
+ "root": Array [
+ vi {
+ "root": Object {
+ "contentType": "image/gif",
+ "extension": "gif",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "extension": "Extension",
+ },
+ },
+ ],
+ "rootKey": "Default",
+ },
+ _i {
+ "root": Array [
+ vi {
+ "root": Object {
+ "contentType": "application/vnd.openxmlformats-package.relationships+xml",
+ "extension": "rels",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "extension": "Extension",
+ },
+ },
+ ],
+ "rootKey": "Default",
+ },
+ _i {
+ "root": Array [
+ vi {
+ "root": Object {
+ "contentType": "application/xml",
+ "extension": "xml",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "extension": "Extension",
+ },
+ },
+ ],
+ "rootKey": "Default",
+ },
+ Ei {
+ "root": Array [
+ xi {
+ "root": Object {
+ "contentType": "application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml",
+ "partName": "/word/document.xml",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "partName": "PartName",
+ },
+ },
+ ],
+ "rootKey": "Override",
+ },
+ Ei {
+ "root": Array [
+ xi {
+ "root": Object {
+ "contentType": "application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml",
+ "partName": "/word/styles.xml",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "partName": "PartName",
+ },
+ },
+ ],
+ "rootKey": "Override",
+ },
+ Ei {
+ "root": Array [
+ xi {
+ "root": Object {
+ "contentType": "application/vnd.openxmlformats-package.core-properties+xml",
+ "partName": "/docProps/core.xml",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "partName": "PartName",
+ },
+ },
+ ],
+ "rootKey": "Override",
+ },
+ Ei {
+ "root": Array [
+ xi {
+ "root": Object {
+ "contentType": "application/vnd.openxmlformats-officedocument.custom-properties+xml",
+ "partName": "/docProps/custom.xml",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "partName": "PartName",
+ },
+ },
+ ],
+ "rootKey": "Override",
+ },
+ Ei {
+ "root": Array [
+ xi {
+ "root": Object {
+ "contentType": "application/vnd.openxmlformats-officedocument.extended-properties+xml",
+ "partName": "/docProps/app.xml",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "partName": "PartName",
+ },
+ },
+ ],
+ "rootKey": "Override",
+ },
+ Ei {
+ "root": Array [
+ xi {
+ "root": Object {
+ "contentType": "application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml",
+ "partName": "/word/numbering.xml",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "partName": "PartName",
+ },
+ },
+ ],
+ "rootKey": "Override",
+ },
+ Ei {
+ "root": Array [
+ xi {
+ "root": Object {
+ "contentType": "application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml",
+ "partName": "/word/footnotes.xml",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "partName": "PartName",
+ },
+ },
+ ],
+ "rootKey": "Override",
+ },
+ Ei {
+ "root": Array [
+ xi {
+ "root": Object {
+ "contentType": "application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml",
+ "partName": "/word/settings.xml",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "partName": "PartName",
+ },
+ },
+ ],
+ "rootKey": "Override",
+ },
+ ],
+ "rootKey": "Types",
+ },
+ "coreProperties": Ai {
+ "root": Array [
+ An {
+ "root": Object {
+ "cp": "http://schemas.openxmlformats.org/package/2006/metadata/core-properties",
+ "dc": "http://purl.org/dc/elements/1.1/",
+ "dcmitype": "http://purl.org/dc/dcmitype/",
+ "dcterms": "http://purl.org/dc/terms/",
+ "xsi": "http://www.w3.org/2001/XMLSchema-instance",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "Ignorable": "mc:Ignorable",
+ "cp": "xmlns:cp",
+ "dc": "xmlns:dc",
+ "dcmitype": "xmlns:dcmitype",
+ "dcterms": "xmlns:dcterms",
+ "m": "xmlns:m",
+ "mc": "xmlns:mc",
+ "o": "xmlns:o",
+ "r": "xmlns:r",
+ "type": "xsi:type",
+ "v": "xmlns:v",
+ "w": "xmlns:w",
+ "w10": "xmlns:w10",
+ "w14": "xmlns:w14",
+ "w15": "xmlns:w15",
+ "wne": "xmlns:wne",
+ "wp": "xmlns:wp",
+ "wp14": "xmlns:wp14",
+ "wpc": "xmlns:wpc",
+ "wpg": "xmlns:wpg",
+ "wpi": "xmlns:wpi",
+ "wps": "xmlns:wps",
+ "xsi": "xmlns:xsi",
+ },
+ },
+ M {
+ "root": Array [
+ "Un-named",
+ ],
+ "rootKey": "dc:creator",
+ },
+ M {
+ "root": Array [
+ "Un-named",
+ ],
+ "rootKey": "cp:lastModifiedBy",
+ },
+ M {
+ "root": Array [
+ "1",
+ ],
+ "rootKey": "cp:revision",
+ },
+ Si {
+ "root": Array [
+ An {
+ "root": Object {
+ "type": "dcterms:W3CDTF",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "Ignorable": "mc:Ignorable",
+ "cp": "xmlns:cp",
+ "dc": "xmlns:dc",
+ "dcmitype": "xmlns:dcmitype",
+ "dcterms": "xmlns:dcterms",
+ "m": "xmlns:m",
+ "mc": "xmlns:mc",
+ "o": "xmlns:o",
+ "r": "xmlns:r",
+ "type": "xsi:type",
+ "v": "xmlns:v",
+ "w": "xmlns:w",
+ "w10": "xmlns:w10",
+ "w14": "xmlns:w14",
+ "w15": "xmlns:w15",
+ "wne": "xmlns:wne",
+ "wp": "xmlns:wp",
+ "wp14": "xmlns:wp14",
+ "wpc": "xmlns:wpc",
+ "wpg": "xmlns:wpg",
+ "wpi": "xmlns:wpi",
+ "wps": "xmlns:wps",
+ "xsi": "xmlns:xsi",
+ },
+ },
+ "2022-01-08T16:22:25.878Z",
+ ],
+ "rootKey": "dcterms:created",
+ },
+ Si {
+ "root": Array [
+ An {
+ "root": Object {
+ "type": "dcterms:W3CDTF",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "Ignorable": "mc:Ignorable",
+ "cp": "xmlns:cp",
+ "dc": "xmlns:dc",
+ "dcmitype": "xmlns:dcmitype",
+ "dcterms": "xmlns:dcterms",
+ "m": "xmlns:m",
+ "mc": "xmlns:mc",
+ "o": "xmlns:o",
+ "r": "xmlns:r",
+ "type": "xsi:type",
+ "v": "xmlns:v",
+ "w": "xmlns:w",
+ "w10": "xmlns:w10",
+ "w14": "xmlns:w14",
+ "w15": "xmlns:w15",
+ "wne": "xmlns:wne",
+ "wp": "xmlns:wp",
+ "wp14": "xmlns:wp14",
+ "wpc": "xmlns:wpc",
+ "wpg": "xmlns:wpg",
+ "wpi": "xmlns:wpi",
+ "wps": "xmlns:wps",
+ "xsi": "xmlns:xsi",
+ },
+ },
+ "2022-01-08T16:22:25.878Z",
+ ],
+ "rootKey": "dcterms:modified",
+ },
+ ],
+ "rootKey": "cp:coreProperties",
+ },
+ "currentRelationshipId": 5,
+ "customProperties": Ci {
+ "nextId": 2,
+ "properties": Array [],
+ "root": Array [
+ Ri {
+ "root": Object {
+ "vt": "http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes",
+ "xmlns": "http://schemas.openxmlformats.org/officeDocument/2006/custom-properties",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "vt": "xmlns:vt",
+ "xmlns": "xmlns",
+ },
+ },
+ ],
+ "rootKey": "Properties",
+ },
+ "documentWrapper": Cn {
+ "document": In {
+ "body": xn {
+ "root": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ undefined,
+ ],
+ "rootKey": "w:pPr",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aaa ",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aaaaaaa",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ " aaaaaa ",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:i",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:iCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:i",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:iCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aaaaaaaa",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ " aaaaaaaa ",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:strike",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:strike",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aaaaaaa",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ " aaaa ",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aaaaaaaa",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ " aaa
+aaa",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:i",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:iCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:i",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:iCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aa",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:strike",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:strike",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aa",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aaa ",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:i",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:iCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:i",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:iCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aa ",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:i",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:iCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:i",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:iCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "a ",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:i",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:iCs",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:strike",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:i",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:iCs",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:strike",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aa",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:i",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:iCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:i",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:iCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ " aa ",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:i",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:iCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:i",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:iCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aaa",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:i",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:iCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:i",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:iCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ " aaaaa",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:i",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:iCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:i",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:iCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ " aaaa",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ " aa",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "a*aa*aa_aa_a~~aa~~a",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Ir {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Heading1",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:pStyle",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Ir {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Heading1",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:pStyle",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "heading",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Object {
+ "checked": null,
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "list",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "spread": false,
+ "type": "listItem",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "quote",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ zr {
+ "options": Object {
+ "children": Array [
+ Ct {
+ "properties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "link to GitHub.com",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "link": "https://github.com/",
+ },
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ zr {
+ "options": Object {
+ "children": Array [
+ Ct {
+ "properties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "link to GitHub.com",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "link": "https://github.com/",
+ },
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ fr {
+ "imageData": Object {
+ "fileName": "gqjim2vi_y6amsdn_kcnh.png",
+ "stream": Uint8Array [],
+ "transformation": Object {
+ "emus": Object {
+ "x": 5715000,
+ "y": 3810000,
+ },
+ "flip": undefined,
+ "pixels": Object {
+ "x": 600,
+ "y": 400,
+ },
+ "rotation": undefined,
+ },
+ },
+ "key": "gqjim2vi_y6amsdn_kcnh.png",
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ dr {
+ "inline": pr {
+ "extent": ir {
+ "attributes": sr {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ sr {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "wp:extent",
+ },
+ "graphic": Ve {
+ "data": Ge {
+ "pic": Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{gqjim2vi_y6amsdn_kcnh.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ "root": Array [
+ ye {
+ "root": Object {
+ "uri": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "uri": "uri",
+ },
+ },
+ Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{gqjim2vi_y6amsdn_kcnh.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ ],
+ "rootKey": "a:graphicData",
+ },
+ "root": Array [
+ We {
+ "root": Object {
+ "a": "http://schemas.openxmlformats.org/drawingml/2006/main",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "a": "xmlns:a",
+ },
+ },
+ Ge {
+ "pic": Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{gqjim2vi_y6amsdn_kcnh.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ "root": Array [
+ ye {
+ "root": Object {
+ "uri": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "uri": "uri",
+ },
+ },
+ Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{gqjim2vi_y6amsdn_kcnh.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ ],
+ "rootKey": "a:graphicData",
+ },
+ ],
+ "rootKey": "a:graphic",
+ },
+ "root": Array [
+ hr {
+ "root": Object {
+ "distB": 0,
+ "distL": 0,
+ "distR": 0,
+ "distT": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "distB": "distB",
+ "distL": "distL",
+ "distR": "distR",
+ "distT": "distT",
+ },
+ },
+ ir {
+ "attributes": sr {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ sr {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "wp:extent",
+ },
+ nr {
+ "root": Array [
+ rr {
+ "root": Object {
+ "b": 0,
+ "l": 0,
+ "r": 0,
+ "t": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "b": "b",
+ "l": "l",
+ "r": "r",
+ "t": "t",
+ },
+ },
+ ],
+ "rootKey": "wp:effectExtent",
+ },
+ er {
+ "root": Array [
+ tr {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "wp:docPr",
+ },
+ cr {
+ "root": Array [
+ ar {
+ "root": Array [
+ or {
+ "root": Object {
+ "noChangeAspect": 1,
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/main",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeAspect": "noChangeAspect",
+ "xmlns": "xmlns:a",
+ },
+ },
+ ],
+ "rootKey": "a:graphicFrameLocks",
+ },
+ ],
+ "rootKey": "wp:cNvGraphicFramePr",
+ },
+ Ve {
+ "data": Ge {
+ "pic": Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{gqjim2vi_y6amsdn_kcnh.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ "root": Array [
+ ye {
+ "root": Object {
+ "uri": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "uri": "uri",
+ },
+ },
+ Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{gqjim2vi_y6amsdn_kcnh.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ ],
+ "rootKey": "a:graphicData",
+ },
+ "root": Array [
+ We {
+ "root": Object {
+ "a": "http://schemas.openxmlformats.org/drawingml/2006/main",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "a": "xmlns:a",
+ },
+ },
+ Ge {
+ "pic": Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{gqjim2vi_y6amsdn_kcnh.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ "root": Array [
+ ye {
+ "root": Object {
+ "uri": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "uri": "uri",
+ },
+ },
+ Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{gqjim2vi_y6amsdn_kcnh.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ ],
+ "rootKey": "a:graphicData",
+ },
+ ],
+ "rootKey": "a:graphic",
+ },
+ ],
+ "rootKey": "wp:inline",
+ },
+ "root": Array [
+ pr {
+ "extent": ir {
+ "attributes": sr {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ sr {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "wp:extent",
+ },
+ "graphic": Ve {
+ "data": Ge {
+ "pic": Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{gqjim2vi_y6amsdn_kcnh.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ "root": Array [
+ ye {
+ "root": Object {
+ "uri": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "uri": "uri",
+ },
+ },
+ Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{gqjim2vi_y6amsdn_kcnh.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ ],
+ "rootKey": "a:graphicData",
+ },
+ "root": Array [
+ We {
+ "root": Object {
+ "a": "http://schemas.openxmlformats.org/drawingml/2006/main",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "a": "xmlns:a",
+ },
+ },
+ Ge {
+ "pic": Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{gqjim2vi_y6amsdn_kcnh.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ "root": Array [
+ ye {
+ "root": Object {
+ "uri": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "uri": "uri",
+ },
+ },
+ Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{gqjim2vi_y6amsdn_kcnh.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ ],
+ "rootKey": "a:graphicData",
+ },
+ ],
+ "rootKey": "a:graphic",
+ },
+ "root": Array [
+ hr {
+ "root": Object {
+ "distB": 0,
+ "distL": 0,
+ "distR": 0,
+ "distT": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "distB": "distB",
+ "distL": "distL",
+ "distR": "distR",
+ "distT": "distT",
+ },
+ },
+ ir {
+ "attributes": sr {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ sr {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "wp:extent",
+ },
+ nr {
+ "root": Array [
+ rr {
+ "root": Object {
+ "b": 0,
+ "l": 0,
+ "r": 0,
+ "t": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "b": "b",
+ "l": "l",
+ "r": "r",
+ "t": "t",
+ },
+ },
+ ],
+ "rootKey": "wp:effectExtent",
+ },
+ er {
+ "root": Array [
+ tr {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "wp:docPr",
+ },
+ cr {
+ "root": Array [
+ ar {
+ "root": Array [
+ or {
+ "root": Object {
+ "noChangeAspect": 1,
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/main",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeAspect": "noChangeAspect",
+ "xmlns": "xmlns:a",
+ },
+ },
+ ],
+ "rootKey": "a:graphicFrameLocks",
+ },
+ ],
+ "rootKey": "wp:cNvGraphicFramePr",
+ },
+ Ve {
+ "data": Ge {
+ "pic": Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{gqjim2vi_y6amsdn_kcnh.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ "root": Array [
+ ye {
+ "root": Object {
+ "uri": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "uri": "uri",
+ },
+ },
+ Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{gqjim2vi_y6amsdn_kcnh.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ ],
+ "rootKey": "a:graphicData",
+ },
+ "root": Array [
+ We {
+ "root": Object {
+ "a": "http://schemas.openxmlformats.org/drawingml/2006/main",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "a": "xmlns:a",
+ },
+ },
+ Ge {
+ "pic": Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{gqjim2vi_y6amsdn_kcnh.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ "root": Array [
+ ye {
+ "root": Object {
+ "uri": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "uri": "uri",
+ },
+ },
+ Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{gqjim2vi_y6amsdn_kcnh.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ ],
+ "rootKey": "a:graphicData",
+ },
+ ],
+ "rootKey": "a:graphic",
+ },
+ ],
+ "rootKey": "wp:inline",
+ },
+ ],
+ "rootKey": "w:drawing",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:body",
+ "sections": Array [
+ _n {
+ "root": Array [
+ fn {
+ "root": Array [
+ dn {
+ "root": Object {
+ "height": 16838,
+ "orientation": "portrait",
+ "width": 11906,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "height": "w:h",
+ "orientation": "w:orient",
+ "width": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:pgSz",
+ },
+ ln {
+ "root": Array [
+ un {
+ "root": Object {
+ "bottom": "1in",
+ "footer": 708,
+ "gutter": 0,
+ "header": 708,
+ "left": "1in",
+ "right": "1in",
+ "top": "1in",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "header": "w:header",
+ "left": "w:left",
+ "right": "w:right",
+ "top": "w:top",
+ },
+ },
+ ],
+ "rootKey": "w:pgMar",
+ },
+ pn {
+ "root": Array [
+ hn {
+ "root": Object {
+ "formatType": undefined,
+ "separator": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "formatType": "w:fmt",
+ "separator": "w:chapSep",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:pgNumType",
+ },
+ nn {
+ "root": Array [
+ rn {
+ "root": Object {
+ "charSpace": undefined,
+ "linePitch": 360,
+ "type": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "charSpace": "w:charSpace",
+ "linePitch": "w:linePitch",
+ "type": "w:type",
+ },
+ },
+ ],
+ "rootKey": "w:docGrid",
+ },
+ ],
+ "rootKey": "w:sectPr",
+ },
+ ],
+ },
+ "root": Array [
+ An {
+ "root": Object {
+ "Ignorable": "w14 w15 wp14",
+ "m": "http://schemas.openxmlformats.org/officeDocument/2006/math",
+ "mc": "http://schemas.openxmlformats.org/markup-compatibility/2006",
+ "o": "urn:schemas-microsoft-com:office:office",
+ "r": "http://schemas.openxmlformats.org/officeDocument/2006/relationships",
+ "v": "urn:schemas-microsoft-com:vml",
+ "w": "http://schemas.openxmlformats.org/wordprocessingml/2006/main",
+ "w10": "urn:schemas-microsoft-com:office:word",
+ "w14": "http://schemas.microsoft.com/office/word/2010/wordml",
+ "w15": "http://schemas.microsoft.com/office/word/2012/wordml",
+ "wne": "http://schemas.microsoft.com/office/word/2006/wordml",
+ "wp": "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing",
+ "wp14": "http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing",
+ "wpc": "http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas",
+ "wpg": "http://schemas.microsoft.com/office/word/2010/wordprocessingGroup",
+ "wpi": "http://schemas.microsoft.com/office/word/2010/wordprocessingInk",
+ "wps": "http://schemas.microsoft.com/office/word/2010/wordprocessingShape",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "Ignorable": "mc:Ignorable",
+ "cp": "xmlns:cp",
+ "dc": "xmlns:dc",
+ "dcmitype": "xmlns:dcmitype",
+ "dcterms": "xmlns:dcterms",
+ "m": "xmlns:m",
+ "mc": "xmlns:mc",
+ "o": "xmlns:o",
+ "r": "xmlns:r",
+ "type": "xsi:type",
+ "v": "xmlns:v",
+ "w": "xmlns:w",
+ "w10": "xmlns:w10",
+ "w14": "xmlns:w14",
+ "w15": "xmlns:w15",
+ "wne": "xmlns:wne",
+ "wp": "xmlns:wp",
+ "wp14": "xmlns:wp14",
+ "wpc": "xmlns:wpc",
+ "wpg": "xmlns:wpg",
+ "wpi": "xmlns:wpi",
+ "wps": "xmlns:wps",
+ "xsi": "xmlns:xsi",
+ },
+ },
+ Rn {
+ "root": Array [
+ Sn {
+ "root": Object {
+ "color": undefined,
+ "themeColor": undefined,
+ "themeShade": undefined,
+ "themeTint": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "color": "w:color",
+ "themeColor": "w:themeColor",
+ "themeShade": "w:themeShade",
+ "themeTint": "w:themeTint",
+ },
+ },
+ ],
+ "rootKey": "w:background",
+ },
+ xn {
+ "root": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ undefined,
+ ],
+ "rootKey": "w:pPr",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aaa ",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aaaaaaa",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ " aaaaaa ",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:i",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:iCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:i",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:iCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aaaaaaaa",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ " aaaaaaaa ",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:strike",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:strike",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aaaaaaa",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ " aaaa ",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aaaaaaaa",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ " aaa
+aaa",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:i",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:iCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:i",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:iCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aa",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:strike",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:strike",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aa",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aaa ",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:i",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:iCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:i",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:iCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aa ",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:i",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:iCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:i",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:iCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "a ",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:i",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:iCs",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:strike",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:i",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:iCs",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:strike",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aa",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:i",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:iCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:i",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:iCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ " aa ",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:i",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:iCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:i",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:iCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "aaa",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:i",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:iCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:i",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:iCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ " aaaaa",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:i",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:iCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:i",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:iCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ " aaaa",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ " aa",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "a*aa*aa_aa_a~~aa~~a",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Ir {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Heading1",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:pStyle",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Ir {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Heading1",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:pStyle",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "heading",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Object {
+ "checked": null,
+ "children": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "list",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "spread": false,
+ "type": "listItem",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Ct {
+ "properties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "quote",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ zr {
+ "options": Object {
+ "children": Array [
+ Ct {
+ "properties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "link to GitHub.com",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "link": "https://github.com/",
+ },
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ zr {
+ "options": Object {
+ "children": Array [
+ Ct {
+ "properties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "link to GitHub.com",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "link": "https://github.com/",
+ },
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ fr {
+ "imageData": Object {
+ "fileName": "gqjim2vi_y6amsdn_kcnh.png",
+ "stream": Uint8Array [],
+ "transformation": Object {
+ "emus": Object {
+ "x": 5715000,
+ "y": 3810000,
+ },
+ "flip": undefined,
+ "pixels": Object {
+ "x": 600,
+ "y": 400,
+ },
+ "rotation": undefined,
+ },
+ },
+ "key": "gqjim2vi_y6amsdn_kcnh.png",
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ dr {
+ "inline": pr {
+ "extent": ir {
+ "attributes": sr {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ sr {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "wp:extent",
+ },
+ "graphic": Ve {
+ "data": Ge {
+ "pic": Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{gqjim2vi_y6amsdn_kcnh.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ "root": Array [
+ ye {
+ "root": Object {
+ "uri": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "uri": "uri",
+ },
+ },
+ Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{gqjim2vi_y6amsdn_kcnh.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ ],
+ "rootKey": "a:graphicData",
+ },
+ "root": Array [
+ We {
+ "root": Object {
+ "a": "http://schemas.openxmlformats.org/drawingml/2006/main",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "a": "xmlns:a",
+ },
+ },
+ Ge {
+ "pic": Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{gqjim2vi_y6amsdn_kcnh.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ "root": Array [
+ ye {
+ "root": Object {
+ "uri": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "uri": "uri",
+ },
+ },
+ Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{gqjim2vi_y6amsdn_kcnh.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ ],
+ "rootKey": "a:graphicData",
+ },
+ ],
+ "rootKey": "a:graphic",
+ },
+ "root": Array [
+ hr {
+ "root": Object {
+ "distB": 0,
+ "distL": 0,
+ "distR": 0,
+ "distT": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "distB": "distB",
+ "distL": "distL",
+ "distR": "distR",
+ "distT": "distT",
+ },
+ },
+ ir {
+ "attributes": sr {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ sr {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "wp:extent",
+ },
+ nr {
+ "root": Array [
+ rr {
+ "root": Object {
+ "b": 0,
+ "l": 0,
+ "r": 0,
+ "t": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "b": "b",
+ "l": "l",
+ "r": "r",
+ "t": "t",
+ },
+ },
+ ],
+ "rootKey": "wp:effectExtent",
+ },
+ er {
+ "root": Array [
+ tr {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "wp:docPr",
+ },
+ cr {
+ "root": Array [
+ ar {
+ "root": Array [
+ or {
+ "root": Object {
+ "noChangeAspect": 1,
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/main",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeAspect": "noChangeAspect",
+ "xmlns": "xmlns:a",
+ },
+ },
+ ],
+ "rootKey": "a:graphicFrameLocks",
+ },
+ ],
+ "rootKey": "wp:cNvGraphicFramePr",
+ },
+ Ve {
+ "data": Ge {
+ "pic": Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{gqjim2vi_y6amsdn_kcnh.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ "root": Array [
+ ye {
+ "root": Object {
+ "uri": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "uri": "uri",
+ },
+ },
+ Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{gqjim2vi_y6amsdn_kcnh.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ ],
+ "rootKey": "a:graphicData",
+ },
+ "root": Array [
+ We {
+ "root": Object {
+ "a": "http://schemas.openxmlformats.org/drawingml/2006/main",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "a": "xmlns:a",
+ },
+ },
+ Ge {
+ "pic": Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{gqjim2vi_y6amsdn_kcnh.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ "root": Array [
+ ye {
+ "root": Object {
+ "uri": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "uri": "uri",
+ },
+ },
+ Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{gqjim2vi_y6amsdn_kcnh.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ ],
+ "rootKey": "a:graphicData",
+ },
+ ],
+ "rootKey": "a:graphic",
+ },
+ ],
+ "rootKey": "wp:inline",
+ },
+ "root": Array [
+ pr {
+ "extent": ir {
+ "attributes": sr {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ sr {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "wp:extent",
+ },
+ "graphic": Ve {
+ "data": Ge {
+ "pic": Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{gqjim2vi_y6amsdn_kcnh.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ "root": Array [
+ ye {
+ "root": Object {
+ "uri": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "uri": "uri",
+ },
+ },
+ Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{gqjim2vi_y6amsdn_kcnh.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ ],
+ "rootKey": "a:graphicData",
+ },
+ "root": Array [
+ We {
+ "root": Object {
+ "a": "http://schemas.openxmlformats.org/drawingml/2006/main",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "a": "xmlns:a",
+ },
+ },
+ Ge {
+ "pic": Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{gqjim2vi_y6amsdn_kcnh.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ "root": Array [
+ ye {
+ "root": Object {
+ "uri": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "uri": "uri",
+ },
+ },
+ Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{gqjim2vi_y6amsdn_kcnh.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ ],
+ "rootKey": "a:graphicData",
+ },
+ ],
+ "rootKey": "a:graphic",
+ },
+ "root": Array [
+ hr {
+ "root": Object {
+ "distB": 0,
+ "distL": 0,
+ "distR": 0,
+ "distT": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "distB": "distB",
+ "distL": "distL",
+ "distR": "distR",
+ "distT": "distT",
+ },
+ },
+ ir {
+ "attributes": sr {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ sr {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "wp:extent",
+ },
+ nr {
+ "root": Array [
+ rr {
+ "root": Object {
+ "b": 0,
+ "l": 0,
+ "r": 0,
+ "t": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "b": "b",
+ "l": "l",
+ "r": "r",
+ "t": "t",
+ },
+ },
+ ],
+ "rootKey": "wp:effectExtent",
+ },
+ er {
+ "root": Array [
+ tr {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "wp:docPr",
+ },
+ cr {
+ "root": Array [
+ ar {
+ "root": Array [
+ or {
+ "root": Object {
+ "noChangeAspect": 1,
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/main",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeAspect": "noChangeAspect",
+ "xmlns": "xmlns:a",
+ },
+ },
+ ],
+ "rootKey": "a:graphicFrameLocks",
+ },
+ ],
+ "rootKey": "wp:cNvGraphicFramePr",
+ },
+ Ve {
+ "data": Ge {
+ "pic": Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{gqjim2vi_y6amsdn_kcnh.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ "root": Array [
+ ye {
+ "root": Object {
+ "uri": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "uri": "uri",
+ },
+ },
+ Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{gqjim2vi_y6amsdn_kcnh.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ ],
+ "rootKey": "a:graphicData",
+ },
+ "root": Array [
+ We {
+ "root": Object {
+ "a": "http://schemas.openxmlformats.org/drawingml/2006/main",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "a": "xmlns:a",
+ },
+ },
+ Ge {
+ "pic": Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{gqjim2vi_y6amsdn_kcnh.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ "root": Array [
+ ye {
+ "root": Object {
+ "uri": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "uri": "uri",
+ },
+ },
+ Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{gqjim2vi_y6amsdn_kcnh.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ ],
+ "rootKey": "a:graphicData",
+ },
+ ],
+ "rootKey": "a:graphic",
+ },
+ ],
+ "rootKey": "wp:inline",
+ },
+ ],
+ "rootKey": "w:drawing",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:body",
+ "sections": Array [
+ _n {
+ "root": Array [
+ fn {
+ "root": Array [
+ dn {
+ "root": Object {
+ "height": 16838,
+ "orientation": "portrait",
+ "width": 11906,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "height": "w:h",
+ "orientation": "w:orient",
+ "width": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:pgSz",
+ },
+ ln {
+ "root": Array [
+ un {
+ "root": Object {
+ "bottom": "1in",
+ "footer": 708,
+ "gutter": 0,
+ "header": 708,
+ "left": "1in",
+ "right": "1in",
+ "top": "1in",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "header": "w:header",
+ "left": "w:left",
+ "right": "w:right",
+ "top": "w:top",
+ },
+ },
+ ],
+ "rootKey": "w:pgMar",
+ },
+ pn {
+ "root": Array [
+ hn {
+ "root": Object {
+ "formatType": undefined,
+ "separator": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "formatType": "w:fmt",
+ "separator": "w:chapSep",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:pgNumType",
+ },
+ nn {
+ "root": Array [
+ rn {
+ "root": Object {
+ "charSpace": undefined,
+ "linePitch": 360,
+ "type": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "charSpace": "w:charSpace",
+ "linePitch": "w:linePitch",
+ "type": "w:type",
+ },
+ },
+ ],
+ "rootKey": "w:docGrid",
+ },
+ ],
+ "rootKey": "w:sectPr",
+ },
+ ],
+ },
+ ],
+ "rootKey": "w:document",
+ },
+ "relationships": On {
+ "root": Array [
+ Nn {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/package/2006/relationships",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns",
+ },
+ },
+ Fr {
+ "root": Array [
+ Pr {
+ "root": Object {
+ "id": "rId1",
+ "target": "styles.xml",
+ "targetMode": undefined,
+ "type": "http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "id": "Id",
+ "target": "Target",
+ "targetMode": "TargetMode",
+ "type": "Type",
+ },
+ },
+ ],
+ "rootKey": "Relationship",
+ },
+ Fr {
+ "root": Array [
+ Pr {
+ "root": Object {
+ "id": "rId2",
+ "target": "numbering.xml",
+ "targetMode": undefined,
+ "type": "http://schemas.openxmlformats.org/officeDocument/2006/relationships/numbering",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "id": "Id",
+ "target": "Target",
+ "targetMode": "TargetMode",
+ "type": "Type",
+ },
+ },
+ ],
+ "rootKey": "Relationship",
+ },
+ Fr {
+ "root": Array [
+ Pr {
+ "root": Object {
+ "id": "rId3",
+ "target": "footnotes.xml",
+ "targetMode": undefined,
+ "type": "http://schemas.openxmlformats.org/officeDocument/2006/relationships/footnotes",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "id": "Id",
+ "target": "Target",
+ "targetMode": "TargetMode",
+ "type": "Type",
+ },
+ },
+ ],
+ "rootKey": "Relationship",
+ },
+ Fr {
+ "root": Array [
+ Pr {
+ "root": Object {
+ "id": "rId4",
+ "target": "settings.xml",
+ "targetMode": undefined,
+ "type": "http://schemas.openxmlformats.org/officeDocument/2006/relationships/settings",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "id": "Id",
+ "target": "Target",
+ "targetMode": "TargetMode",
+ "type": "Type",
+ },
+ },
+ ],
+ "rootKey": "Relationship",
+ },
+ ],
+ "rootKey": "Relationships",
+ },
+ },
+ "fileRelationships": On {
+ "root": Array [
+ Nn {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/package/2006/relationships",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns",
+ },
+ },
+ Fr {
+ "root": Array [
+ Pr {
+ "root": Object {
+ "id": "rId1",
+ "target": "word/document.xml",
+ "targetMode": undefined,
+ "type": "http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "id": "Id",
+ "target": "Target",
+ "targetMode": "TargetMode",
+ "type": "Type",
+ },
+ },
+ ],
+ "rootKey": "Relationship",
+ },
+ Fr {
+ "root": Array [
+ Pr {
+ "root": Object {
+ "id": "rId2",
+ "target": "docProps/core.xml",
+ "targetMode": undefined,
+ "type": "http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "id": "Id",
+ "target": "Target",
+ "targetMode": "TargetMode",
+ "type": "Type",
+ },
+ },
+ ],
+ "rootKey": "Relationship",
+ },
+ Fr {
+ "root": Array [
+ Pr {
+ "root": Object {
+ "id": "rId3",
+ "target": "docProps/app.xml",
+ "targetMode": undefined,
+ "type": "http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "id": "Id",
+ "target": "Target",
+ "targetMode": "TargetMode",
+ "type": "Type",
+ },
+ },
+ ],
+ "rootKey": "Relationship",
+ },
+ Fr {
+ "root": Array [
+ Pr {
+ "root": Object {
+ "id": "rId4",
+ "target": "docProps/custom.xml",
+ "targetMode": undefined,
+ "type": "http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "id": "Id",
+ "target": "Target",
+ "targetMode": "TargetMode",
+ "type": "Type",
+ },
+ },
+ ],
+ "rootKey": "Relationship",
+ },
+ ],
+ "rootKey": "Relationships",
+ },
+ "footers": Array [],
+ "footnotesWrapper": Wi {
+ "footnotess": Gi {
+ "root": Array [
+ Ki {
+ "root": Object {
+ "Ignorable": "w14 w15 wp14",
+ "m": "http://schemas.openxmlformats.org/officeDocument/2006/math",
+ "mc": "http://schemas.openxmlformats.org/markup-compatibility/2006",
+ "o": "urn:schemas-microsoft-com:office:office",
+ "r": "http://schemas.openxmlformats.org/officeDocument/2006/relationships",
+ "v": "urn:schemas-microsoft-com:vml",
+ "w": "http://schemas.openxmlformats.org/wordprocessingml/2006/main",
+ "w10": "urn:schemas-microsoft-com:office:word",
+ "w14": "http://schemas.microsoft.com/office/word/2010/wordml",
+ "w15": "http://schemas.microsoft.com/office/word/2012/wordml",
+ "wne": "http://schemas.microsoft.com/office/word/2006/wordml",
+ "wp": "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing",
+ "wp14": "http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing",
+ "wpc": "http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas",
+ "wpg": "http://schemas.microsoft.com/office/word/2010/wordprocessingGroup",
+ "wpi": "http://schemas.microsoft.com/office/word/2010/wordprocessingInk",
+ "wps": "http://schemas.microsoft.com/office/word/2010/wordprocessingShape",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "Ignorable": "mc:Ignorable",
+ "m": "xmlns:m",
+ "mc": "xmlns:mc",
+ "o": "xmlns:o",
+ "r": "xmlns:r",
+ "v": "xmlns:v",
+ "w": "xmlns:w",
+ "w10": "xmlns:w10",
+ "w14": "xmlns:w14",
+ "w15": "xmlns:w15",
+ "wne": "xmlns:wne",
+ "wp": "xmlns:wp",
+ "wp14": "xmlns:wp14",
+ "wpc": "xmlns:wpc",
+ "wpg": "xmlns:wpg",
+ "wpi": "xmlns:wpi",
+ "wps": "xmlns:wps",
+ },
+ },
+ Mi {
+ "root": Array [
+ Pi {
+ "root": Object {
+ "id": -1,
+ "type": "separator",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "id": "w:id",
+ "type": "w:type",
+ },
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Rr {
+ "root": Array [
+ Sr {
+ "root": Object {
+ "after": 0,
+ "line": 240,
+ "lineRule": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "after": "w:after",
+ "before": "w:before",
+ "line": "w:line",
+ "lineRule": "w:lineRule",
+ },
+ },
+ ],
+ "rootKey": "w:spacing",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Rr {
+ "root": Array [
+ Sr {
+ "root": Object {
+ "after": 0,
+ "line": 240,
+ "lineRule": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "after": "w:after",
+ "before": "w:before",
+ "line": "w:line",
+ "lineRule": "w:lineRule",
+ },
+ },
+ ],
+ "rootKey": "w:spacing",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Bi {
+ "properties": St {
+ "root": Array [
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "FootnoteReference",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:rStyle",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "FootnoteReference",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:rStyle",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Fi {
+ "root": Array [],
+ "rootKey": "w:footnoteRef",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ji {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Hi {
+ "root": Array [],
+ "rootKey": "w:separator",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:footnote",
+ },
+ Mi {
+ "root": Array [
+ Pi {
+ "root": Object {
+ "id": 0,
+ "type": "continuationSeparator",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "id": "w:id",
+ "type": "w:type",
+ },
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Rr {
+ "root": Array [
+ Sr {
+ "root": Object {
+ "after": 0,
+ "line": 240,
+ "lineRule": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "after": "w:after",
+ "before": "w:before",
+ "line": "w:line",
+ "lineRule": "w:lineRule",
+ },
+ },
+ ],
+ "rootKey": "w:spacing",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Rr {
+ "root": Array [
+ Sr {
+ "root": Object {
+ "after": 0,
+ "line": 240,
+ "lineRule": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "after": "w:after",
+ "before": "w:before",
+ "line": "w:line",
+ "lineRule": "w:lineRule",
+ },
+ },
+ ],
+ "rootKey": "w:spacing",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Bi {
+ "properties": St {
+ "root": Array [
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "FootnoteReference",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:rStyle",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "FootnoteReference",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:rStyle",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Fi {
+ "root": Array [],
+ "rootKey": "w:footnoteRef",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ zi {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Ui {
+ "root": Array [],
+ "rootKey": "w:continuationSeparator",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:footnote",
+ },
+ ],
+ "rootKey": "w:footnotes",
+ },
+ "relationships": On {
+ "root": Array [
+ Nn {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/package/2006/relationships",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns",
+ },
+ },
+ ],
+ "rootKey": "Relationships",
+ },
+ },
+ "headers": Array [],
+ "media": qi {
+ "map": Map {},
+ },
+ "numbering": yo {
+ "abstractNumberingMap": Map {
+ "default-bullet-numbering" => uo {
+ "id": 18,
+ "root": Array [
+ co {
+ "root": Object {
+ "abstractNumId": 18,
+ "restartNumberingAfterBreak": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "abstractNumId": "w:abstractNumId",
+ "restartNumberingAfterBreak": "w15:restartNumberingAfterBreak",
+ },
+ },
+ ao {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "hybridMultilevel",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:multiLevelType",
+ },
+ io {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 720,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ B {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:start",
+ },
+ to {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "bullet",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:numFmt",
+ },
+ eo {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "●",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlText",
+ },
+ ro {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlJc",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 720,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Ji {
+ "root": Object {
+ "ilvl": 0,
+ "tentative": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "ilvl": "w:ilvl",
+ "tentative": "w15:tentative",
+ },
+ },
+ ],
+ "rootKey": "w:lvl",
+ "runProperties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ },
+ io {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 1440,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ B {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:start",
+ },
+ to {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "bullet",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:numFmt",
+ },
+ eo {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "○",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlText",
+ },
+ ro {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlJc",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 1440,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Ji {
+ "root": Object {
+ "ilvl": 1,
+ "tentative": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "ilvl": "w:ilvl",
+ "tentative": "w15:tentative",
+ },
+ },
+ ],
+ "rootKey": "w:lvl",
+ "runProperties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ },
+ io {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 2160,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ B {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:start",
+ },
+ to {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "bullet",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:numFmt",
+ },
+ eo {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "■",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlText",
+ },
+ ro {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlJc",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 2160,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Ji {
+ "root": Object {
+ "ilvl": 2,
+ "tentative": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "ilvl": "w:ilvl",
+ "tentative": "w15:tentative",
+ },
+ },
+ ],
+ "rootKey": "w:lvl",
+ "runProperties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ },
+ io {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 2880,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ B {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:start",
+ },
+ to {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "bullet",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:numFmt",
+ },
+ eo {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "●",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlText",
+ },
+ ro {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlJc",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 2880,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Ji {
+ "root": Object {
+ "ilvl": 3,
+ "tentative": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "ilvl": "w:ilvl",
+ "tentative": "w15:tentative",
+ },
+ },
+ ],
+ "rootKey": "w:lvl",
+ "runProperties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ },
+ io {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 3600,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ B {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:start",
+ },
+ to {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "bullet",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:numFmt",
+ },
+ eo {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "○",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlText",
+ },
+ ro {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlJc",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 3600,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Ji {
+ "root": Object {
+ "ilvl": 4,
+ "tentative": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "ilvl": "w:ilvl",
+ "tentative": "w15:tentative",
+ },
+ },
+ ],
+ "rootKey": "w:lvl",
+ "runProperties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ },
+ io {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 4320,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ B {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:start",
+ },
+ to {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "bullet",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:numFmt",
+ },
+ eo {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "■",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlText",
+ },
+ ro {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlJc",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 4320,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Ji {
+ "root": Object {
+ "ilvl": 5,
+ "tentative": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "ilvl": "w:ilvl",
+ "tentative": "w15:tentative",
+ },
+ },
+ ],
+ "rootKey": "w:lvl",
+ "runProperties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ },
+ io {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 5040,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ B {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:start",
+ },
+ to {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "bullet",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:numFmt",
+ },
+ eo {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "●",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlText",
+ },
+ ro {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlJc",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 5040,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Ji {
+ "root": Object {
+ "ilvl": 6,
+ "tentative": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "ilvl": "w:ilvl",
+ "tentative": "w15:tentative",
+ },
+ },
+ ],
+ "rootKey": "w:lvl",
+ "runProperties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ },
+ io {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 5760,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ B {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:start",
+ },
+ to {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "bullet",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:numFmt",
+ },
+ eo {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "●",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlText",
+ },
+ ro {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlJc",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 5760,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Ji {
+ "root": Object {
+ "ilvl": 7,
+ "tentative": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "ilvl": "w:ilvl",
+ "tentative": "w15:tentative",
+ },
+ },
+ ],
+ "rootKey": "w:lvl",
+ "runProperties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ },
+ io {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 6480,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ B {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:start",
+ },
+ to {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "bullet",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:numFmt",
+ },
+ eo {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "●",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlText",
+ },
+ ro {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlJc",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 6480,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Ji {
+ "root": Object {
+ "ilvl": 8,
+ "tentative": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "ilvl": "w:ilvl",
+ "tentative": "w15:tentative",
+ },
+ },
+ ],
+ "rootKey": "w:lvl",
+ "runProperties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ },
+ ],
+ "rootKey": "w:abstractNum",
+ },
+ },
+ "concreteNumberingMap": Map {
+ "default-bullet-numbering" => po {
+ "instance": 0,
+ "numId": 1,
+ "reference": "default-bullet-numbering",
+ "root": Array [
+ ho {
+ "root": Object {
+ "numId": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "numId": "w:numId",
+ },
+ },
+ lo {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 18,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:abstractNumId",
+ },
+ mo {
+ "root": Array [
+ fo {
+ "root": Object {
+ "ilvl": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "ilvl": "w:ilvl",
+ },
+ },
+ go {
+ "root": Array [
+ wo {
+ "root": Object {
+ "val": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:startOverride",
+ },
+ ],
+ "rootKey": "w:lvlOverride",
+ },
+ ],
+ "rootKey": "w:num",
+ },
+ },
+ "referenceConfigMap": Map {},
+ "root": Array [
+ An {
+ "root": Object {
+ "Ignorable": "w14 w15 wp14",
+ "m": "http://schemas.openxmlformats.org/officeDocument/2006/math",
+ "mc": "http://schemas.openxmlformats.org/markup-compatibility/2006",
+ "o": "urn:schemas-microsoft-com:office:office",
+ "r": "http://schemas.openxmlformats.org/officeDocument/2006/relationships",
+ "v": "urn:schemas-microsoft-com:vml",
+ "w": "http://schemas.openxmlformats.org/wordprocessingml/2006/main",
+ "w10": "urn:schemas-microsoft-com:office:word",
+ "w14": "http://schemas.microsoft.com/office/word/2010/wordml",
+ "w15": "http://schemas.microsoft.com/office/word/2012/wordml",
+ "wne": "http://schemas.microsoft.com/office/word/2006/wordml",
+ "wp": "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing",
+ "wp14": "http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing",
+ "wpc": "http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas",
+ "wpg": "http://schemas.microsoft.com/office/word/2010/wordprocessingGroup",
+ "wpi": "http://schemas.microsoft.com/office/word/2010/wordprocessingInk",
+ "wps": "http://schemas.microsoft.com/office/word/2010/wordprocessingShape",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "Ignorable": "mc:Ignorable",
+ "cp": "xmlns:cp",
+ "dc": "xmlns:dc",
+ "dcmitype": "xmlns:dcmitype",
+ "dcterms": "xmlns:dcterms",
+ "m": "xmlns:m",
+ "mc": "xmlns:mc",
+ "o": "xmlns:o",
+ "r": "xmlns:r",
+ "type": "xsi:type",
+ "v": "xmlns:v",
+ "w": "xmlns:w",
+ "w10": "xmlns:w10",
+ "w14": "xmlns:w14",
+ "w15": "xmlns:w15",
+ "wne": "xmlns:wne",
+ "wp": "xmlns:wp",
+ "wp14": "xmlns:wp14",
+ "wpc": "xmlns:wpc",
+ "wpg": "xmlns:wpg",
+ "wpi": "xmlns:wpi",
+ "wps": "xmlns:wps",
+ "xsi": "xmlns:xsi",
+ },
+ },
+ ],
+ "rootKey": "w:numbering",
+ },
+ "settings": Eo {
+ "root": Array [
+ xo {
+ "root": Object {
+ "Ignorable": "w14 w15 wp14",
+ "m": "http://schemas.openxmlformats.org/officeDocument/2006/math",
+ "mc": "http://schemas.openxmlformats.org/markup-compatibility/2006",
+ "o": "urn:schemas-microsoft-com:office:office",
+ "r": "http://schemas.openxmlformats.org/officeDocument/2006/relationships",
+ "v": "urn:schemas-microsoft-com:vml",
+ "w": "http://schemas.openxmlformats.org/wordprocessingml/2006/main",
+ "w10": "urn:schemas-microsoft-com:office:word",
+ "w14": "http://schemas.microsoft.com/office/word/2010/wordml",
+ "w15": "http://schemas.microsoft.com/office/word/2012/wordml",
+ "wne": "http://schemas.microsoft.com/office/word/2006/wordml",
+ "wp": "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing",
+ "wp14": "http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing",
+ "wpc": "http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas",
+ "wpg": "http://schemas.microsoft.com/office/word/2010/wordprocessingGroup",
+ "wpi": "http://schemas.microsoft.com/office/word/2010/wordprocessingInk",
+ "wps": "http://schemas.microsoft.com/office/word/2010/wordprocessingShape",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "Ignorable": "mc:Ignorable",
+ "m": "xmlns:m",
+ "mc": "xmlns:mc",
+ "o": "xmlns:o",
+ "r": "xmlns:r",
+ "v": "xmlns:v",
+ "w": "xmlns:w",
+ "w10": "xmlns:w10",
+ "w14": "xmlns:w14",
+ "w15": "xmlns:w15",
+ "wne": "xmlns:wne",
+ "wp": "xmlns:wp",
+ "wp14": "xmlns:wp14",
+ "wpc": "xmlns:wpc",
+ "wpg": "xmlns:wpg",
+ "wpi": "xmlns:wpi",
+ "wps": "xmlns:wps",
+ },
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:displayBackgroundShape",
+ },
+ L {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": false,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:evenAndOddHeaders",
+ },
+ _o {
+ "root": Array [
+ vo {
+ "root": Array [
+ bo {
+ "root": Object {
+ "name": "compatibilityMode",
+ "uri": "http://schemas.microsoft.com/office/word",
+ "version": 15,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "name": "w:name",
+ "uri": "w:uri",
+ "version": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:compatSetting",
+ },
+ ],
+ "rootKey": "w:compat",
+ },
+ ],
+ "rootKey": "w:settings",
+ },
+ "styles": Wo {
+ "root": Array [
+ An {
+ "root": Object {
+ "Ignorable": "w14 w15",
+ "mc": "http://schemas.openxmlformats.org/markup-compatibility/2006",
+ "r": "http://schemas.openxmlformats.org/officeDocument/2006/relationships",
+ "w": "http://schemas.openxmlformats.org/wordprocessingml/2006/main",
+ "w14": "http://schemas.microsoft.com/office/word/2010/wordml",
+ "w15": "http://schemas.microsoft.com/office/word/2012/wordml",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "Ignorable": "mc:Ignorable",
+ "cp": "xmlns:cp",
+ "dc": "xmlns:dc",
+ "dcmitype": "xmlns:dcmitype",
+ "dcterms": "xmlns:dcterms",
+ "m": "xmlns:m",
+ "mc": "xmlns:mc",
+ "o": "xmlns:o",
+ "r": "xmlns:r",
+ "type": "xsi:type",
+ "v": "xmlns:v",
+ "w": "xmlns:w",
+ "w10": "xmlns:w10",
+ "w14": "xmlns:w14",
+ "w15": "xmlns:w15",
+ "wne": "xmlns:wne",
+ "wp": "xmlns:wp",
+ "wp14": "xmlns:wp14",
+ "wpc": "xmlns:wpc",
+ "wpg": "xmlns:wpg",
+ "wpi": "xmlns:wpi",
+ "wps": "xmlns:wps",
+ "xsi": "xmlns:xsi",
+ },
+ },
+ Xo {
+ "paragraphPropertiesDefaults": Vo {
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ ],
+ "rootKey": "w:pPrDefault",
+ },
+ "root": Array [
+ $o {
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:rPrDefault",
+ },
+ Vo {
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ ],
+ "rootKey": "w:pPrDefault",
+ },
+ ],
+ "rootKey": "w:docDefaults",
+ "runPropertiesDefaults": $o {
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:rPrDefault",
+ },
+ },
+ ko {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "Title",
+ "type": "paragraph",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "Title",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:next",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:qFormat",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 56,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:sz",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 56,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:szCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 56,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:sz",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 56,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:szCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ },
+ Do {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "Heading1",
+ "type": "paragraph",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "Heading 1",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:next",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:qFormat",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "2E74B5",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 32,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:sz",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 32,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:szCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "2E74B5",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 32,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:sz",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 32,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:szCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ },
+ Lo {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "Heading2",
+ "type": "paragraph",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "Heading 2",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:next",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:qFormat",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "2E74B5",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 26,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:sz",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 26,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:szCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "2E74B5",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 26,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:sz",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 26,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:szCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ },
+ Po {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "Heading3",
+ "type": "paragraph",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "Heading 3",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:next",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:qFormat",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "1F4D78",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 24,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:sz",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 24,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:szCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "1F4D78",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 24,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:sz",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 24,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:szCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ },
+ Fo {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "Heading4",
+ "type": "paragraph",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "Heading 4",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:next",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:qFormat",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:i",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:iCs",
+ },
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "2E74B5",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:i",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:iCs",
+ },
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "2E74B5",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ },
+ Bo {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "Heading5",
+ "type": "paragraph",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "Heading 5",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:next",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:qFormat",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "2E74B5",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "2E74B5",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ },
+ Mo {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "Heading6",
+ "type": "paragraph",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "Heading 6",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:next",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:qFormat",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "1F4D78",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "1F4D78",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ },
+ Uo {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "Strong",
+ "type": "paragraph",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "Strong",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:next",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:qFormat",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ },
+ zo {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "ListParagraph",
+ "type": "paragraph",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "List Paragraph",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:qFormat",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ },
+ Go {
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "Hyperlink",
+ "type": "character",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "Hyperlink",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "DefaultParagraphFont",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ So {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": 99,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:uiPriority",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:unhideWhenUsed",
+ },
+ St {
+ "root": Array [
+ At {
+ "root": Array [
+ a {
+ "root": Object {
+ "color": undefined,
+ "val": "single",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:u",
+ },
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "0563C1",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [
+ At {
+ "root": Array [
+ a {
+ "root": Object {
+ "color": undefined,
+ "val": "single",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:u",
+ },
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "0563C1",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ },
+ jo {
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "FootnoteReference",
+ "type": "character",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "footnote reference",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "DefaultParagraphFont",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ So {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": 99,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:uiPriority",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:semiHidden",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:unhideWhenUsed",
+ },
+ St {
+ "root": Array [
+ Et {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "superscript",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:vertAlign",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [
+ Et {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "superscript",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:vertAlign",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ },
+ Ho {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Rr {
+ "root": Array [
+ Sr {
+ "root": Object {
+ "after": 0,
+ "line": 240,
+ "lineRule": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "after": "w:after",
+ "before": "w:before",
+ "line": "w:line",
+ "lineRule": "w:lineRule",
+ },
+ },
+ ],
+ "rootKey": "w:spacing",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "FootnoteText",
+ "type": "paragraph",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "footnote text",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "FootnoteTextChar",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:link",
+ },
+ So {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": 99,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:uiPriority",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:semiHidden",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:unhideWhenUsed",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Rr {
+ "root": Array [
+ Sr {
+ "root": Object {
+ "after": 0,
+ "line": 240,
+ "lineRule": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "after": "w:after",
+ "before": "w:before",
+ "line": "w:line",
+ "lineRule": "w:lineRule",
+ },
+ },
+ ],
+ "rootKey": "w:spacing",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 20,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:sz",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 20,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:szCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 20,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:sz",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 20,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:szCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ },
+ Ko {
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "FootnoteTextChar",
+ "type": "character",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "Footnote Text Char",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "DefaultParagraphFont",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "FootnoteText",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:link",
+ },
+ So {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": 99,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:uiPriority",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:semiHidden",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:unhideWhenUsed",
+ },
+ St {
+ "root": Array [
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 20,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:sz",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 20,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:szCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 20,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:sz",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 20,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:szCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ },
+ ],
+ "rootKey": "w:styles",
+ },
+}
+`;
+
+exports[`e2e node-phrasing-2.md 1`] = `
+Yo {
+ "appProperties": yi {
+ "root": Array [
+ gi {
+ "root": Object {
+ "vt": "http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes",
+ "xmlns": "http://schemas.openxmlformats.org/officeDocument/2006/extended-properties",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "vt": "xmlns:vt",
+ "xmlns": "xmlns",
+ },
+ },
+ ],
+ "rootKey": "Properties",
+ },
+ "contentTypes": Ti {
+ "root": Array [
+ bi {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/package/2006/content-types",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns",
+ },
+ },
+ _i {
+ "root": Array [
+ vi {
+ "root": Object {
+ "contentType": "image/png",
+ "extension": "png",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "extension": "Extension",
+ },
+ },
+ ],
+ "rootKey": "Default",
+ },
+ _i {
+ "root": Array [
+ vi {
+ "root": Object {
+ "contentType": "image/jpeg",
+ "extension": "jpeg",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "extension": "Extension",
+ },
+ },
+ ],
+ "rootKey": "Default",
+ },
+ _i {
+ "root": Array [
+ vi {
+ "root": Object {
+ "contentType": "image/jpeg",
+ "extension": "jpg",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "extension": "Extension",
+ },
+ },
+ ],
+ "rootKey": "Default",
+ },
+ _i {
+ "root": Array [
+ vi {
+ "root": Object {
+ "contentType": "image/bmp",
+ "extension": "bmp",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "extension": "Extension",
+ },
+ },
+ ],
+ "rootKey": "Default",
+ },
+ _i {
+ "root": Array [
+ vi {
+ "root": Object {
+ "contentType": "image/gif",
+ "extension": "gif",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "extension": "Extension",
+ },
+ },
+ ],
+ "rootKey": "Default",
+ },
+ _i {
+ "root": Array [
+ vi {
+ "root": Object {
+ "contentType": "application/vnd.openxmlformats-package.relationships+xml",
+ "extension": "rels",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "extension": "Extension",
+ },
+ },
+ ],
+ "rootKey": "Default",
+ },
+ _i {
+ "root": Array [
+ vi {
+ "root": Object {
+ "contentType": "application/xml",
+ "extension": "xml",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "extension": "Extension",
+ },
+ },
+ ],
+ "rootKey": "Default",
+ },
+ Ei {
+ "root": Array [
+ xi {
+ "root": Object {
+ "contentType": "application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml",
+ "partName": "/word/document.xml",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "partName": "PartName",
+ },
+ },
+ ],
+ "rootKey": "Override",
+ },
+ Ei {
+ "root": Array [
+ xi {
+ "root": Object {
+ "contentType": "application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml",
+ "partName": "/word/styles.xml",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "partName": "PartName",
+ },
+ },
+ ],
+ "rootKey": "Override",
+ },
+ Ei {
+ "root": Array [
+ xi {
+ "root": Object {
+ "contentType": "application/vnd.openxmlformats-package.core-properties+xml",
+ "partName": "/docProps/core.xml",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "partName": "PartName",
+ },
+ },
+ ],
+ "rootKey": "Override",
+ },
+ Ei {
+ "root": Array [
+ xi {
+ "root": Object {
+ "contentType": "application/vnd.openxmlformats-officedocument.custom-properties+xml",
+ "partName": "/docProps/custom.xml",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "partName": "PartName",
+ },
+ },
+ ],
+ "rootKey": "Override",
+ },
+ Ei {
+ "root": Array [
+ xi {
+ "root": Object {
+ "contentType": "application/vnd.openxmlformats-officedocument.extended-properties+xml",
+ "partName": "/docProps/app.xml",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "partName": "PartName",
+ },
+ },
+ ],
+ "rootKey": "Override",
+ },
+ Ei {
+ "root": Array [
+ xi {
+ "root": Object {
+ "contentType": "application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml",
+ "partName": "/word/numbering.xml",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "partName": "PartName",
+ },
+ },
+ ],
+ "rootKey": "Override",
+ },
+ Ei {
+ "root": Array [
+ xi {
+ "root": Object {
+ "contentType": "application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml",
+ "partName": "/word/footnotes.xml",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "partName": "PartName",
+ },
+ },
+ ],
+ "rootKey": "Override",
+ },
+ Ei {
+ "root": Array [
+ xi {
+ "root": Object {
+ "contentType": "application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml",
+ "partName": "/word/settings.xml",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "contentType": "ContentType",
+ "partName": "PartName",
+ },
+ },
+ ],
+ "rootKey": "Override",
+ },
+ ],
+ "rootKey": "Types",
+ },
+ "coreProperties": Ai {
+ "root": Array [
+ An {
+ "root": Object {
+ "cp": "http://schemas.openxmlformats.org/package/2006/metadata/core-properties",
+ "dc": "http://purl.org/dc/elements/1.1/",
+ "dcmitype": "http://purl.org/dc/dcmitype/",
+ "dcterms": "http://purl.org/dc/terms/",
+ "xsi": "http://www.w3.org/2001/XMLSchema-instance",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "Ignorable": "mc:Ignorable",
+ "cp": "xmlns:cp",
+ "dc": "xmlns:dc",
+ "dcmitype": "xmlns:dcmitype",
+ "dcterms": "xmlns:dcterms",
+ "m": "xmlns:m",
+ "mc": "xmlns:mc",
+ "o": "xmlns:o",
+ "r": "xmlns:r",
+ "type": "xsi:type",
+ "v": "xmlns:v",
+ "w": "xmlns:w",
+ "w10": "xmlns:w10",
+ "w14": "xmlns:w14",
+ "w15": "xmlns:w15",
+ "wne": "xmlns:wne",
+ "wp": "xmlns:wp",
+ "wp14": "xmlns:wp14",
+ "wpc": "xmlns:wpc",
+ "wpg": "xmlns:wpg",
+ "wpi": "xmlns:wpi",
+ "wps": "xmlns:wps",
+ "xsi": "xmlns:xsi",
+ },
+ },
+ M {
+ "root": Array [
+ "Un-named",
+ ],
+ "rootKey": "dc:creator",
+ },
+ M {
+ "root": Array [
+ "Un-named",
+ ],
+ "rootKey": "cp:lastModifiedBy",
+ },
+ M {
+ "root": Array [
+ "1",
+ ],
+ "rootKey": "cp:revision",
+ },
+ Si {
+ "root": Array [
+ An {
+ "root": Object {
+ "type": "dcterms:W3CDTF",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "Ignorable": "mc:Ignorable",
+ "cp": "xmlns:cp",
+ "dc": "xmlns:dc",
+ "dcmitype": "xmlns:dcmitype",
+ "dcterms": "xmlns:dcterms",
+ "m": "xmlns:m",
+ "mc": "xmlns:mc",
+ "o": "xmlns:o",
+ "r": "xmlns:r",
+ "type": "xsi:type",
+ "v": "xmlns:v",
+ "w": "xmlns:w",
+ "w10": "xmlns:w10",
+ "w14": "xmlns:w14",
+ "w15": "xmlns:w15",
+ "wne": "xmlns:wne",
+ "wp": "xmlns:wp",
+ "wp14": "xmlns:wp14",
+ "wpc": "xmlns:wpc",
+ "wpg": "xmlns:wpg",
+ "wpi": "xmlns:wpi",
+ "wps": "xmlns:wps",
+ "xsi": "xmlns:xsi",
+ },
+ },
+ "2022-01-08T16:22:25.924Z",
+ ],
+ "rootKey": "dcterms:created",
+ },
+ Si {
+ "root": Array [
+ An {
+ "root": Object {
+ "type": "dcterms:W3CDTF",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "Ignorable": "mc:Ignorable",
+ "cp": "xmlns:cp",
+ "dc": "xmlns:dc",
+ "dcmitype": "xmlns:dcmitype",
+ "dcterms": "xmlns:dcterms",
+ "m": "xmlns:m",
+ "mc": "xmlns:mc",
+ "o": "xmlns:o",
+ "r": "xmlns:r",
+ "type": "xsi:type",
+ "v": "xmlns:v",
+ "w": "xmlns:w",
+ "w10": "xmlns:w10",
+ "w14": "xmlns:w14",
+ "w15": "xmlns:w15",
+ "wne": "xmlns:wne",
+ "wp": "xmlns:wp",
+ "wp14": "xmlns:wp14",
+ "wpc": "xmlns:wpc",
+ "wpg": "xmlns:wpg",
+ "wpi": "xmlns:wpi",
+ "wps": "xmlns:wps",
+ "xsi": "xmlns:xsi",
+ },
+ },
+ "2022-01-08T16:22:25.924Z",
+ ],
+ "rootKey": "dcterms:modified",
+ },
+ ],
+ "rootKey": "cp:coreProperties",
+ },
+ "currentRelationshipId": 5,
+ "customProperties": Ci {
+ "nextId": 2,
+ "properties": Array [],
+ "root": Array [
+ Ri {
+ "root": Object {
+ "vt": "http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes",
+ "xmlns": "http://schemas.openxmlformats.org/officeDocument/2006/custom-properties",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "vt": "xmlns:vt",
+ "xmlns": "xmlns",
+ },
+ },
+ ],
+ "rootKey": "Properties",
+ },
+ "documentWrapper": Cn {
+ "document": In {
+ "body": xn {
+ "root": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ undefined,
+ ],
+ "rootKey": "w:pPr",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ zr {
+ "options": Object {
+ "children": Array [
+ Ct {
+ "properties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "link to GitHub.com",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "link": "https://github.com/",
+ },
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ fr {
+ "imageData": Object {
+ "fileName": "u4vi5xif27t6lvh66k391.png",
+ "stream": Uint8Array [],
+ "transformation": Object {
+ "emus": Object {
+ "x": 5715000,
+ "y": 3810000,
+ },
+ "flip": undefined,
+ "pixels": Object {
+ "x": 600,
+ "y": 400,
+ },
+ "rotation": undefined,
+ },
+ },
+ "key": "u4vi5xif27t6lvh66k391.png",
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ dr {
+ "inline": pr {
+ "extent": ir {
+ "attributes": sr {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ sr {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "wp:extent",
+ },
+ "graphic": Ve {
+ "data": Ge {
+ "pic": Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{u4vi5xif27t6lvh66k391.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ "root": Array [
+ ye {
+ "root": Object {
+ "uri": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "uri": "uri",
+ },
+ },
+ Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{u4vi5xif27t6lvh66k391.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ ],
+ "rootKey": "a:graphicData",
+ },
+ "root": Array [
+ We {
+ "root": Object {
+ "a": "http://schemas.openxmlformats.org/drawingml/2006/main",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "a": "xmlns:a",
+ },
+ },
+ Ge {
+ "pic": Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{u4vi5xif27t6lvh66k391.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ "root": Array [
+ ye {
+ "root": Object {
+ "uri": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "uri": "uri",
+ },
+ },
+ Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{u4vi5xif27t6lvh66k391.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ ],
+ "rootKey": "a:graphicData",
+ },
+ ],
+ "rootKey": "a:graphic",
+ },
+ "root": Array [
+ hr {
+ "root": Object {
+ "distB": 0,
+ "distL": 0,
+ "distR": 0,
+ "distT": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "distB": "distB",
+ "distL": "distL",
+ "distR": "distR",
+ "distT": "distT",
+ },
+ },
+ ir {
+ "attributes": sr {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ sr {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "wp:extent",
+ },
+ nr {
+ "root": Array [
+ rr {
+ "root": Object {
+ "b": 0,
+ "l": 0,
+ "r": 0,
+ "t": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "b": "b",
+ "l": "l",
+ "r": "r",
+ "t": "t",
+ },
+ },
+ ],
+ "rootKey": "wp:effectExtent",
+ },
+ er {
+ "root": Array [
+ tr {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "wp:docPr",
+ },
+ cr {
+ "root": Array [
+ ar {
+ "root": Array [
+ or {
+ "root": Object {
+ "noChangeAspect": 1,
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/main",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeAspect": "noChangeAspect",
+ "xmlns": "xmlns:a",
+ },
+ },
+ ],
+ "rootKey": "a:graphicFrameLocks",
+ },
+ ],
+ "rootKey": "wp:cNvGraphicFramePr",
+ },
+ Ve {
+ "data": Ge {
+ "pic": Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{u4vi5xif27t6lvh66k391.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ "root": Array [
+ ye {
+ "root": Object {
+ "uri": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "uri": "uri",
+ },
+ },
+ Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{u4vi5xif27t6lvh66k391.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ ],
+ "rootKey": "a:graphicData",
+ },
+ "root": Array [
+ We {
+ "root": Object {
+ "a": "http://schemas.openxmlformats.org/drawingml/2006/main",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "a": "xmlns:a",
+ },
+ },
+ Ge {
+ "pic": Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{u4vi5xif27t6lvh66k391.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ "root": Array [
+ ye {
+ "root": Object {
+ "uri": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "uri": "uri",
+ },
+ },
+ Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{u4vi5xif27t6lvh66k391.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ ],
+ "rootKey": "a:graphicData",
+ },
+ ],
+ "rootKey": "a:graphic",
+ },
+ ],
+ "rootKey": "wp:inline",
+ },
+ "root": Array [
+ pr {
+ "extent": ir {
+ "attributes": sr {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ sr {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "wp:extent",
+ },
+ "graphic": Ve {
+ "data": Ge {
+ "pic": Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{u4vi5xif27t6lvh66k391.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ "root": Array [
+ ye {
+ "root": Object {
+ "uri": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "uri": "uri",
+ },
+ },
+ Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{u4vi5xif27t6lvh66k391.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ ],
+ "rootKey": "a:graphicData",
+ },
+ "root": Array [
+ We {
+ "root": Object {
+ "a": "http://schemas.openxmlformats.org/drawingml/2006/main",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "a": "xmlns:a",
+ },
+ },
+ Ge {
+ "pic": Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{u4vi5xif27t6lvh66k391.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ "root": Array [
+ ye {
+ "root": Object {
+ "uri": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "uri": "uri",
+ },
+ },
+ Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{u4vi5xif27t6lvh66k391.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ ],
+ "rootKey": "a:graphicData",
+ },
+ ],
+ "rootKey": "a:graphic",
+ },
+ "root": Array [
+ hr {
+ "root": Object {
+ "distB": 0,
+ "distL": 0,
+ "distR": 0,
+ "distT": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "distB": "distB",
+ "distL": "distL",
+ "distR": "distR",
+ "distT": "distT",
+ },
+ },
+ ir {
+ "attributes": sr {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ sr {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "wp:extent",
+ },
+ nr {
+ "root": Array [
+ rr {
+ "root": Object {
+ "b": 0,
+ "l": 0,
+ "r": 0,
+ "t": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "b": "b",
+ "l": "l",
+ "r": "r",
+ "t": "t",
+ },
+ },
+ ],
+ "rootKey": "wp:effectExtent",
+ },
+ er {
+ "root": Array [
+ tr {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "wp:docPr",
+ },
+ cr {
+ "root": Array [
+ ar {
+ "root": Array [
+ or {
+ "root": Object {
+ "noChangeAspect": 1,
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/main",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeAspect": "noChangeAspect",
+ "xmlns": "xmlns:a",
+ },
+ },
+ ],
+ "rootKey": "a:graphicFrameLocks",
+ },
+ ],
+ "rootKey": "wp:cNvGraphicFramePr",
+ },
+ Ve {
+ "data": Ge {
+ "pic": Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{u4vi5xif27t6lvh66k391.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ "root": Array [
+ ye {
+ "root": Object {
+ "uri": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "uri": "uri",
+ },
+ },
+ Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{u4vi5xif27t6lvh66k391.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ ],
+ "rootKey": "a:graphicData",
+ },
+ "root": Array [
+ We {
+ "root": Object {
+ "a": "http://schemas.openxmlformats.org/drawingml/2006/main",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "a": "xmlns:a",
+ },
+ },
+ Ge {
+ "pic": Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{u4vi5xif27t6lvh66k391.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ "root": Array [
+ ye {
+ "root": Object {
+ "uri": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "uri": "uri",
+ },
+ },
+ Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{u4vi5xif27t6lvh66k391.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ ],
+ "rootKey": "a:graphicData",
+ },
+ ],
+ "rootKey": "a:graphic",
+ },
+ ],
+ "rootKey": "wp:inline",
+ },
+ ],
+ "rootKey": "w:drawing",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:body",
+ "sections": Array [
+ _n {
+ "root": Array [
+ fn {
+ "root": Array [
+ dn {
+ "root": Object {
+ "height": 16838,
+ "orientation": "portrait",
+ "width": 11906,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "height": "w:h",
+ "orientation": "w:orient",
+ "width": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:pgSz",
+ },
+ ln {
+ "root": Array [
+ un {
+ "root": Object {
+ "bottom": "1in",
+ "footer": 708,
+ "gutter": 0,
+ "header": 708,
+ "left": "1in",
+ "right": "1in",
+ "top": "1in",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "header": "w:header",
+ "left": "w:left",
+ "right": "w:right",
+ "top": "w:top",
+ },
+ },
+ ],
+ "rootKey": "w:pgMar",
+ },
+ pn {
+ "root": Array [
+ hn {
+ "root": Object {
+ "formatType": undefined,
+ "separator": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "formatType": "w:fmt",
+ "separator": "w:chapSep",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:pgNumType",
+ },
+ nn {
+ "root": Array [
+ rn {
+ "root": Object {
+ "charSpace": undefined,
+ "linePitch": 360,
+ "type": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "charSpace": "w:charSpace",
+ "linePitch": "w:linePitch",
+ "type": "w:type",
+ },
+ },
+ ],
+ "rootKey": "w:docGrid",
+ },
+ ],
+ "rootKey": "w:sectPr",
+ },
+ ],
+ },
+ "root": Array [
+ An {
+ "root": Object {
+ "Ignorable": "w14 w15 wp14",
+ "m": "http://schemas.openxmlformats.org/officeDocument/2006/math",
+ "mc": "http://schemas.openxmlformats.org/markup-compatibility/2006",
+ "o": "urn:schemas-microsoft-com:office:office",
+ "r": "http://schemas.openxmlformats.org/officeDocument/2006/relationships",
+ "v": "urn:schemas-microsoft-com:vml",
+ "w": "http://schemas.openxmlformats.org/wordprocessingml/2006/main",
+ "w10": "urn:schemas-microsoft-com:office:word",
+ "w14": "http://schemas.microsoft.com/office/word/2010/wordml",
+ "w15": "http://schemas.microsoft.com/office/word/2012/wordml",
+ "wne": "http://schemas.microsoft.com/office/word/2006/wordml",
+ "wp": "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing",
+ "wp14": "http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing",
+ "wpc": "http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas",
+ "wpg": "http://schemas.microsoft.com/office/word/2010/wordprocessingGroup",
+ "wpi": "http://schemas.microsoft.com/office/word/2010/wordprocessingInk",
+ "wps": "http://schemas.microsoft.com/office/word/2010/wordprocessingShape",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "Ignorable": "mc:Ignorable",
+ "cp": "xmlns:cp",
+ "dc": "xmlns:dc",
+ "dcmitype": "xmlns:dcmitype",
+ "dcterms": "xmlns:dcterms",
+ "m": "xmlns:m",
+ "mc": "xmlns:mc",
+ "o": "xmlns:o",
+ "r": "xmlns:r",
+ "type": "xsi:type",
+ "v": "xmlns:v",
+ "w": "xmlns:w",
+ "w10": "xmlns:w10",
+ "w14": "xmlns:w14",
+ "w15": "xmlns:w15",
+ "wne": "xmlns:wne",
+ "wp": "xmlns:wp",
+ "wp14": "xmlns:wp14",
+ "wpc": "xmlns:wpc",
+ "wpg": "xmlns:wpg",
+ "wpi": "xmlns:wpi",
+ "wps": "xmlns:wps",
+ "xsi": "xmlns:xsi",
+ },
+ },
+ Rn {
+ "root": Array [
+ Sn {
+ "root": Object {
+ "color": undefined,
+ "themeColor": undefined,
+ "themeShade": undefined,
+ "themeTint": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "color": "w:color",
+ "themeColor": "w:themeColor",
+ "themeShade": "w:themeShade",
+ "themeTint": "w:themeTint",
+ },
+ },
+ ],
+ "rootKey": "w:background",
+ },
+ xn {
+ "root": Array [
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ undefined,
+ ],
+ "rootKey": "w:pPr",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ zr {
+ "options": Object {
+ "children": Array [
+ Ct {
+ "properties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Nt {
+ "root": Array [
+ It {
+ "root": Object {
+ "space": "preserve",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "space": "xml:space",
+ },
+ },
+ "link to GitHub.com",
+ ],
+ "rootKey": "w:t",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "link": "https://github.com/",
+ },
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ fr {
+ "imageData": Object {
+ "fileName": "u4vi5xif27t6lvh66k391.png",
+ "stream": Uint8Array [],
+ "transformation": Object {
+ "emus": Object {
+ "x": 5715000,
+ "y": 3810000,
+ },
+ "flip": undefined,
+ "pixels": Object {
+ "x": 600,
+ "y": 400,
+ },
+ "rotation": undefined,
+ },
+ },
+ "key": "u4vi5xif27t6lvh66k391.png",
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ dr {
+ "inline": pr {
+ "extent": ir {
+ "attributes": sr {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ sr {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "wp:extent",
+ },
+ "graphic": Ve {
+ "data": Ge {
+ "pic": Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{u4vi5xif27t6lvh66k391.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ "root": Array [
+ ye {
+ "root": Object {
+ "uri": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "uri": "uri",
+ },
+ },
+ Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{u4vi5xif27t6lvh66k391.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ ],
+ "rootKey": "a:graphicData",
+ },
+ "root": Array [
+ We {
+ "root": Object {
+ "a": "http://schemas.openxmlformats.org/drawingml/2006/main",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "a": "xmlns:a",
+ },
+ },
+ Ge {
+ "pic": Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{u4vi5xif27t6lvh66k391.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ "root": Array [
+ ye {
+ "root": Object {
+ "uri": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "uri": "uri",
+ },
+ },
+ Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{u4vi5xif27t6lvh66k391.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ ],
+ "rootKey": "a:graphicData",
+ },
+ ],
+ "rootKey": "a:graphic",
+ },
+ "root": Array [
+ hr {
+ "root": Object {
+ "distB": 0,
+ "distL": 0,
+ "distR": 0,
+ "distT": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "distB": "distB",
+ "distL": "distL",
+ "distR": "distR",
+ "distT": "distT",
+ },
+ },
+ ir {
+ "attributes": sr {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ sr {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "wp:extent",
+ },
+ nr {
+ "root": Array [
+ rr {
+ "root": Object {
+ "b": 0,
+ "l": 0,
+ "r": 0,
+ "t": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "b": "b",
+ "l": "l",
+ "r": "r",
+ "t": "t",
+ },
+ },
+ ],
+ "rootKey": "wp:effectExtent",
+ },
+ er {
+ "root": Array [
+ tr {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "wp:docPr",
+ },
+ cr {
+ "root": Array [
+ ar {
+ "root": Array [
+ or {
+ "root": Object {
+ "noChangeAspect": 1,
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/main",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeAspect": "noChangeAspect",
+ "xmlns": "xmlns:a",
+ },
+ },
+ ],
+ "rootKey": "a:graphicFrameLocks",
+ },
+ ],
+ "rootKey": "wp:cNvGraphicFramePr",
+ },
+ Ve {
+ "data": Ge {
+ "pic": Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{u4vi5xif27t6lvh66k391.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ "root": Array [
+ ye {
+ "root": Object {
+ "uri": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "uri": "uri",
+ },
+ },
+ Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{u4vi5xif27t6lvh66k391.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ ],
+ "rootKey": "a:graphicData",
+ },
+ "root": Array [
+ We {
+ "root": Object {
+ "a": "http://schemas.openxmlformats.org/drawingml/2006/main",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "a": "xmlns:a",
+ },
+ },
+ Ge {
+ "pic": Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{u4vi5xif27t6lvh66k391.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ "root": Array [
+ ye {
+ "root": Object {
+ "uri": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "uri": "uri",
+ },
+ },
+ Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{u4vi5xif27t6lvh66k391.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ ],
+ "rootKey": "a:graphicData",
+ },
+ ],
+ "rootKey": "a:graphic",
+ },
+ ],
+ "rootKey": "wp:inline",
+ },
+ "root": Array [
+ pr {
+ "extent": ir {
+ "attributes": sr {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ sr {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "wp:extent",
+ },
+ "graphic": Ve {
+ "data": Ge {
+ "pic": Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{u4vi5xif27t6lvh66k391.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ "root": Array [
+ ye {
+ "root": Object {
+ "uri": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "uri": "uri",
+ },
+ },
+ Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{u4vi5xif27t6lvh66k391.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ ],
+ "rootKey": "a:graphicData",
+ },
+ "root": Array [
+ We {
+ "root": Object {
+ "a": "http://schemas.openxmlformats.org/drawingml/2006/main",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "a": "xmlns:a",
+ },
+ },
+ Ge {
+ "pic": Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{u4vi5xif27t6lvh66k391.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ "root": Array [
+ ye {
+ "root": Object {
+ "uri": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "uri": "uri",
+ },
+ },
+ Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{u4vi5xif27t6lvh66k391.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ ],
+ "rootKey": "a:graphicData",
+ },
+ ],
+ "rootKey": "a:graphic",
+ },
+ "root": Array [
+ hr {
+ "root": Object {
+ "distB": 0,
+ "distL": 0,
+ "distR": 0,
+ "distT": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "distB": "distB",
+ "distL": "distL",
+ "distR": "distR",
+ "distT": "distT",
+ },
+ },
+ ir {
+ "attributes": sr {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ sr {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "wp:extent",
+ },
+ nr {
+ "root": Array [
+ rr {
+ "root": Object {
+ "b": 0,
+ "l": 0,
+ "r": 0,
+ "t": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "b": "b",
+ "l": "l",
+ "r": "r",
+ "t": "t",
+ },
+ },
+ ],
+ "rootKey": "wp:effectExtent",
+ },
+ er {
+ "root": Array [
+ tr {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "wp:docPr",
+ },
+ cr {
+ "root": Array [
+ ar {
+ "root": Array [
+ or {
+ "root": Object {
+ "noChangeAspect": 1,
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/main",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeAspect": "noChangeAspect",
+ "xmlns": "xmlns:a",
+ },
+ },
+ ],
+ "rootKey": "a:graphicFrameLocks",
+ },
+ ],
+ "rootKey": "wp:cNvGraphicFramePr",
+ },
+ Ve {
+ "data": Ge {
+ "pic": Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{u4vi5xif27t6lvh66k391.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ "root": Array [
+ ye {
+ "root": Object {
+ "uri": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "uri": "uri",
+ },
+ },
+ Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{u4vi5xif27t6lvh66k391.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ ],
+ "rootKey": "a:graphicData",
+ },
+ "root": Array [
+ We {
+ "root": Object {
+ "a": "http://schemas.openxmlformats.org/drawingml/2006/main",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "a": "xmlns:a",
+ },
+ },
+ Ge {
+ "pic": Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{u4vi5xif27t6lvh66k391.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ "root": Array [
+ ye {
+ "root": Object {
+ "uri": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "uri": "uri",
+ },
+ },
+ Ke {
+ "root": Array [
+ Ce {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/drawingml/2006/picture",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns:pic",
+ },
+ },
+ Oe {
+ "root": Array [
+ Ne {
+ "root": Array [
+ Ie {
+ "root": Object {
+ "descr": "",
+ "id": 0,
+ "name": "",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "descr": "descr",
+ "id": "id",
+ "name": "name",
+ },
+ },
+ ],
+ "rootKey": "pic:cNvPr",
+ },
+ Re {
+ "root": Array [
+ Se {
+ "root": Array [
+ Ae {
+ "root": Object {
+ "noChangeArrowheads": 1,
+ "noChangeAspect": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "noChangeArrowheads": "noChangeArrowheads",
+ "noChangeAspect": "noChangeAspect",
+ },
+ },
+ ],
+ "rootKey": "a:picLocks",
+ },
+ ],
+ "rootKey": "pic:cNvPicPr",
+ },
+ ],
+ "rootKey": "pic:nvPicPr",
+ },
+ Te {
+ "root": Array [
+ ve {
+ "root": Array [
+ be {
+ "root": Object {
+ "cstate": "none",
+ "embed": "rId{u4vi5xif27t6lvh66k391.png}",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cstate": "cstate",
+ "embed": "r:embed",
+ },
+ },
+ ],
+ "rootKey": "a:blip",
+ },
+ _e {
+ "root": Array [],
+ "rootKey": "a:srcRect",
+ },
+ Ee {
+ "root": Array [
+ xe {
+ "root": Array [],
+ "rootKey": "a:fillRect",
+ },
+ ],
+ "rootKey": "a:stretch",
+ },
+ ],
+ "rootKey": "pic:blipFill",
+ },
+ je {
+ "form": Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ "root": Array [
+ He {
+ "root": Object {
+ "bwMode": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bwMode": "bwMode",
+ },
+ },
+ Be {
+ "extents": De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ "root": Array [
+ Fe {
+ "root": Object {
+ "flipHorizontal": undefined,
+ "flipVertical": undefined,
+ "rotation": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "flipHorizontal": "flipH",
+ "flipVertical": "flipV",
+ "rotation": "rot",
+ },
+ },
+ Pe {
+ "root": Array [
+ Le {
+ "root": Object {
+ "x": 0,
+ "y": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "x": "x",
+ "y": "y",
+ },
+ },
+ ],
+ "rootKey": "a:off",
+ },
+ De {
+ "attributes": ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ "root": Array [
+ ke {
+ "root": Object {
+ "cx": 5715000,
+ "cy": 3810000,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "cx": "cx",
+ "cy": "cy",
+ },
+ },
+ ],
+ "rootKey": "a:ext",
+ },
+ ],
+ "rootKey": "a:xfrm",
+ },
+ ze {
+ "root": Array [
+ Ue {
+ "root": Object {
+ "prst": "rect",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "prst": "prst",
+ },
+ },
+ Me {
+ "root": Array [],
+ "rootKey": "a:avLst",
+ },
+ ],
+ "rootKey": "a:prstGeom",
+ },
+ ],
+ "rootKey": "pic:spPr",
+ },
+ ],
+ "rootKey": "pic:pic",
+ },
+ ],
+ "rootKey": "a:graphicData",
+ },
+ ],
+ "rootKey": "a:graphic",
+ },
+ ],
+ "rootKey": "wp:inline",
+ },
+ ],
+ "rootKey": "w:drawing",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:body",
+ "sections": Array [
+ _n {
+ "root": Array [
+ fn {
+ "root": Array [
+ dn {
+ "root": Object {
+ "height": 16838,
+ "orientation": "portrait",
+ "width": 11906,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "height": "w:h",
+ "orientation": "w:orient",
+ "width": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:pgSz",
+ },
+ ln {
+ "root": Array [
+ un {
+ "root": Object {
+ "bottom": "1in",
+ "footer": 708,
+ "gutter": 0,
+ "header": 708,
+ "left": "1in",
+ "right": "1in",
+ "top": "1in",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "header": "w:header",
+ "left": "w:left",
+ "right": "w:right",
+ "top": "w:top",
+ },
+ },
+ ],
+ "rootKey": "w:pgMar",
+ },
+ pn {
+ "root": Array [
+ hn {
+ "root": Object {
+ "formatType": undefined,
+ "separator": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "formatType": "w:fmt",
+ "separator": "w:chapSep",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:pgNumType",
+ },
+ nn {
+ "root": Array [
+ rn {
+ "root": Object {
+ "charSpace": undefined,
+ "linePitch": 360,
+ "type": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "charSpace": "w:charSpace",
+ "linePitch": "w:linePitch",
+ "type": "w:type",
+ },
+ },
+ ],
+ "rootKey": "w:docGrid",
+ },
+ ],
+ "rootKey": "w:sectPr",
+ },
+ ],
+ },
+ ],
+ "rootKey": "w:document",
+ },
+ "relationships": On {
+ "root": Array [
+ Nn {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/package/2006/relationships",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns",
+ },
+ },
+ Fr {
+ "root": Array [
+ Pr {
+ "root": Object {
+ "id": "rId1",
+ "target": "styles.xml",
+ "targetMode": undefined,
+ "type": "http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "id": "Id",
+ "target": "Target",
+ "targetMode": "TargetMode",
+ "type": "Type",
+ },
+ },
+ ],
+ "rootKey": "Relationship",
+ },
+ Fr {
+ "root": Array [
+ Pr {
+ "root": Object {
+ "id": "rId2",
+ "target": "numbering.xml",
+ "targetMode": undefined,
+ "type": "http://schemas.openxmlformats.org/officeDocument/2006/relationships/numbering",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "id": "Id",
+ "target": "Target",
+ "targetMode": "TargetMode",
+ "type": "Type",
+ },
+ },
+ ],
+ "rootKey": "Relationship",
+ },
+ Fr {
+ "root": Array [
+ Pr {
+ "root": Object {
+ "id": "rId3",
+ "target": "footnotes.xml",
+ "targetMode": undefined,
+ "type": "http://schemas.openxmlformats.org/officeDocument/2006/relationships/footnotes",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "id": "Id",
+ "target": "Target",
+ "targetMode": "TargetMode",
+ "type": "Type",
+ },
+ },
+ ],
+ "rootKey": "Relationship",
+ },
+ Fr {
+ "root": Array [
+ Pr {
+ "root": Object {
+ "id": "rId4",
+ "target": "settings.xml",
+ "targetMode": undefined,
+ "type": "http://schemas.openxmlformats.org/officeDocument/2006/relationships/settings",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "id": "Id",
+ "target": "Target",
+ "targetMode": "TargetMode",
+ "type": "Type",
+ },
+ },
+ ],
+ "rootKey": "Relationship",
+ },
+ ],
+ "rootKey": "Relationships",
+ },
+ },
+ "fileRelationships": On {
+ "root": Array [
+ Nn {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/package/2006/relationships",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns",
+ },
+ },
+ Fr {
+ "root": Array [
+ Pr {
+ "root": Object {
+ "id": "rId1",
+ "target": "word/document.xml",
+ "targetMode": undefined,
+ "type": "http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "id": "Id",
+ "target": "Target",
+ "targetMode": "TargetMode",
+ "type": "Type",
+ },
+ },
+ ],
+ "rootKey": "Relationship",
+ },
+ Fr {
+ "root": Array [
+ Pr {
+ "root": Object {
+ "id": "rId2",
+ "target": "docProps/core.xml",
+ "targetMode": undefined,
+ "type": "http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "id": "Id",
+ "target": "Target",
+ "targetMode": "TargetMode",
+ "type": "Type",
+ },
+ },
+ ],
+ "rootKey": "Relationship",
+ },
+ Fr {
+ "root": Array [
+ Pr {
+ "root": Object {
+ "id": "rId3",
+ "target": "docProps/app.xml",
+ "targetMode": undefined,
+ "type": "http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "id": "Id",
+ "target": "Target",
+ "targetMode": "TargetMode",
+ "type": "Type",
+ },
+ },
+ ],
+ "rootKey": "Relationship",
+ },
+ Fr {
+ "root": Array [
+ Pr {
+ "root": Object {
+ "id": "rId4",
+ "target": "docProps/custom.xml",
+ "targetMode": undefined,
+ "type": "http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "id": "Id",
+ "target": "Target",
+ "targetMode": "TargetMode",
+ "type": "Type",
+ },
+ },
+ ],
+ "rootKey": "Relationship",
+ },
+ ],
+ "rootKey": "Relationships",
+ },
+ "footers": Array [],
+ "footnotesWrapper": Wi {
+ "footnotess": Gi {
+ "root": Array [
+ Ki {
+ "root": Object {
+ "Ignorable": "w14 w15 wp14",
+ "m": "http://schemas.openxmlformats.org/officeDocument/2006/math",
+ "mc": "http://schemas.openxmlformats.org/markup-compatibility/2006",
+ "o": "urn:schemas-microsoft-com:office:office",
+ "r": "http://schemas.openxmlformats.org/officeDocument/2006/relationships",
+ "v": "urn:schemas-microsoft-com:vml",
+ "w": "http://schemas.openxmlformats.org/wordprocessingml/2006/main",
+ "w10": "urn:schemas-microsoft-com:office:word",
+ "w14": "http://schemas.microsoft.com/office/word/2010/wordml",
+ "w15": "http://schemas.microsoft.com/office/word/2012/wordml",
+ "wne": "http://schemas.microsoft.com/office/word/2006/wordml",
+ "wp": "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing",
+ "wp14": "http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing",
+ "wpc": "http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas",
+ "wpg": "http://schemas.microsoft.com/office/word/2010/wordprocessingGroup",
+ "wpi": "http://schemas.microsoft.com/office/word/2010/wordprocessingInk",
+ "wps": "http://schemas.microsoft.com/office/word/2010/wordprocessingShape",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "Ignorable": "mc:Ignorable",
+ "m": "xmlns:m",
+ "mc": "xmlns:mc",
+ "o": "xmlns:o",
+ "r": "xmlns:r",
+ "v": "xmlns:v",
+ "w": "xmlns:w",
+ "w10": "xmlns:w10",
+ "w14": "xmlns:w14",
+ "w15": "xmlns:w15",
+ "wne": "xmlns:wne",
+ "wp": "xmlns:wp",
+ "wp14": "xmlns:wp14",
+ "wpc": "xmlns:wpc",
+ "wpg": "xmlns:wpg",
+ "wpi": "xmlns:wpi",
+ "wps": "xmlns:wps",
+ },
+ },
+ Mi {
+ "root": Array [
+ Pi {
+ "root": Object {
+ "id": -1,
+ "type": "separator",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "id": "w:id",
+ "type": "w:type",
+ },
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Rr {
+ "root": Array [
+ Sr {
+ "root": Object {
+ "after": 0,
+ "line": 240,
+ "lineRule": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "after": "w:after",
+ "before": "w:before",
+ "line": "w:line",
+ "lineRule": "w:lineRule",
+ },
+ },
+ ],
+ "rootKey": "w:spacing",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Rr {
+ "root": Array [
+ Sr {
+ "root": Object {
+ "after": 0,
+ "line": 240,
+ "lineRule": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "after": "w:after",
+ "before": "w:before",
+ "line": "w:line",
+ "lineRule": "w:lineRule",
+ },
+ },
+ ],
+ "rootKey": "w:spacing",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Bi {
+ "properties": St {
+ "root": Array [
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "FootnoteReference",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:rStyle",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "FootnoteReference",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:rStyle",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Fi {
+ "root": Array [],
+ "rootKey": "w:footnoteRef",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ji {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Hi {
+ "root": Array [],
+ "rootKey": "w:separator",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:footnote",
+ },
+ Mi {
+ "root": Array [
+ Pi {
+ "root": Object {
+ "id": 0,
+ "type": "continuationSeparator",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "id": "w:id",
+ "type": "w:type",
+ },
+ },
+ Mn {
+ "properties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Rr {
+ "root": Array [
+ Sr {
+ "root": Object {
+ "after": 0,
+ "line": 240,
+ "lineRule": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "after": "w:after",
+ "before": "w:before",
+ "line": "w:line",
+ "lineRule": "w:lineRule",
+ },
+ },
+ ],
+ "rootKey": "w:spacing",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Rr {
+ "root": Array [
+ Sr {
+ "root": Object {
+ "after": 0,
+ "line": 240,
+ "lineRule": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "after": "w:after",
+ "before": "w:before",
+ "line": "w:line",
+ "lineRule": "w:lineRule",
+ },
+ },
+ ],
+ "rootKey": "w:spacing",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ Bi {
+ "properties": St {
+ "root": Array [
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "FootnoteReference",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:rStyle",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "FootnoteReference",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:rStyle",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ Fi {
+ "root": Array [],
+ "rootKey": "w:footnoteRef",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ zi {
+ "properties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Ui {
+ "root": Array [],
+ "rootKey": "w:continuationSeparator",
+ },
+ ],
+ "rootKey": "w:r",
+ },
+ ],
+ "rootKey": "w:p",
+ },
+ ],
+ "rootKey": "w:footnote",
+ },
+ ],
+ "rootKey": "w:footnotes",
+ },
+ "relationships": On {
+ "root": Array [
+ Nn {
+ "root": Object {
+ "xmlns": "http://schemas.openxmlformats.org/package/2006/relationships",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "xmlns": "xmlns",
+ },
+ },
+ ],
+ "rootKey": "Relationships",
+ },
+ },
+ "headers": Array [],
+ "media": qi {
+ "map": Map {},
+ },
+ "numbering": yo {
+ "abstractNumberingMap": Map {
+ "default-bullet-numbering" => uo {
+ "id": 19,
+ "root": Array [
+ co {
+ "root": Object {
+ "abstractNumId": 19,
+ "restartNumberingAfterBreak": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "abstractNumId": "w:abstractNumId",
+ "restartNumberingAfterBreak": "w15:restartNumberingAfterBreak",
+ },
+ },
+ ao {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "hybridMultilevel",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:multiLevelType",
+ },
+ io {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 720,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ B {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:start",
+ },
+ to {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "bullet",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:numFmt",
+ },
+ eo {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "●",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlText",
+ },
+ ro {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlJc",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 720,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Ji {
+ "root": Object {
+ "ilvl": 0,
+ "tentative": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "ilvl": "w:ilvl",
+ "tentative": "w15:tentative",
+ },
+ },
+ ],
+ "rootKey": "w:lvl",
+ "runProperties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ },
+ io {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 1440,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ B {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:start",
+ },
+ to {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "bullet",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:numFmt",
+ },
+ eo {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "○",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlText",
+ },
+ ro {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlJc",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 1440,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Ji {
+ "root": Object {
+ "ilvl": 1,
+ "tentative": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "ilvl": "w:ilvl",
+ "tentative": "w15:tentative",
+ },
+ },
+ ],
+ "rootKey": "w:lvl",
+ "runProperties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ },
+ io {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 2160,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ B {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:start",
+ },
+ to {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "bullet",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:numFmt",
+ },
+ eo {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "■",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlText",
+ },
+ ro {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlJc",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 2160,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Ji {
+ "root": Object {
+ "ilvl": 2,
+ "tentative": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "ilvl": "w:ilvl",
+ "tentative": "w15:tentative",
+ },
+ },
+ ],
+ "rootKey": "w:lvl",
+ "runProperties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ },
+ io {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 2880,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ B {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:start",
+ },
+ to {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "bullet",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:numFmt",
+ },
+ eo {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "●",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlText",
+ },
+ ro {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlJc",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 2880,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Ji {
+ "root": Object {
+ "ilvl": 3,
+ "tentative": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "ilvl": "w:ilvl",
+ "tentative": "w15:tentative",
+ },
+ },
+ ],
+ "rootKey": "w:lvl",
+ "runProperties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ },
+ io {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 3600,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ B {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:start",
+ },
+ to {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "bullet",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:numFmt",
+ },
+ eo {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "○",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlText",
+ },
+ ro {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlJc",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 3600,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Ji {
+ "root": Object {
+ "ilvl": 4,
+ "tentative": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "ilvl": "w:ilvl",
+ "tentative": "w15:tentative",
+ },
+ },
+ ],
+ "rootKey": "w:lvl",
+ "runProperties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ },
+ io {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 4320,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ B {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:start",
+ },
+ to {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "bullet",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:numFmt",
+ },
+ eo {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "■",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlText",
+ },
+ ro {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlJc",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 4320,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Ji {
+ "root": Object {
+ "ilvl": 5,
+ "tentative": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "ilvl": "w:ilvl",
+ "tentative": "w15:tentative",
+ },
+ },
+ ],
+ "rootKey": "w:lvl",
+ "runProperties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ },
+ io {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 5040,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ B {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:start",
+ },
+ to {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "bullet",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:numFmt",
+ },
+ eo {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "●",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlText",
+ },
+ ro {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlJc",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 5040,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Ji {
+ "root": Object {
+ "ilvl": 6,
+ "tentative": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "ilvl": "w:ilvl",
+ "tentative": "w15:tentative",
+ },
+ },
+ ],
+ "rootKey": "w:lvl",
+ "runProperties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ },
+ io {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 5760,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ B {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:start",
+ },
+ to {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "bullet",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:numFmt",
+ },
+ eo {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "●",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlText",
+ },
+ ro {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlJc",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 5760,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Ji {
+ "root": Object {
+ "ilvl": 7,
+ "tentative": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "ilvl": "w:ilvl",
+ "tentative": "w15:tentative",
+ },
+ },
+ ],
+ "rootKey": "w:lvl",
+ "runProperties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ },
+ io {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 6480,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ B {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:start",
+ },
+ to {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "bullet",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:numFmt",
+ },
+ eo {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "●",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlText",
+ },
+ ro {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "left",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:lvlJc",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ tt {
+ "root": Array [
+ J {
+ "root": Object {
+ "end": undefined,
+ "firstLine": undefined,
+ "hanging": 360,
+ "left": 6480,
+ "right": undefined,
+ "start": undefined,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "end": "w:end",
+ "firstLine": "w:firstLine",
+ "hanging": "w:hanging",
+ "left": "w:left",
+ "right": "w:right",
+ "start": "w:start",
+ },
+ },
+ ],
+ "rootKey": "w:ind",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ Ji {
+ "root": Object {
+ "ilvl": 8,
+ "tentative": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "ilvl": "w:ilvl",
+ "tentative": "w15:tentative",
+ },
+ },
+ ],
+ "rootKey": "w:lvl",
+ "runProperties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ },
+ ],
+ "rootKey": "w:abstractNum",
+ },
+ },
+ "concreteNumberingMap": Map {
+ "default-bullet-numbering" => po {
+ "instance": 0,
+ "numId": 1,
+ "reference": "default-bullet-numbering",
+ "root": Array [
+ ho {
+ "root": Object {
+ "numId": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "numId": "w:numId",
+ },
+ },
+ lo {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 19,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:abstractNumId",
+ },
+ mo {
+ "root": Array [
+ fo {
+ "root": Object {
+ "ilvl": 0,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "ilvl": "w:ilvl",
+ },
+ },
+ go {
+ "root": Array [
+ wo {
+ "root": Object {
+ "val": 1,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:startOverride",
+ },
+ ],
+ "rootKey": "w:lvlOverride",
+ },
+ ],
+ "rootKey": "w:num",
+ },
+ },
+ "referenceConfigMap": Map {},
+ "root": Array [
+ An {
+ "root": Object {
+ "Ignorable": "w14 w15 wp14",
+ "m": "http://schemas.openxmlformats.org/officeDocument/2006/math",
+ "mc": "http://schemas.openxmlformats.org/markup-compatibility/2006",
+ "o": "urn:schemas-microsoft-com:office:office",
+ "r": "http://schemas.openxmlformats.org/officeDocument/2006/relationships",
+ "v": "urn:schemas-microsoft-com:vml",
+ "w": "http://schemas.openxmlformats.org/wordprocessingml/2006/main",
+ "w10": "urn:schemas-microsoft-com:office:word",
+ "w14": "http://schemas.microsoft.com/office/word/2010/wordml",
+ "w15": "http://schemas.microsoft.com/office/word/2012/wordml",
+ "wne": "http://schemas.microsoft.com/office/word/2006/wordml",
+ "wp": "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing",
+ "wp14": "http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing",
+ "wpc": "http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas",
+ "wpg": "http://schemas.microsoft.com/office/word/2010/wordprocessingGroup",
+ "wpi": "http://schemas.microsoft.com/office/word/2010/wordprocessingInk",
+ "wps": "http://schemas.microsoft.com/office/word/2010/wordprocessingShape",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "Ignorable": "mc:Ignorable",
+ "cp": "xmlns:cp",
+ "dc": "xmlns:dc",
+ "dcmitype": "xmlns:dcmitype",
+ "dcterms": "xmlns:dcterms",
+ "m": "xmlns:m",
+ "mc": "xmlns:mc",
+ "o": "xmlns:o",
+ "r": "xmlns:r",
+ "type": "xsi:type",
+ "v": "xmlns:v",
+ "w": "xmlns:w",
+ "w10": "xmlns:w10",
+ "w14": "xmlns:w14",
+ "w15": "xmlns:w15",
+ "wne": "xmlns:wne",
+ "wp": "xmlns:wp",
+ "wp14": "xmlns:wp14",
+ "wpc": "xmlns:wpc",
+ "wpg": "xmlns:wpg",
+ "wpi": "xmlns:wpi",
+ "wps": "xmlns:wps",
+ "xsi": "xmlns:xsi",
+ },
+ },
+ ],
+ "rootKey": "w:numbering",
+ },
+ "settings": Eo {
+ "root": Array [
+ xo {
+ "root": Object {
+ "Ignorable": "w14 w15 wp14",
+ "m": "http://schemas.openxmlformats.org/officeDocument/2006/math",
+ "mc": "http://schemas.openxmlformats.org/markup-compatibility/2006",
+ "o": "urn:schemas-microsoft-com:office:office",
+ "r": "http://schemas.openxmlformats.org/officeDocument/2006/relationships",
+ "v": "urn:schemas-microsoft-com:vml",
+ "w": "http://schemas.openxmlformats.org/wordprocessingml/2006/main",
+ "w10": "urn:schemas-microsoft-com:office:word",
+ "w14": "http://schemas.microsoft.com/office/word/2010/wordml",
+ "w15": "http://schemas.microsoft.com/office/word/2012/wordml",
+ "wne": "http://schemas.microsoft.com/office/word/2006/wordml",
+ "wp": "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing",
+ "wp14": "http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing",
+ "wpc": "http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas",
+ "wpg": "http://schemas.microsoft.com/office/word/2010/wordprocessingGroup",
+ "wpi": "http://schemas.microsoft.com/office/word/2010/wordprocessingInk",
+ "wps": "http://schemas.microsoft.com/office/word/2010/wordprocessingShape",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "Ignorable": "mc:Ignorable",
+ "m": "xmlns:m",
+ "mc": "xmlns:mc",
+ "o": "xmlns:o",
+ "r": "xmlns:r",
+ "v": "xmlns:v",
+ "w": "xmlns:w",
+ "w10": "xmlns:w10",
+ "w14": "xmlns:w14",
+ "w15": "xmlns:w15",
+ "wne": "xmlns:wne",
+ "wp": "xmlns:wp",
+ "wp14": "xmlns:wp14",
+ "wpc": "xmlns:wpc",
+ "wpg": "xmlns:wpg",
+ "wpi": "xmlns:wpi",
+ "wps": "xmlns:wps",
+ },
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:displayBackgroundShape",
+ },
+ L {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": false,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:evenAndOddHeaders",
+ },
+ _o {
+ "root": Array [
+ vo {
+ "root": Array [
+ bo {
+ "root": Object {
+ "name": "compatibilityMode",
+ "uri": "http://schemas.microsoft.com/office/word",
+ "version": 15,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "name": "w:name",
+ "uri": "w:uri",
+ "version": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:compatSetting",
+ },
+ ],
+ "rootKey": "w:compat",
+ },
+ ],
+ "rootKey": "w:settings",
+ },
+ "styles": Wo {
+ "root": Array [
+ An {
+ "root": Object {
+ "Ignorable": "w14 w15",
+ "mc": "http://schemas.openxmlformats.org/markup-compatibility/2006",
+ "r": "http://schemas.openxmlformats.org/officeDocument/2006/relationships",
+ "w": "http://schemas.openxmlformats.org/wordprocessingml/2006/main",
+ "w14": "http://schemas.microsoft.com/office/word/2010/wordml",
+ "w15": "http://schemas.microsoft.com/office/word/2012/wordml",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "Ignorable": "mc:Ignorable",
+ "cp": "xmlns:cp",
+ "dc": "xmlns:dc",
+ "dcmitype": "xmlns:dcmitype",
+ "dcterms": "xmlns:dcterms",
+ "m": "xmlns:m",
+ "mc": "xmlns:mc",
+ "o": "xmlns:o",
+ "r": "xmlns:r",
+ "type": "xsi:type",
+ "v": "xmlns:v",
+ "w": "xmlns:w",
+ "w10": "xmlns:w10",
+ "w14": "xmlns:w14",
+ "w15": "xmlns:w15",
+ "wne": "xmlns:wne",
+ "wp": "xmlns:wp",
+ "wp14": "xmlns:wp14",
+ "wpc": "xmlns:wpc",
+ "wpg": "xmlns:wpg",
+ "wpi": "xmlns:wpi",
+ "wps": "xmlns:wps",
+ "xsi": "xmlns:xsi",
+ },
+ },
+ Xo {
+ "paragraphPropertiesDefaults": Vo {
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ ],
+ "rootKey": "w:pPrDefault",
+ },
+ "root": Array [
+ $o {
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:rPrDefault",
+ },
+ Vo {
+ "root": Array [
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ ],
+ "rootKey": "w:pPrDefault",
+ },
+ ],
+ "rootKey": "w:docDefaults",
+ "runPropertiesDefaults": $o {
+ "root": Array [
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:rPrDefault",
+ },
+ },
+ ko {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "Title",
+ "type": "paragraph",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "Title",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:next",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:qFormat",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 56,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:sz",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 56,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:szCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 56,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:sz",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 56,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:szCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ },
+ Do {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "Heading1",
+ "type": "paragraph",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "Heading 1",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:next",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:qFormat",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "2E74B5",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 32,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:sz",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 32,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:szCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "2E74B5",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 32,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:sz",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 32,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:szCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ },
+ Lo {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "Heading2",
+ "type": "paragraph",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "Heading 2",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:next",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:qFormat",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "2E74B5",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 26,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:sz",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 26,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:szCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "2E74B5",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 26,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:sz",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 26,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:szCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ },
+ Po {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "Heading3",
+ "type": "paragraph",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "Heading 3",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:next",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:qFormat",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "1F4D78",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 24,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:sz",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 24,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:szCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "1F4D78",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 24,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:sz",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 24,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:szCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ },
+ Fo {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "Heading4",
+ "type": "paragraph",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "Heading 4",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:next",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:qFormat",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:i",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:iCs",
+ },
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "2E74B5",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:i",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:iCs",
+ },
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "2E74B5",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ },
+ Bo {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "Heading5",
+ "type": "paragraph",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "Heading 5",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:next",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:qFormat",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "2E74B5",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "2E74B5",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ },
+ Mo {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "Heading6",
+ "type": "paragraph",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "Heading 6",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:next",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:qFormat",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "1F4D78",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "1F4D78",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ },
+ Uo {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "Strong",
+ "type": "paragraph",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "Strong",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:next",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:qFormat",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [
+ L {
+ "root": Array [],
+ "rootKey": "w:b",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:bCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ },
+ zo {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "ListParagraph",
+ "type": "paragraph",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "List Paragraph",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:qFormat",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [],
+ "rootKey": "w:rPr",
+ },
+ },
+ Go {
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "Hyperlink",
+ "type": "character",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "Hyperlink",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "DefaultParagraphFont",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ So {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": 99,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:uiPriority",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:unhideWhenUsed",
+ },
+ St {
+ "root": Array [
+ At {
+ "root": Array [
+ a {
+ "root": Object {
+ "color": undefined,
+ "val": "single",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:u",
+ },
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "0563C1",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [
+ At {
+ "root": Array [
+ a {
+ "root": Object {
+ "color": undefined,
+ "val": "single",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:u",
+ },
+ gt {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "0563C1",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:color",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ },
+ jo {
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "FootnoteReference",
+ "type": "character",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "footnote reference",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "DefaultParagraphFont",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ So {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": 99,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:uiPriority",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:semiHidden",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:unhideWhenUsed",
+ },
+ St {
+ "root": Array [
+ Et {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "superscript",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:vertAlign",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [
+ Et {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "superscript",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:vertAlign",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ },
+ Ho {
+ "paragraphProperties": Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Rr {
+ "root": Array [
+ Sr {
+ "root": Object {
+ "after": 0,
+ "line": 240,
+ "lineRule": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "after": "w:after",
+ "before": "w:before",
+ "line": "w:line",
+ "lineRule": "w:lineRule",
+ },
+ },
+ ],
+ "rootKey": "w:spacing",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "FootnoteText",
+ "type": "paragraph",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "footnote text",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "Normal",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "FootnoteTextChar",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:link",
+ },
+ So {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": 99,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:uiPriority",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:semiHidden",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:unhideWhenUsed",
+ },
+ Bn {
+ "numberingReferences": Array [],
+ "root": Array [
+ Rr {
+ "root": Array [
+ Sr {
+ "root": Object {
+ "after": 0,
+ "line": 240,
+ "lineRule": "auto",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "after": "w:after",
+ "before": "w:before",
+ "line": "w:line",
+ "lineRule": "w:lineRule",
+ },
+ },
+ ],
+ "rootKey": "w:spacing",
+ },
+ ],
+ "rootKey": "w:pPr",
+ },
+ St {
+ "root": Array [
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 20,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:sz",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 20,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:szCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 20,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:sz",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 20,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:szCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ },
+ Ko {
+ "root": Array [
+ Ro {
+ "root": Object {
+ "styleId": "FootnoteTextChar",
+ "type": "character",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "customStyle": "w:customStyle",
+ "default": "w:default",
+ "styleId": "w:styleId",
+ "type": "w:type",
+ },
+ },
+ Ao {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": "Footnote Text Char",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:name",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "DefaultParagraphFont",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:basedOn",
+ },
+ F {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": "FootnoteText",
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:link",
+ },
+ So {
+ "root": Array [
+ To {
+ "root": Object {
+ "val": 99,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "val": "w:val",
+ },
+ },
+ ],
+ "rootKey": "w:uiPriority",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:semiHidden",
+ },
+ L {
+ "root": Array [],
+ "rootKey": "w:unhideWhenUsed",
+ },
+ St {
+ "root": Array [
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 20,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:sz",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 20,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:szCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ ],
+ "rootKey": "w:style",
+ "runProperties": St {
+ "root": Array [
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 20,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:sz",
+ },
+ P {
+ "root": Array [
+ a {
+ "root": Object {
+ "val": 20,
+ },
+ "rootKey": "_attr",
+ "xmlKeys": Object {
+ "bottom": "w:bottom",
+ "color": "w:color",
+ "fill": "w:fill",
+ "footer": "w:footer",
+ "gutter": "w:gutter",
+ "h": "w:h",
+ "header": "w:header",
+ "left": "w:left",
+ "linePitch": "w:linePitch",
+ "pos": "w:pos",
+ "right": "w:right",
+ "rsidR": "w:rsidR",
+ "rsidRPr": "w:rsidRPr",
+ "rsidSect": "w:rsidSect",
+ "space": "w:space",
+ "sz": "w:sz",
+ "top": "w:top",
+ "type": "w:type",
+ "val": "w:val",
+ "w": "w:w",
+ },
+ },
+ ],
+ "rootKey": "w:szCs",
+ },
+ ],
+ "rootKey": "w:rPr",
+ },
+ },
+ ],
+ "rootKey": "w:styles",
+ },
+}
+`;
diff --git a/src/index.spec.ts b/src/index.spec.ts
new file mode 100644
index 0000000..7b33da7
--- /dev/null
+++ b/src/index.spec.ts
@@ -0,0 +1,42 @@
+import fs from "fs";
+import path from "path";
+import { unified } from "unified";
+import markdown from "remark-parse";
+import gfm from "remark-gfm";
+import footnotes from "remark-footnotes";
+import frontmatter from "remark-frontmatter";
+import math from "remark-math";
+import { File } from "docx";
+import { Formatter } from "docx/src/export/formatter";
+import docx from ".";
+
+const FIXTURE_PATH = "../fixtures";
+
+describe("e2e", () => {
+ const toDocxProcessor = unified()
+ .use(markdown)
+ .use(gfm)
+ .use(footnotes, { inlineNotes: true })
+ .use(frontmatter, ["yaml", "toml"])
+ .use(math)
+ .use(docx, {
+ imageResolver: (url) => ({
+ image: new Uint8Array(),
+ width: 600,
+ height: 400,
+ }),
+ });
+
+ const fixturesDir = path.join(__dirname, FIXTURE_PATH);
+ const filenames = fs.readdirSync(fixturesDir);
+ filenames.forEach((filename) => {
+ it(filename, async () => {
+ const doc = await toDocxProcessor.process(
+ fs.readFileSync(path.join(fixturesDir, filename))
+ );
+ expect(
+ new Formatter().format((doc.result as File).Document.View.Body)
+ ).toMatchSnapshot();
+ });
+ });
+});
diff --git a/src/index.ts b/src/index.ts
new file mode 100644
index 0000000..f6fc1a4
--- /dev/null
+++ b/src/index.ts
@@ -0,0 +1,3 @@
+export { default } from "./plugin";
+export type { Options as DocxOptions } from "./plugin";
+export { Packer } from "docx";
diff --git a/src/models/mdast.ts b/src/models/mdast.ts
new file mode 100644
index 0000000..9e86dbe
--- /dev/null
+++ b/src/models/mdast.ts
@@ -0,0 +1,133 @@
+// ref: https://github.com/syntax-tree/mdast
+
+import type {
+ Parent,
+ Literal,
+ Root,
+ Paragraph,
+ Heading,
+ ThematicBreak,
+ Blockquote,
+ List,
+ ListItem,
+ Table,
+ TableRow,
+ TableCell,
+ HTML,
+ Code,
+ YAML,
+ Definition,
+ FootnoteDefinition,
+ Text,
+ Emphasis,
+ Strong,
+ Delete,
+ InlineCode,
+ Break,
+ Link,
+ Image,
+ LinkReference,
+ ImageReference,
+ Footnote,
+ FootnoteReference,
+ Resource,
+ Association,
+ Reference,
+ Alternative,
+} from "mdast";
+export type {
+ Parent,
+ Literal,
+ Root,
+ Paragraph,
+ Heading,
+ ThematicBreak,
+ Blockquote,
+ List,
+ ListItem,
+ Table,
+ TableRow,
+ TableCell,
+ HTML,
+ Code,
+ YAML,
+ Definition,
+ FootnoteDefinition,
+ Text,
+ Emphasis,
+ Strong,
+ Delete,
+ InlineCode,
+ Break,
+ Link,
+ Image,
+ LinkReference,
+ ImageReference,
+ Footnote,
+ FootnoteReference,
+ Resource,
+ Association,
+ Reference,
+ Alternative,
+};
+
+export interface TOML extends Literal {
+ type: "toml";
+}
+
+export interface Math extends Literal {
+ type: "math";
+}
+
+export interface InlineMath extends Literal {
+ type: "inlineMath";
+}
+
+export type Content =
+ | TopLevelContent
+ | ListContent
+ | TableContent
+ | RowContent
+ | PhrasingContent;
+
+export type TopLevelContent =
+ | BlockContent
+ | FrontmatterContent
+ | DefinitionContent;
+
+export type BlockContent =
+ | Paragraph
+ | Heading
+ | ThematicBreak
+ | Blockquote
+ | List
+ | Table
+ | HTML
+ | Code
+ | Math;
+
+export type FrontmatterContent = YAML | TOML;
+
+export type DefinitionContent = Definition | FootnoteDefinition;
+
+export type ListContent = ListItem;
+
+export type TableContent = TableRow;
+
+export type RowContent = TableCell;
+
+export type PhrasingContent = StaticPhrasingContent | Link | LinkReference;
+
+export type StaticPhrasingContent =
+ | Text
+ | Emphasis
+ | Strong
+ | Delete
+ | HTML
+ | InlineCode
+ | Break
+ | Image
+ | ImageReference
+ | Footnote
+ | FootnoteReference
+ | InlineMath;
diff --git a/src/plugin.ts b/src/plugin.ts
new file mode 100644
index 0000000..426b8de
--- /dev/null
+++ b/src/plugin.ts
@@ -0,0 +1,34 @@
+import type { Plugin } from "unified";
+import * as mdast from "mdast";
+import { visit } from "unist-util-visit";
+import { mdastToDocx, Opts, ImageDataMap } from "./transformer";
+
+export type Options = Opts;
+
+const plugin: Plugin<[Options?]> = function (opts = {}) {
+ let images: ImageDataMap = {};
+
+ this.Compiler = (node) => {
+ return mdastToDocx(node as any, opts, images);
+ };
+
+ return async (node) => {
+ const imageResolver = opts.imageResolver;
+ if (!imageResolver) {
+ throw new Error("options.imageResolver is not defined.");
+ }
+ const imageList: mdast.Image[] = [];
+ visit(node, "image", (node) => {
+ imageList.push(node);
+ });
+ const imageDatas = await Promise.all(
+ imageList.map(({ url }) => imageResolver(url))
+ );
+ images = imageList.reduce((acc, img, i) => {
+ acc[img.url] = imageDatas[i];
+ return acc;
+ }, {} as ImageDataMap);
+ return node;
+ };
+};
+export default plugin;
diff --git a/src/transformer.ts b/src/transformer.ts
new file mode 100644
index 0000000..19d77e8
--- /dev/null
+++ b/src/transformer.ts
@@ -0,0 +1,461 @@
+import * as docx from "docx";
+import { convertInchesToTwip } from "docx";
+import { IPropertiesOptions } from "docx/build/file/core-properties";
+import * as mdast from "./models/mdast";
+
+const ORDERED_LIST_REF = "ordered";
+const INDENT = 0.5;
+const DEFAULT_NUMBERINGS: docx.ILevelsOptions[] = [
+ {
+ level: 0,
+ format: docx.LevelFormat.DECIMAL,
+ text: "%1.",
+ alignment: docx.AlignmentType.START,
+ },
+ {
+ level: 1,
+ format: docx.LevelFormat.DECIMAL,
+ text: "%2.",
+ alignment: docx.AlignmentType.START,
+ style: {
+ paragraph: {
+ indent: { start: convertInchesToTwip(INDENT * 1) },
+ },
+ },
+ },
+ {
+ level: 2,
+ format: docx.LevelFormat.DECIMAL,
+ text: "%3.",
+ alignment: docx.AlignmentType.START,
+ style: {
+ paragraph: {
+ indent: { start: convertInchesToTwip(INDENT * 2) },
+ },
+ },
+ },
+ {
+ level: 3,
+ format: docx.LevelFormat.DECIMAL,
+ text: "%4.",
+ alignment: docx.AlignmentType.START,
+ style: {
+ paragraph: {
+ indent: { start: convertInchesToTwip(INDENT * 3) },
+ },
+ },
+ },
+ {
+ level: 4,
+ format: docx.LevelFormat.DECIMAL,
+ text: "%5.",
+ alignment: docx.AlignmentType.START,
+ style: {
+ paragraph: {
+ indent: { start: convertInchesToTwip(INDENT * 4) },
+ },
+ },
+ },
+ {
+ level: 5,
+ format: docx.LevelFormat.DECIMAL,
+ text: "%6.",
+ alignment: docx.AlignmentType.START,
+ style: {
+ paragraph: {
+ indent: { start: convertInchesToTwip(INDENT * 5) },
+ },
+ },
+ },
+];
+
+export type ImageDataMap = { [url: string]: ImageData };
+
+export type ImageData = {
+ image: docx.IImageOptions["data"];
+ width: number;
+ height: number;
+};
+
+export type ImageResolver = (url: string) => Promise | ImageData;
+
+type Decoration = Readonly<{
+ [key in (mdast.Emphasis | mdast.Strong | mdast.Delete)["type"]]?: true;
+}>;
+
+type ListInfo = Readonly<{
+ level: number;
+ ordered: boolean;
+}>;
+
+type Context = Readonly<{
+ deco: Decoration;
+ images: ImageDataMap;
+ list?: ListInfo;
+}>;
+
+export type Opts = {
+ docProperties?: Omit;
+ imageResolver?: ImageResolver;
+};
+
+type DocxChild = docx.Paragraph | docx.Table | docx.TableOfContents;
+type DocxContent = DocxChild | docx.ParagraphChild;
+
+const error = (message: string) => {
+ throw new Error(message);
+};
+
+export function mdastToDocx(
+ node: mdast.Root,
+ opts: Opts,
+ images: ImageDataMap
+): docx.File {
+ return buildDocxRoot(node, opts, images);
+}
+
+function buildDocxRoot(
+ root: mdast.Root,
+ opts: Opts,
+ images: ImageDataMap
+): docx.File {
+ const ctx: Context = { deco: {}, images };
+ const nodes = convertNodes(root.children, ctx, opts) as DocxChild[];
+ return new docx.Document({
+ ...opts.docProperties,
+ sections: [{ children: nodes }],
+ numbering: {
+ config: [
+ {
+ reference: ORDERED_LIST_REF,
+ levels: DEFAULT_NUMBERINGS,
+ },
+ ],
+ },
+ });
+}
+
+function convertNodes(
+ nodes: mdast.Content[],
+ ctx: Context,
+ opts: Opts
+): DocxContent[] {
+ const results: DocxContent[] = [];
+
+ for (const node of nodes) {
+ switch (node.type) {
+ case "paragraph":
+ results.push(buildParagraph(node, ctx, opts));
+ break;
+ case "heading":
+ results.push(buildHeading(node, ctx, opts));
+ break;
+ case "thematicBreak":
+ results.push(buildThematicBreak(node));
+ break;
+ case "blockquote":
+ results.push(...buildBlockquote(node, ctx, opts));
+ break;
+ case "list":
+ results.push(...buildList(node, ctx, opts));
+ break;
+ case "listItem":
+ error("unreachable");
+ break;
+ case "table":
+ results.push(buildTable(node, ctx, opts));
+ break;
+ case "tableRow":
+ error("unreachable");
+ break;
+ case "tableCell":
+ error("unreachable");
+ break;
+ case "html":
+ results.push(buildHtml(node));
+ break;
+ case "code":
+ results.push(buildCode(node));
+ break;
+ case "yaml":
+ // FIXME: unimplemented
+ break;
+ case "toml":
+ // FIXME: unimplemented
+ break;
+ case "definition":
+ // FIXME: unimplemented
+ break;
+ case "footnoteDefinition":
+ // FIXME: unimplemented
+ break;
+ case "text":
+ results.push(buildText(node.value, ctx.deco));
+ break;
+ case "emphasis":
+ case "strong":
+ case "delete": {
+ const { type, children } = node;
+ results.push(
+ ...convertNodes(
+ children,
+ { ...ctx, deco: { ...ctx.deco, [type]: true } },
+ opts
+ )
+ );
+ break;
+ }
+ case "inlineCode":
+ // FIXME: transform to text for now
+ results.push(buildText(node.value, ctx.deco));
+ break;
+ case "break":
+ results.push(buildBreak(node));
+ break;
+ case "link":
+ results.push(buildLink(node, ctx, opts));
+ break;
+ case "image":
+ results.push(buildImage(node, ctx.images));
+ break;
+ case "linkReference":
+ // FIXME: unimplemented
+ break;
+ case "imageReference":
+ // FIXME: unimplemented
+ break;
+ case "footnote":
+ results.push(buildFootnote(node, ctx, opts));
+ break;
+ case "footnoteReference":
+ // FIXME: unimplemented
+ break;
+ case "math":
+ results.push(buildMath(node));
+ break;
+ case "inlineMath":
+ results.push(buildInlineMath(node));
+ break;
+ default:
+ const _: never = node;
+ break;
+ }
+ }
+ return results;
+}
+
+function buildParagraph(node: mdast.Paragraph, ctx: Context, opts: Opts) {
+ const { type, children } = node;
+ const list = ctx.list;
+ return new docx.Paragraph({
+ children: convertNodes(children, ctx, opts),
+ ...(list &&
+ (list.ordered
+ ? {
+ numbering: {
+ reference: ORDERED_LIST_REF,
+ level: list.level,
+ },
+ }
+ : {
+ bullet: {
+ level: list.level,
+ },
+ })),
+ });
+}
+
+function buildHeading(node: mdast.Heading, ctx: Context, opts: Opts) {
+ const { type, children, depth } = node;
+ let heading: docx.HeadingLevel;
+ switch (depth) {
+ case 1:
+ heading = docx.HeadingLevel.TITLE;
+ break;
+ case 2:
+ heading = docx.HeadingLevel.HEADING_1;
+ break;
+ case 3:
+ heading = docx.HeadingLevel.HEADING_2;
+ break;
+ case 4:
+ heading = docx.HeadingLevel.HEADING_3;
+ break;
+ case 5:
+ heading = docx.HeadingLevel.HEADING_4;
+ break;
+ case 6:
+ heading = docx.HeadingLevel.HEADING_5;
+ break;
+ }
+ return new docx.Paragraph({
+ heading,
+ children: convertNodes(children, ctx, opts),
+ });
+}
+
+function buildThematicBreak(node: mdast.ThematicBreak) {
+ return new docx.Paragraph({
+ thematicBreak: true,
+ });
+}
+
+function buildBlockquote(node: mdast.Blockquote, ctx: Context, opts: Opts) {
+ // FIXME: do nothing for now
+ return convertNodes(node.children, ctx, opts);
+}
+
+function buildList(node: mdast.List, ctx: Context, opts: Opts) {
+ const { type, children, ordered, start, spread } = node;
+
+ const list: ListInfo = {
+ level: ctx.list ? ctx.list.level + 1 : 0,
+ ordered: !!ordered,
+ };
+ return children.reduce((acc, item) => {
+ acc.push(
+ ...buildListItem(
+ item,
+ {
+ ...ctx,
+ list,
+ },
+ opts
+ )
+ );
+ return acc;
+ }, [] as DocxContent[]);
+}
+
+function buildListItem(node: mdast.ListItem, ctx: Context, opts: Opts) {
+ const { type, children, checked, spread } = node;
+ return convertNodes(children, ctx, opts);
+}
+
+function buildTable(node: mdast.Table, ctx: Context, opts: Opts) {
+ const { type, children, align } = node;
+
+ const cellAligns: docx.AlignmentType[] | undefined = align?.map((a) => {
+ switch (a) {
+ case "left":
+ return docx.AlignmentType.LEFT;
+ case "right":
+ return docx.AlignmentType.RIGHT;
+ case "center":
+ return docx.AlignmentType.CENTER;
+ default:
+ return docx.AlignmentType.LEFT;
+ }
+ });
+
+ return new docx.Table({
+ rows: children.map((r) => {
+ return buildTableRow(r, ctx, opts, cellAligns);
+ }),
+ });
+}
+
+function buildTableRow(
+ node: mdast.TableRow,
+ ctx: Context,
+ opts: Opts,
+ cellAligns: docx.AlignmentType[] | undefined
+) {
+ const { type, children } = node;
+ return new docx.TableRow({
+ children: children.map((c, i) => {
+ return buildTableCell(c, ctx, opts, cellAligns?.[i]);
+ }),
+ });
+}
+
+function buildTableCell(
+ node: mdast.TableCell,
+ ctx: Context,
+ opts: Opts,
+ align: docx.AlignmentType | undefined
+) {
+ const { type, children } = node;
+ return new docx.TableCell({
+ children: [
+ new docx.Paragraph({
+ alignment: align,
+ children: convertNodes(children, ctx, opts),
+ }),
+ ],
+ });
+}
+
+function buildHtml(node: mdast.HTML) {
+ const { type, value } = node;
+ // FIXME: transform to text for now
+ return new docx.Paragraph({
+ children: [buildText(value, {})],
+ });
+}
+
+function buildCode(node: mdast.Code) {
+ const { type, value, lang, meta } = node;
+ // FIXME: transform to text for now
+ return new docx.Paragraph({
+ children: [buildText(value, {})],
+ });
+}
+
+function buildMath(node: mdast.Math) {
+ const { type, value } = node;
+ // FIXME: transform to text for now
+ return new docx.Paragraph({
+ children: [new docx.TextRun(value)],
+ });
+}
+
+function buildInlineMath(node: mdast.InlineMath) {
+ const { type, value } = node;
+ // FIXME: transform to text for now
+ return new docx.TextRun(value);
+}
+
+function buildText(text: string, deco: Decoration) {
+ return new docx.TextRun({
+ text,
+ bold: deco.strong,
+ italics: deco.emphasis,
+ strike: deco.delete,
+ });
+}
+
+function buildBreak(node: mdast.Break) {
+ return new docx.TextRun({ text: "", break: 1 });
+}
+
+function buildLink(node: mdast.Link, ctx: Context, opts: Opts) {
+ const { type, children, url, title } = node;
+ return new docx.ExternalHyperlink({
+ link: url,
+ children: convertNodes(children, ctx, opts),
+ });
+}
+
+function buildImage(node: mdast.Image, images: ImageDataMap) {
+ const { type, url, title, alt } = node;
+ if (!images[url]) {
+ return error(`Fetch image was failed: ${url}`);
+ }
+ const { image, width, height } = images[url];
+ return new docx.ImageRun({
+ data: image,
+ transformation: {
+ width,
+ height,
+ },
+ });
+}
+
+function buildFootnote(node: mdast.Footnote, ctx: Context, opts: Opts) {
+ const { type, children } = node;
+ // FIXME: transform to paragraph for now
+ return new docx.Paragraph({
+ children: convertNodes(children, ctx, opts),
+ });
+}
diff --git a/stories/components/text-editor.tsx b/stories/components/text-editor.tsx
new file mode 100644
index 0000000..fbd274d
--- /dev/null
+++ b/stories/components/text-editor.tsx
@@ -0,0 +1,23 @@
+import React, { forwardRef } from "react";
+
+const style: React.CSSProperties = {
+ flex: 1,
+ padding: 10,
+ overflowY: "scroll",
+};
+const textAreaStyle = { width: "100%", height: "100%" };
+
+export default forwardRef(
+ (
+ {
+ initialValue,
+ }: {
+ initialValue: string;
+ },
+ ref: React.MutableRefObject
+ ) => (
+
+
+
+ )
+);
diff --git a/stories/components/text.tsx b/stories/components/text.tsx
new file mode 100644
index 0000000..82a13ba
--- /dev/null
+++ b/stories/components/text.tsx
@@ -0,0 +1,12 @@
+import React from "react";
+
+const style: React.CSSProperties = { flex: 1, margin: 10, overflowY: "scroll" };
+const textStyle: React.CSSProperties = {
+ whiteSpace: "pre-wrap",
+};
+
+export default ({ children }: { children: React.ReactNode }) => (
+
+);
diff --git a/stories/playground.stories.tsx b/stories/playground.stories.tsx
new file mode 100644
index 0000000..cdd7740
--- /dev/null
+++ b/stories/playground.stories.tsx
@@ -0,0 +1,86 @@
+import React, { useMemo, useRef, useState } from "react";
+import { unified } from "unified";
+import markdown from "remark-parse";
+import gfm from "remark-gfm";
+import frontmatter from "remark-frontmatter";
+import docx, { Packer } from "../src";
+import TextEditor from "./components/text-editor";
+// @ts-expect-error no type definition
+import text from "../fixtures/article.md";
+import { saveAs } from "file-saver";
+
+const fetchImage = async (
+ url: string
+): Promise<{ image: ArrayBuffer; width: number; height: number }> => {
+ const image = new Image();
+ const res = await fetch(url);
+ const buf = await res.arrayBuffer();
+ return new Promise((resolve, reject) => {
+ image.onload = () => {
+ resolve({
+ image: buf,
+ width: image.naturalWidth,
+ height: image.naturalHeight,
+ });
+ };
+ image.onerror = reject;
+ image.src = URL.createObjectURL(new Blob([buf], { type: "image/png" }));
+ });
+};
+
+const toDocxProcessor = unified()
+ .use(markdown)
+ .use(gfm)
+ .use(frontmatter)
+ .use(docx, {
+ imageResolver: fetchImage,
+ });
+
+const toDocx = async (s: string) => {
+ const doc = await toDocxProcessor.process(s);
+ return Packer.toBlob(doc.result as any);
+};
+
+export default {
+ title: "Playground",
+};
+
+const Wrapper = ({ children }: { children: React.ReactNode }) => (
+ ({
+ width: "100vw",
+ height: "100vh",
+ display: "flex",
+ flexDirection: "row",
+ fontSize: "10.5pt",
+ }),
+ []
+ )}
+ >
+ {children}
+
+);
+
+export const MarkdownToDocx = () => {
+ const ref = useRef(null);
+ return (
+ <>
+
+
+
+
+
+
+ >
+ );
+};
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 0000000..e5465ae
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,18 @@
+{
+ "compilerOptions": {
+ "target": "es5",
+ "module": "esnext",
+ "moduleResolution": "node",
+ "lib": ["esnext"],
+ "strict": true,
+ "allowJs": true,
+ "skipLibCheck": true,
+ "esModuleInterop": true,
+ "allowSyntheticDefaultImports": true,
+ "forceConsistentCasingInFileNames": true,
+ "resolveJsonModule": true,
+ "isolatedModules": true,
+ },
+ "include": ["src"],
+ "exclude": ["node_modules", "src/**/*.spec.*"]
+}